wordpress.sql 2.7 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204
  1. -- MariaDB dump 10.19 Distrib 10.11.2-MariaDB, for debian-linux-gnu (x86_64)
  2. --
  3. -- Host: localhost Database: wordpress
  4. -- ------------------------------------------------------
  5. -- Server version 10.11.2-MariaDB-1:10.11.2+maria~ubu2204
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. /*!40101 SET NAMES utf8mb4 */;
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  11. /*!40103 SET TIME_ZONE='+00:00' */;
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  16. --
  17. -- Table structure for table `wp_commentmeta`
  18. --
  19. DROP TABLE IF EXISTS `wp_commentmeta`;
  20. /*!40101 SET @saved_cs_client = @@character_set_client */;
  21. /*!40101 SET character_set_client = utf8 */;
  22. CREATE TABLE `wp_commentmeta` (
  23. `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  24. `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  25. `meta_key` varchar(255) DEFAULT NULL,
  26. `meta_value` longtext DEFAULT NULL,
  27. PRIMARY KEY (`meta_id`),
  28. KEY `comment_id` (`comment_id`),
  29. KEY `meta_key` (`meta_key`(191))
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  31. /*!40101 SET character_set_client = @saved_cs_client */;
  32. --
  33. -- Dumping data for table `wp_commentmeta`
  34. --
  35. LOCK TABLES `wp_commentmeta` WRITE;
  36. /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
  37. /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
  38. UNLOCK TABLES;
  39. --
  40. -- Table structure for table `wp_comments`
  41. --
  42. DROP TABLE IF EXISTS `wp_comments`;
  43. /*!40101 SET @saved_cs_client = @@character_set_client */;
  44. /*!40101 SET character_set_client = utf8 */;
  45. CREATE TABLE `wp_comments` (
  46. `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  47. `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  48. `comment_author` tinytext NOT NULL,
  49. `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  50. `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  51. `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  52. `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  53. `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  54. `comment_content` text NOT NULL,
  55. `comment_karma` int(11) NOT NULL DEFAULT 0,
  56. `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  57. `comment_agent` varchar(255) NOT NULL DEFAULT '',
  58. `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  59. `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  60. `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  61. PRIMARY KEY (`comment_ID`),
  62. KEY `comment_post_ID` (`comment_post_ID`),
  63. KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  64. KEY `comment_date_gmt` (`comment_date_gmt`),
  65. KEY `comment_parent` (`comment_parent`),
  66. KEY `comment_author_email` (`comment_author_email`(10))
  67. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  68. /*!40101 SET character_set_client = @saved_cs_client */;
  69. --
  70. -- Dumping data for table `wp_comments`
  71. --
  72. LOCK TABLES `wp_comments` WRITE;
  73. /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
  74. /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
  75. UNLOCK TABLES;
  76. --
  77. -- Table structure for table `wp_links`
  78. --
  79. DROP TABLE IF EXISTS `wp_links`;
  80. /*!40101 SET @saved_cs_client = @@character_set_client */;
  81. /*!40101 SET character_set_client = utf8 */;
  82. CREATE TABLE `wp_links` (
  83. `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  84. `link_url` varchar(255) NOT NULL DEFAULT '',
  85. `link_name` varchar(255) NOT NULL DEFAULT '',
  86. `link_image` varchar(255) NOT NULL DEFAULT '',
  87. `link_target` varchar(25) NOT NULL DEFAULT '',
  88. `link_description` varchar(255) NOT NULL DEFAULT '',
  89. `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  90. `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  91. `link_rating` int(11) NOT NULL DEFAULT 0,
  92. `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  93. `link_rel` varchar(255) NOT NULL DEFAULT '',
  94. `link_notes` mediumtext NOT NULL,
  95. `link_rss` varchar(255) NOT NULL DEFAULT '',
  96. PRIMARY KEY (`link_id`),
  97. KEY `link_visible` (`link_visible`)
  98. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  99. /*!40101 SET character_set_client = @saved_cs_client */;
  100. --
  101. -- Dumping data for table `wp_links`
  102. --
  103. LOCK TABLES `wp_links` WRITE;
  104. /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
  105. /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
  106. UNLOCK TABLES;
  107. --
  108. -- Table structure for table `wp_options`
  109. --
  110. DROP TABLE IF EXISTS `wp_options`;
  111. /*!40101 SET @saved_cs_client = @@character_set_client */;
  112. /*!40101 SET character_set_client = utf8 */;
  113. CREATE TABLE `wp_options` (
  114. `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  115. `option_name` varchar(191) NOT NULL DEFAULT '',
  116. `option_value` longtext NOT NULL,
  117. `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  118. PRIMARY KEY (`option_id`),
  119. UNIQUE KEY `option_name` (`option_name`),
  120. KEY `autoload` (`autoload`)
  121. ) ENGINE=InnoDB AUTO_INCREMENT=1017 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  122. /*!40101 SET character_set_client = @saved_cs_client */;
  123. --
  124. -- Dumping data for table `wp_options`
  125. --
  126. LOCK TABLES `wp_options` WRITE;
  127. /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
  128. INSERT INTO `wp_options` VALUES
  129. (1,'siteurl','https://localhost/wp','yes'),
  130. (2,'home','https://localhost/wp','yes'),
  131. (3,'blogname','Partition Le Livre d'Image','yes'),
  132. (4,'blogdescription','','yes'),
  133. (5,'users_can_register','1','yes'),
  134. (6,'admin_email','valentin_le_moign@figureslibres.io','yes'),
  135. (7,'start_of_week','1','yes'),
  136. (8,'use_balanceTags','0','yes'),
  137. (9,'use_smilies','1','yes'),
  138. (10,'require_name_email','1','yes'),
  139. (11,'comments_notify','1','yes'),
  140. (12,'posts_per_rss','10','yes'),
  141. (13,'rss_use_excerpt','0','yes'),
  142. (14,'mailserver_url','mail.example.com','yes'),
  143. (15,'mailserver_login','login@example.com','yes'),
  144. (16,'mailserver_pass','password','yes'),
  145. (17,'mailserver_port','110','yes'),
  146. (18,'default_category','1','yes'),
  147. (19,'default_comment_status','open','yes'),
  148. (20,'default_ping_status','open','yes'),
  149. (21,'default_pingback_flag','1','yes'),
  150. (22,'posts_per_page','10','yes'),
  151. (23,'date_format','j F Y','yes'),
  152. (24,'time_format','G\\hi','yes'),
  153. (25,'links_updated_date_format','d F Y G\\hi','yes'),
  154. (26,'comment_moderation','0','yes'),
  155. (27,'moderation_notify','1','yes'),
  156. (28,'permalink_structure','','yes'),
  157. (29,'rewrite_rules','','yes'),
  158. (30,'hack_file','0','yes'),
  159. (31,'blog_charset','UTF-8','yes'),
  160. (32,'moderation_keys','','no'),
  161. (33,'active_plugins','a:6:{i:0;s:25:\"adminimize/adminimize.php\";i:1;s:38:\"easy-login-woocommerce/xoo-el-main.php\";i:3;s:27:\"redis-cache/redis-cache.php\";i:4;s:27:\"revisionary/revisionary.php\";i:5;s:37:\"user-role-editor/user-role-editor.php\";i:6;s:47:\"wp-import-export-lite/wp-import-export-lite.php\";}','yes'),
  162. (34,'category_base','','yes'),
  163. (35,'ping_sites','http://rpc.pingomatic.com/','yes'),
  164. (36,'comment_max_links','2','yes'),
  165. (37,'gmt_offset','','yes'),
  166. (38,'default_email_category','1','yes'),
  167. (39,'recently_edited','','no'),
  168. (40,'template','partition-jlg-theme','yes'),
  169. (41,'stylesheet','partition-jlg-theme','yes'),
  170. (42,'comment_registration','0','yes'),
  171. (43,'html_type','text/html','yes'),
  172. (44,'use_trackback','0','yes'),
  173. (45,'default_role','subscriber','yes'),
  174. (46,'db_version','53496','yes'),
  175. (47,'uploads_use_yearmonth_folders','1','yes'),
  176. (48,'upload_path','','yes'),
  177. (49,'blog_public','1','yes'),
  178. (50,'default_link_category','2','yes'),
  179. (51,'show_on_front','posts','yes'),
  180. (52,'tag_base','','yes'),
  181. (53,'show_avatars','1','yes'),
  182. (54,'avatar_rating','G','yes'),
  183. (55,'upload_url_path','','yes'),
  184. (56,'thumbnail_size_w','150','yes'),
  185. (57,'thumbnail_size_h','150','yes'),
  186. (58,'thumbnail_crop','1','yes'),
  187. (59,'medium_size_w','300','yes'),
  188. (60,'medium_size_h','300','yes'),
  189. (61,'avatar_default','mystery','yes'),
  190. (62,'large_size_w','1024','yes'),
  191. (63,'large_size_h','1024','yes'),
  192. (64,'image_default_link_type','none','yes'),
  193. (65,'image_default_size','','yes'),
  194. (66,'image_default_align','','yes'),
  195. (67,'close_comments_for_old_posts','0','yes'),
  196. (68,'close_comments_days_old','14','yes'),
  197. (69,'thread_comments','1','yes'),
  198. (70,'thread_comments_depth','5','yes'),
  199. (71,'page_comments','0','yes'),
  200. (72,'comments_per_page','50','yes'),
  201. (73,'default_comments_page','newest','yes'),
  202. (74,'comment_order','asc','yes'),
  203. (75,'sticky_posts','a:0:{}','yes'),
  204. (76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
  205. (77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
  206. (78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
  207. (79,'uninstall_plugins','a:3:{s:37:\"user-role-editor/user-role-editor.php\";a:2:{i:0;s:16:\"User_Role_Editor\";i:1;s:9:\"uninstall\";}s:25:\"adminimize/adminimize.php\";s:24:\"_mw_adminimize_uninstall\";s:43:\"user-access-manager/user-access-manager.php\";s:26:\"uninstallUserAccessManager\";}','no'),
  208. (80,'timezone_string','Europe/Paris','yes'),
  209. (81,'page_for_posts','0','yes'),
  210. (82,'page_on_front','0','yes'),
  211. (83,'default_post_format','0','yes'),
  212. (84,'link_manager_enabled','0','yes'),
  213. (85,'finished_splitting_shared_terms','1','yes'),
  214. (86,'site_icon','9965','yes'),
  215. (87,'medium_large_size_w','768','yes'),
  216. (88,'medium_large_size_h','0','yes'),
  217. (89,'wp_page_for_privacy_policy','3','yes'),
  218. (90,'show_comments_cookies_opt_in','1','yes'),
  219. (91,'admin_email_lifespan','1699669562','yes'),
  220. (92,'disallowed_keys','','no'),
  221. (93,'comment_previously_approved','1','yes'),
  222. (94,'auto_plugin_theme_update_emails','a:0:{}','no'),
  223. (95,'auto_update_core_dev','enabled','yes'),
  224. (96,'auto_update_core_minor','enabled','yes'),
  225. (97,'auto_update_core_major','enabled','yes'),
  226. (98,'wp_force_deactivated_plugins','a:0:{}','yes'),
  227. (99,'initial_db_version','53496','yes'),
  228. (100,'wp_user_roles','a:2:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:95:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:14:\"ure_edit_roles\";b:1;s:16:\"ure_create_roles\";b:1;s:16:\"ure_delete_roles\";b:1;s:23:\"ure_create_capabilities\";b:1;s:23:\"ure_delete_capabilities\";b:1;s:18:\"ure_manage_options\";b:1;s:15:\"ure_reset_roles\";b:1;s:28:\"manage_unsubmitted_revisions\";b:1;s:17:\"install_languages\";b:1;s:18:\"list_private_pages\";b:1;s:18:\"list_private_posts\";b:1;s:20:\"list_published_pages\";b:1;s:20:\"list_published_posts\";b:1;s:14:\"resume_plugins\";b:1;s:13:\"resume_themes\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:7:\"revisor\";a:2:{s:4:\"name\";s:20:\"Relecteur/relectrice\";s:12:\"capabilities\";a:8:{s:17:\"edit_others_posts\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:7:\"level_0\";b:1;s:7:\"level_1\";b:1;s:7:\"level_2\";b:1;s:7:\"level_3\";b:1;s:4:\"read\";b:1;}}}','yes'),
  229. (101,'fresh_site','0','yes'),
  230. (102,'WPLANG','fr_FR','yes'),
  231. (103,'user_count','4','no'),
  232. (104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:159:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Articles récents</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:233:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Commentaires récents</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:151:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Catégories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),
  233. (105,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:14:\"sidebar-footer\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),
  234. (106,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:1:{s:55:\"bedrock-disallow-indexing/bedrock-disallow-indexing.php\";a:14:{s:4:\"Name\";s:17:\"Disallow Indexing\";s:9:\"PluginURI\";s:25:\"https://roots.io/bedrock/\";s:7:\"Version\";s:5:\"2.0.0\";s:11:\"Description\";s:62:\"Disallow indexing of your site on non-production environments.\";s:6:\"Author\";s:5:\"Roots\";s:9:\"AuthorURI\";s:17:\"https://roots.io/\";s:10:\"TextDomain\";s:5:\"roots\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:17:\"Disallow Indexing\";s:10:\"AuthorName\";s:5:\"Roots\";}}s:5:\"count\";i:1;}','no'),
  235. (107,'cron','a:10:{i:1684117564;a:5:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1684117567;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1684117570;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1684117627;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1684203964;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1685025887;a:1:{s:26:\"rediscache_discard_metrics\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1685030472;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1688481110;a:4:{s:26:\"um_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:25:\"um_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"um_twicedaily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:26:\"um_hourly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1692872114;a:1:{s:20:\"rvy_mail_buffer_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"two_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:120;}}}s:7:\"version\";i:2;}','yes'),
  236. (108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  237. (109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  238. (110,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  239. (111,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  240. (112,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  241. (113,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  242. (114,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  243. (115,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  244. (116,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  245. (117,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  246. (118,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  247. (119,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  248. (120,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  249. (121,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  250. (122,'_transient_doing_cron','1699551601.8351359367370605468750','yes'),
  251. (136,'can_compress_scripts','1','no'),
  252. (147,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684117738;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),
  253. (148,'recently_activated','a:0:{}','yes'),
  254. (153,'current_theme','Sage Starter Theme','yes'),
  255. (154,'theme_mods_partition-jlg-theme','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),
  256. (155,'theme_switched','','yes'),
  257. (156,'category_children','a:0:{}','yes'),
  258. (175,'PMXI_Plugin_Options','a:28:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:18:\"history_file_count\";i:10000;s:16:\"history_file_age\";i:365;s:15:\"highlight_limit\";i:10000;s:19:\"upload_max_filesize\";i:2048;s:13:\"post_max_size\";i:2048;s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:-1;s:7:\"dismiss\";i:0;s:16:\"dismiss_speed_up\";i:0;s:18:\"dismiss_manage_top\";i:0;s:21:\"dismiss_manage_bottom\";i:0;s:13:\"html_entities\";i:0;s:11:\"utf8_decode\";i:0;s:12:\"cron_job_key\";s:10:\"98oEfwboJp\";s:10:\"chunk_size\";i:32;s:9:\"pingbacks\";i:1;s:33:\"legacy_special_character_handling\";i:1;s:14:\"case_sensitive\";i:1;s:12:\"session_mode\";s:7:\"default\";s:17:\"enable_ftp_import\";i:0;s:16:\"large_feed_limit\";i:1000;s:26:\"cron_processing_time_limit\";i:59;s:6:\"secure\";i:1;s:11:\"log_storage\";i:5;s:10:\"cron_sleep\";s:0:\"\";s:4:\"port\";s:0:\"\";s:19:\"force_stream_reader\";i:0;}','no'),
  259. (176,'pmxi_is_migrated','3.7.2','yes'),
  260. (189,'wpie_plugin_version','3.9.24','yes'),
  261. (190,'wpie_db_version','1.0.0','yes'),
  262. (191,'wpie_install_date','1685033216','yes'),
  263. (192,'wpie_is_updated_file_security','1','yes'),
  264. (193,'fs_active_plugins','O:8:\"stdClass\":0:{}','yes'),
  265. (194,'fs_debug_mode','','yes'),
  266. (195,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:6189;a:3:{s:4:\"slug\";s:14:\"wp-data-access\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:33:\"wp-data-access/wp-data-access.php\";}}s:11:\"plugin_data\";a:1:{s:14:\"wp-data-access\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:33:\"wp-data-access/wp-data-access.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1685027045;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.7\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"5.3.9\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:9:\"localhost\";s:9:\"server_ip\";N;s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1685027045;s:7:\"version\";s:5:\"5.3.9\";}s:15:\"prev_is_premium\";b:1;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1685027115;s:7:\"version\";s:5:\"5.3.9\";}}}s:13:\"file_slug_map\";a:1:{s:33:\"wp-data-access/wp-data-access.php\";s:14:\"wp-data-access\";}s:7:\"plugins\";a:1:{s:14:\"wp-data-access\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:4:\"6189\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_fc2d1714ca61c930152f6e326b575\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:14:\"WP Data Access\";s:4:\"slug\";s:14:\"wp-data-access\";s:12:\"premium_slug\";s:22:\"wp-data-access-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:33:\"wp-data-access/wp-data-access.php\";s:7:\"version\";s:5:\"5.3.9\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:7:\"Premium\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;}}s:9:\"unique_id\";s:32:\"8826def1d2c24b49fda33a710fd5d8df\";s:13:\"admin_notices\";a:1:{s:14:\"wp-data-access\";a:0:{}}}','yes'),
  267. (196,'fs_api_cache','a:0:{}','no'),
  268. (197,'wpda_version','5.3.9','yes'),
  269. (198,'wpda_plugin_sonce_seed','97323fd75c2470f4bb4875e40b78791d20b00f0aab3cc1290cb2a075fda34e00c5dc5ef0da29de528707158772','yes'),
  270. (199,'wpda_upgraded','1','yes'),
  271. (200,'wpda_fulltext_support','off','yes'),
  272. (201,'wp_calendar_block_has_published_posts','1','yes'),
  273. (202,'wpie_bg_and_cron_processing','s:53:\"a:2:{s:6:\"method\";s:2:\"wp\";s:5:\"token\";i:1685718073;}\";','yes'),
  274. (203,'modifier_titre_article_par_meta_sage','1','yes'),
  275. (227,'user_registration_first_time_activation_flag','','yes'),
  276. (228,'user_registration_default_form_page_id','5648','yes'),
  277. (229,'user_registration_version','3.0.2.1','yes'),
  278. (230,'user_registration_db_version','3.0.2.1','yes'),
  279. (231,'user_registration_activated','2023-07-04','yes'),
  280. (232,'user_registration_updated_at','2023-07-04','yes'),
  281. (233,'user_registration_captcha_setting_recaptcha_version','v2','yes'),
  282. (234,'user_registration_captcha_setting_invisible_recaptcha_v2','no','yes'),
  283. (235,'user_registration_enable_auto_generated_password_email','1','yes'),
  284. (236,'user_registration_migration_version','3.0','yes'),
  285. (237,'user_registration_admin_notices','a:0:{}','yes'),
  286. (238,'ur_profile_picture_migrated','1','yes'),
  287. (240,'user_registration_registration_page_id','5649','yes'),
  288. (241,'user_registration_myaccount_page_id','5650','yes'),
  289. (242,'user_registration_general_setting_login_options','email_confirmation','yes'),
  290. (243,'user_registration_general_setting_disabled_user_roles','a:2:{i:0;s:10:\"subscriber\";i:1;s:11:\"contributor\";}','yes'),
  291. (244,'user_registration_form_setting_enable_strong_password','yes','yes'),
  292. (245,'user_registration_form_setting_default_user_role','contributor','yes'),
  293. (246,'user_registration_my_account_layout','vertical','yes'),
  294. (247,'user_registration_disable_profile_picture','no','yes'),
  295. (248,'user_registration_allow_usage_tracking','no','yes'),
  296. (249,'user_registration_form_setting_minimum_password_strength','3','yes'),
  297. (250,'user_registration_users_listing_viewed','2023-07-04 11:38:27','yes'),
  298. (251,'user_registration_addons_refresh_transient_reset','1','yes'),
  299. (252,'um_last_version_upgrade','2.6.7','yes'),
  300. (253,'um_first_activation_date','1688472801','yes'),
  301. (254,'um_version','2.6.7','yes'),
  302. (255,'__ultimatemember_sitekey','localhost-JgXhJ0DAAfXGsFbDv5NG','yes'),
  303. (256,'um_is_installed','1','yes'),
  304. (257,'um_core_forms','a:3:{s:8:\"register\";i:5654;s:5:\"login\";i:5655;s:7:\"profile\";i:5656;}','yes'),
  305. (258,'um_core_directories','a:1:{s:7:\"members\";i:5657;}','yes'),
  306. (259,'um_options','a:174:{s:30:\"restricted_access_post_metabox\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:31:\"disable_restriction_pre_queries\";i:0;s:19:\"uninstall_on_delete\";i:0;s:14:\"permalink_base\";s:10:\"user_login\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";i:1;s:12:\"members_page\";b:1;s:13:\"use_gravatars\";i:0;s:37:\"use_um_gravatar_default_builtin_image\";s:7:\"default\";s:29:\"use_um_gravatar_default_image\";i:0;s:18:\"require_strongpass\";i:0;s:18:\"password_min_chars\";i:8;s:18:\"password_max_chars\";i:30;s:20:\"account_tab_password\";i:1;s:19:\"account_tab_privacy\";i:1;s:25:\"account_tab_notifications\";i:1;s:18:\"account_tab_delete\";i:1;s:19:\"delete_account_text\";s:208:\"Êtes-vous certain de vouloir supprimer votre compte ? Ceci entrainera la suppression de toutes les données de votre compte sur ce site. Pour supprimer votre compte, saisissez votre mot de passe ci-dessous.\";s:36:\"delete_account_no_pass_required_text\";s:185:\"Êtes-vous certain de vouloir supprimer votre compte ? Ceci entrainera la suppression de toutes vos données sur ce site. Pour supprimer votre compte, cliquez sur le bouton ci-dessous.\";s:12:\"account_name\";i:1;s:20:\"account_name_disable\";i:0;s:20:\"account_name_require\";i:1;s:13:\"account_email\";i:1;s:24:\"account_general_password\";i:0;s:25:\"account_hide_in_directory\";i:1;s:33:\"account_hide_in_directory_default\";s:2:\"No\";s:17:\"photo_thumb_sizes\";a:3:{i:0;i:40;i:1;i:80;i:2;i:190;}s:17:\"cover_thumb_sizes\";a:2:{i:0;i:300;i:1;i:600;}s:10:\"accessible\";i:0;s:15:\"access_redirect\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:20:\"home_page_accessible\";i:1;s:24:\"category_page_accessible\";i:1;s:29:\"restricted_post_title_replace\";i:1;s:28:\"restricted_access_post_title\";s:17:\"Contenu restreint\";s:25:\"restricted_access_message\";s:0:\"\";s:17:\"restricted_blocks\";i:0;s:13:\"enable_blocks\";i:0;s:24:\"restricted_block_message\";s:0:\"\";s:27:\"enable_reset_password_limit\";i:1;s:27:\"reset_password_limit_number\";i:3;s:29:\"change_password_request_limit\";b:0;s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:24:\"allowed_choice_callbacks\";s:0:\"\";s:26:\"allow_url_redirect_confirm\";i:1;s:14:\"default_avatar\";s:0:\"\";s:13:\"default_cover\";s:0:\"\";s:28:\"disable_profile_photo_upload\";i:0;s:21:\"profile_show_metaicon\";i:0;s:12:\"profile_menu\";i:1;s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";i:1;s:13:\"form_asterisk\";i:0;s:13:\"profile_title\";s:28:\"{display_name} | {site_name}\";s:12:\"profile_desc\";s:83:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\'s profile\";s:11:\"admin_email\";s:34:\"valentin_le_moign@figureslibres.io\";s:9:\"mail_from\";s:13:\"Partition JLG\";s:14:\"mail_from_addr\";s:34:\"valentin_le_moign@figureslibres.io\";s:10:\"email_html\";i:1;s:25:\"image_orientation_by_exif\";i:0;s:17:\"image_compression\";i:60;s:15:\"image_max_width\";i:1000;s:15:\"cover_min_width\";i:1000;s:22:\"profile_photo_max_size\";i:999999999;s:20:\"cover_photo_max_size\";i:999999999;s:22:\"custom_roles_increment\";i:1;s:28:\"um_profile_object_cache_stop\";i:0;s:16:\"rest_api_version\";s:3:\"2.0\";s:26:\"member_directory_own_table\";i:0;s:21:\"profile_show_html_bio\";i:0;s:15:\"profile_noindex\";i:0;s:27:\"activation_link_expiry_time\";s:0:\"\";s:16:\"profile_tab_main\";i:1;s:24:\"profile_tab_main_privacy\";i:0;s:22:\"profile_tab_main_roles\";s:0:\"\";s:17:\"profile_tab_posts\";i:1;s:25:\"profile_tab_posts_privacy\";i:0;s:23:\"profile_tab_posts_roles\";s:0:\"\";s:20:\"profile_tab_comments\";i:1;s:28:\"profile_tab_comments_privacy\";i:0;s:26:\"profile_tab_comments_roles\";s:0:\"\";s:16:\"welcome_email_on\";b:1;s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:365:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account is now active.<br /><br />To login please visit the following url:<br /><br />{login_url} <br /><br />Your account e-mail: {email} <br />Your account username: {username} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:18:\"checkmail_email_on\";b:0;s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:304:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:<br /><br />{account_activation_link} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks, <br />{site_name}\";s:16:\"pending_email_on\";b:0;s:17:\"pending_email_sub\";s:30:\"[{site_name}] New user account\";s:13:\"pending_email\";s:309:\"Hi {display_name}, <br /><br />Thank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.<br /><br />Please allow us some time to process your request.<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"approved_email_on\";b:0;s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:438:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account has been approved and is now active.<br /><br />To login please visit the following url:<br /><br />{login_url}<br /><br />Your account e-mail: {email}<br />Your account username: {username}<br />Set your account password: {password_reset_link}<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"rejected_email_on\";b:0;s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:288:\"Hi {display_name},<br /><br />Thank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.<br /><br />Please feel free to apply again at a future date.<br /><br />Thanks,<br />{site_name}\";s:17:\"inactive_email_on\";b:1;s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:250:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deactivated.<br /><br />If you would like your account to be reactivated please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"deletion_email_on\";b:1;s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:355:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.<br /><br />If your account has been deleted by accident please contact us at {admin_email} <br />Thanks,<br />{site_name}\";s:16:\"resetpw_email_on\";b:1;s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:303:\"Hi {display_name},<br /><br />We received a request to reset the password for your account. If you made this request, click the link below to change your password:<br /><br />{password_reset_link}<br /><br />If you didn\'t make this request, you can ignore this email <br /><br />Thanks,<br />{site_name}\";s:18:\"changedpw_email_on\";b:1;s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:307:\"Hi {display_name},<br /><br />You recently changed the password associated with your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:23:\"changedaccount_email_on\";b:1;s:24:\"changedaccount_email_sub\";s:39:\"Your account at {site_name} was updated\";s:20:\"changedaccount_email\";s:278:\"Hi {display_name},<br /><br />You recently updated your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:24:\"notification_new_user_on\";b:1;s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:211:\"{display_name} has just created an account on {site_name}. To view their profile click here:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:22:\"notification_review_on\";b:0;s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:277:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.<br /><br />To review this member please click the following link:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:24:\"notification_deletion_on\";b:0;s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:9:\"core_user\";i:5658;s:10:\"core_login\";i:5659;s:13:\"core_register\";i:5660;s:12:\"core_members\";i:5661;s:11:\"core_logout\";i:5662;s:12:\"core_account\";i:5663;s:19:\"core_password-reset\";i:5664;s:17:\"profile_show_name\";i:1;s:25:\"profile_show_social_links\";i:0;s:16:\"profile_show_bio\";i:1;s:20:\"profile_bio_maxchars\";i:180;s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";i:1;s:22:\"profile_empty_text_emo\";i:1;s:12:\"profile_role\";a:0:{}s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:28:\"profile_disable_photo_upload\";i:0;s:17:\"profile_photosize\";s:3:\"190\";s:21:\"profile_cover_enabled\";i:1;s:17:\"profile_coversize\";s:8:\"original\";s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:19:\"profile_photocorner\";s:1:\"1\";s:17:\"profile_header_bg\";s:0:\"\";s:24:\"profile_primary_btn_word\";s:24:\"Mettre à jour le profil\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:7:\"Annuler\";s:13:\"register_role\";s:1:\"0\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:12:\"S’inscrire\";s:22:\"register_secondary_btn\";i:1;s:27:\"register_secondary_btn_word\";s:9:\"Connexion\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:9:\"Connexion\";s:22:\"login_forgot_pass_link\";i:1;s:21:\"login_show_rememberme\";i:1;s:19:\"login_secondary_btn\";i:1;s:24:\"login_secondary_btn_word\";s:12:\"S’inscrire\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:18:\"directory_template\";s:7:\"members\";s:16:\"directory_header\";s:21:\"{total_users} membres\";s:23:\"directory_header_single\";s:20:\"{total_users} membre\";}','yes'),
  307. (260,'um_role_subscriber_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
  308. (261,'um_role_author_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
  309. (262,'um_role_contributor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
  310. (263,'um_role_editor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
  311. (264,'um_role_administrator_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
  312. (265,'um_template_statuses','a:0:{}','yes'),
  313. (266,'widget_um_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  314. (269,'um_cache_fonticons','a:1283:{i:0;s:13:\"um-icon-alert\";i:1;s:21:\"um-icon-alert-circled\";i:2;s:19:\"um-icon-android-add\";i:3;s:26:\"um-icon-android-add-circle\";i:4;s:27:\"um-icon-android-alarm-clock\";i:5;s:21:\"um-icon-android-alert\";i:6;s:20:\"um-icon-android-apps\";i:7;s:23:\"um-icon-android-archive\";i:8;s:26:\"um-icon-android-arrow-back\";i:9;s:26:\"um-icon-android-arrow-down\";i:10;s:30:\"um-icon-android-arrow-dropdown\";i:11;s:37:\"um-icon-android-arrow-dropdown-circle\";i:12;s:30:\"um-icon-android-arrow-dropleft\";i:13;s:37:\"um-icon-android-arrow-dropleft-circle\";i:14;s:31:\"um-icon-android-arrow-dropright\";i:15;s:38:\"um-icon-android-arrow-dropright-circle\";i:16;s:28:\"um-icon-android-arrow-dropup\";i:17;s:35:\"um-icon-android-arrow-dropup-circle\";i:18;s:29:\"um-icon-android-arrow-forward\";i:19;s:24:\"um-icon-android-arrow-up\";i:20;s:22:\"um-icon-android-attach\";i:21;s:19:\"um-icon-android-bar\";i:22;s:23:\"um-icon-android-bicycle\";i:23;s:20:\"um-icon-android-boat\";i:24;s:24:\"um-icon-android-bookmark\";i:25;s:20:\"um-icon-android-bulb\";i:26;s:19:\"um-icon-android-bus\";i:27;s:24:\"um-icon-android-calendar\";i:28;s:20:\"um-icon-android-call\";i:29;s:22:\"um-icon-android-camera\";i:30;s:22:\"um-icon-android-cancel\";i:31;s:19:\"um-icon-android-car\";i:32;s:20:\"um-icon-android-cart\";i:33;s:20:\"um-icon-android-chat\";i:34;s:24:\"um-icon-android-checkbox\";i:35;s:30:\"um-icon-android-checkbox-blank\";i:36;s:32:\"um-icon-android-checkbox-outline\";i:37;s:38:\"um-icon-android-checkbox-outline-blank\";i:38;s:32:\"um-icon-android-checkmark-circle\";i:39;s:25:\"um-icon-android-clipboard\";i:40;s:21:\"um-icon-android-close\";i:41;s:21:\"um-icon-android-cloud\";i:42;s:28:\"um-icon-android-cloud-circle\";i:43;s:26:\"um-icon-android-cloud-done\";i:44;s:29:\"um-icon-android-cloud-outline\";i:45;s:29:\"um-icon-android-color-palette\";i:46;s:23:\"um-icon-android-compass\";i:47;s:23:\"um-icon-android-contact\";i:48;s:24:\"um-icon-android-contacts\";i:49;s:24:\"um-icon-android-contract\";i:50;s:22:\"um-icon-android-create\";i:51;s:22:\"um-icon-android-delete\";i:52;s:23:\"um-icon-android-desktop\";i:53;s:24:\"um-icon-android-document\";i:54;s:20:\"um-icon-android-done\";i:55;s:24:\"um-icon-android-done-all\";i:56;s:24:\"um-icon-android-download\";i:57;s:22:\"um-icon-android-drafts\";i:58;s:20:\"um-icon-android-exit\";i:59;s:22:\"um-icon-android-expand\";i:60;s:24:\"um-icon-android-favorite\";i:61;s:32:\"um-icon-android-favorite-outline\";i:62;s:20:\"um-icon-android-film\";i:63;s:22:\"um-icon-android-folder\";i:64;s:27:\"um-icon-android-folder-open\";i:65;s:22:\"um-icon-android-funnel\";i:66;s:21:\"um-icon-android-globe\";i:67;s:20:\"um-icon-android-hand\";i:68;s:23:\"um-icon-android-hangout\";i:69;s:21:\"um-icon-android-happy\";i:70;s:20:\"um-icon-android-home\";i:71;s:21:\"um-icon-android-image\";i:72;s:22:\"um-icon-android-laptop\";i:73;s:20:\"um-icon-android-list\";i:74;s:22:\"um-icon-android-locate\";i:75;s:20:\"um-icon-android-lock\";i:76;s:20:\"um-icon-android-mail\";i:77;s:19:\"um-icon-android-map\";i:78;s:20:\"um-icon-android-menu\";i:79;s:26:\"um-icon-android-microphone\";i:80;s:30:\"um-icon-android-microphone-off\";i:81;s:31:\"um-icon-android-more-horizontal\";i:82;s:29:\"um-icon-android-more-vertical\";i:83;s:24:\"um-icon-android-navigate\";i:84;s:29:\"um-icon-android-notifications\";i:85;s:34:\"um-icon-android-notifications-none\";i:86;s:33:\"um-icon-android-notifications-off\";i:87;s:20:\"um-icon-android-open\";i:88;s:23:\"um-icon-android-options\";i:89;s:22:\"um-icon-android-people\";i:90;s:22:\"um-icon-android-person\";i:91;s:26:\"um-icon-android-person-add\";i:92;s:31:\"um-icon-android-phone-landscape\";i:93;s:30:\"um-icon-android-phone-portrait\";i:94;s:19:\"um-icon-android-pin\";i:95;s:21:\"um-icon-android-plane\";i:96;s:25:\"um-icon-android-playstore\";i:97;s:21:\"um-icon-android-print\";i:98;s:32:\"um-icon-android-radio-button-off\";i:99;s:31:\"um-icon-android-radio-button-on\";i:100;s:23:\"um-icon-android-refresh\";i:101;s:22:\"um-icon-android-remove\";i:102;s:29:\"um-icon-android-remove-circle\";i:103;s:26:\"um-icon-android-restaurant\";i:104;s:19:\"um-icon-android-sad\";i:105;s:22:\"um-icon-android-search\";i:106;s:20:\"um-icon-android-send\";i:107;s:24:\"um-icon-android-settings\";i:108;s:21:\"um-icon-android-share\";i:109;s:25:\"um-icon-android-share-alt\";i:110;s:20:\"um-icon-android-star\";i:111;s:25:\"um-icon-android-star-half\";i:112;s:28:\"um-icon-android-star-outline\";i:113;s:25:\"um-icon-android-stopwatch\";i:114;s:22:\"um-icon-android-subway\";i:115;s:21:\"um-icon-android-sunny\";i:116;s:20:\"um-icon-android-sync\";i:117;s:23:\"um-icon-android-textsms\";i:118;s:20:\"um-icon-android-time\";i:119;s:21:\"um-icon-android-train\";i:120;s:22:\"um-icon-android-unlock\";i:121;s:22:\"um-icon-android-upload\";i:122;s:27:\"um-icon-android-volume-down\";i:123;s:27:\"um-icon-android-volume-mute\";i:124;s:26:\"um-icon-android-volume-off\";i:125;s:25:\"um-icon-android-volume-up\";i:126;s:20:\"um-icon-android-walk\";i:127;s:23:\"um-icon-android-warning\";i:128;s:21:\"um-icon-android-watch\";i:129;s:20:\"um-icon-android-wifi\";i:130;s:16:\"um-icon-aperture\";i:131;s:15:\"um-icon-archive\";i:132;s:20:\"um-icon-arrow-down-a\";i:133;s:20:\"um-icon-arrow-down-b\";i:134;s:20:\"um-icon-arrow-down-c\";i:135;s:20:\"um-icon-arrow-expand\";i:136;s:29:\"um-icon-arrow-graph-down-left\";i:137;s:30:\"um-icon-arrow-graph-down-right\";i:138;s:27:\"um-icon-arrow-graph-up-left\";i:139;s:28:\"um-icon-arrow-graph-up-right\";i:140;s:20:\"um-icon-arrow-left-a\";i:141;s:20:\"um-icon-arrow-left-b\";i:142;s:20:\"um-icon-arrow-left-c\";i:143;s:18:\"um-icon-arrow-move\";i:144;s:20:\"um-icon-arrow-resize\";i:145;s:25:\"um-icon-arrow-return-left\";i:146;s:26:\"um-icon-arrow-return-right\";i:147;s:21:\"um-icon-arrow-right-a\";i:148;s:21:\"um-icon-arrow-right-b\";i:149;s:21:\"um-icon-arrow-right-c\";i:150;s:20:\"um-icon-arrow-shrink\";i:151;s:18:\"um-icon-arrow-swap\";i:152;s:18:\"um-icon-arrow-up-a\";i:153;s:18:\"um-icon-arrow-up-b\";i:154;s:18:\"um-icon-arrow-up-c\";i:155;s:16:\"um-icon-asterisk\";i:156;s:10:\"um-icon-at\";i:157;s:17:\"um-icon-backspace\";i:158;s:25:\"um-icon-backspace-outline\";i:159;s:11:\"um-icon-bag\";i:160;s:24:\"um-icon-battery-charging\";i:161;s:21:\"um-icon-battery-empty\";i:162;s:20:\"um-icon-battery-full\";i:163;s:20:\"um-icon-battery-half\";i:164;s:19:\"um-icon-battery-low\";i:165;s:14:\"um-icon-beaker\";i:166;s:12:\"um-icon-beer\";i:167;s:17:\"um-icon-bluetooth\";i:168;s:15:\"um-icon-bonfire\";i:169;s:16:\"um-icon-bookmark\";i:170;s:14:\"um-icon-bowtie\";i:171;s:17:\"um-icon-briefcase\";i:172;s:11:\"um-icon-bug\";i:173;s:18:\"um-icon-calculator\";i:174;s:16:\"um-icon-calendar\";i:175;s:14:\"um-icon-camera\";i:176;s:12:\"um-icon-card\";i:177;s:12:\"um-icon-cash\";i:178;s:15:\"um-icon-chatbox\";i:179;s:23:\"um-icon-chatbox-working\";i:180;s:17:\"um-icon-chatboxes\";i:181;s:18:\"um-icon-chatbubble\";i:182;s:26:\"um-icon-chatbubble-working\";i:183;s:19:\"um-icon-chatbubbles\";i:184;s:17:\"um-icon-checkmark\";i:185;s:25:\"um-icon-checkmark-circled\";i:186;s:23:\"um-icon-checkmark-round\";i:187;s:20:\"um-icon-chevron-down\";i:188;s:20:\"um-icon-chevron-left\";i:189;s:21:\"um-icon-chevron-right\";i:190;s:18:\"um-icon-chevron-up\";i:191;s:17:\"um-icon-clipboard\";i:192;s:13:\"um-icon-clock\";i:193;s:13:\"um-icon-close\";i:194;s:21:\"um-icon-close-circled\";i:195;s:19:\"um-icon-close-round\";i:196;s:25:\"um-icon-closed-captioning\";i:197;s:13:\"um-icon-cloud\";i:198;s:12:\"um-icon-code\";i:199;s:21:\"um-icon-code-download\";i:200;s:20:\"um-icon-code-working\";i:201;s:14:\"um-icon-coffee\";i:202;s:15:\"um-icon-compass\";i:203;s:15:\"um-icon-compose\";i:204;s:23:\"um-icon-connection-bars\";i:205;s:16:\"um-icon-contrast\";i:206;s:12:\"um-icon-crop\";i:207;s:12:\"um-icon-cube\";i:208;s:12:\"um-icon-disc\";i:209;s:16:\"um-icon-document\";i:210;s:21:\"um-icon-document-text\";i:211;s:12:\"um-icon-drag\";i:212;s:13:\"um-icon-earth\";i:213;s:13:\"um-icon-easel\";i:214;s:12:\"um-icon-edit\";i:215;s:11:\"um-icon-egg\";i:216;s:13:\"um-icon-eject\";i:217;s:13:\"um-icon-email\";i:218;s:20:\"um-icon-email-unread\";i:219;s:24:\"um-icon-erlenmeyer-flask\";i:220;s:32:\"um-icon-erlenmeyer-flask-bubbles\";i:221;s:11:\"um-icon-eye\";i:222;s:20:\"um-icon-eye-disabled\";i:223;s:14:\"um-icon-female\";i:224;s:14:\"um-icon-filing\";i:225;s:19:\"um-icon-film-marker\";i:226;s:16:\"um-icon-fireball\";i:227;s:12:\"um-icon-flag\";i:228;s:13:\"um-icon-flame\";i:229;s:13:\"um-icon-flash\";i:230;s:17:\"um-icon-flash-off\";i:231;s:14:\"um-icon-folder\";i:232;s:12:\"um-icon-fork\";i:233;s:17:\"um-icon-fork-repo\";i:234;s:15:\"um-icon-forward\";i:235;s:14:\"um-icon-funnel\";i:236;s:14:\"um-icon-gear-a\";i:237;s:14:\"um-icon-gear-b\";i:238;s:12:\"um-icon-grid\";i:239;s:14:\"um-icon-hammer\";i:240;s:13:\"um-icon-happy\";i:241;s:21:\"um-icon-happy-outline\";i:242;s:17:\"um-icon-headphone\";i:243;s:13:\"um-icon-heart\";i:244;s:20:\"um-icon-heart-broken\";i:245;s:12:\"um-icon-help\";i:246;s:17:\"um-icon-help-buoy\";i:247;s:20:\"um-icon-help-circled\";i:248;s:12:\"um-icon-home\";i:249;s:16:\"um-icon-icecream\";i:250;s:13:\"um-icon-image\";i:251;s:14:\"um-icon-images\";i:252;s:19:\"um-icon-information\";i:253;s:27:\"um-icon-information-circled\";i:254;s:13:\"um-icon-ionic\";i:255;s:17:\"um-icon-ios-alarm\";i:256;s:25:\"um-icon-ios-alarm-outline\";i:257;s:18:\"um-icon-ios-albums\";i:258;s:26:\"um-icon-ios-albums-outline\";i:259;s:28:\"um-icon-ios-americanfootball\";i:260;s:36:\"um-icon-ios-americanfootball-outline\";i:261;s:21:\"um-icon-ios-analytics\";i:262;s:29:\"um-icon-ios-analytics-outline\";i:263;s:22:\"um-icon-ios-arrow-back\";i:264;s:22:\"um-icon-ios-arrow-down\";i:265;s:25:\"um-icon-ios-arrow-forward\";i:266;s:22:\"um-icon-ios-arrow-left\";i:267;s:23:\"um-icon-ios-arrow-right\";i:268;s:27:\"um-icon-ios-arrow-thin-down\";i:269;s:27:\"um-icon-ios-arrow-thin-left\";i:270;s:28:\"um-icon-ios-arrow-thin-right\";i:271;s:25:\"um-icon-ios-arrow-thin-up\";i:272;s:20:\"um-icon-ios-arrow-up\";i:273;s:14:\"um-icon-ios-at\";i:274;s:22:\"um-icon-ios-at-outline\";i:275;s:19:\"um-icon-ios-barcode\";i:276;s:27:\"um-icon-ios-barcode-outline\";i:277;s:20:\"um-icon-ios-baseball\";i:278;s:28:\"um-icon-ios-baseball-outline\";i:279;s:22:\"um-icon-ios-basketball\";i:280;s:30:\"um-icon-ios-basketball-outline\";i:281;s:16:\"um-icon-ios-bell\";i:282;s:24:\"um-icon-ios-bell-outline\";i:283;s:16:\"um-icon-ios-body\";i:284;s:24:\"um-icon-ios-body-outline\";i:285;s:16:\"um-icon-ios-bolt\";i:286;s:24:\"um-icon-ios-bolt-outline\";i:287;s:16:\"um-icon-ios-book\";i:288;s:24:\"um-icon-ios-book-outline\";i:289;s:21:\"um-icon-ios-bookmarks\";i:290;s:29:\"um-icon-ios-bookmarks-outline\";i:291;s:15:\"um-icon-ios-box\";i:292;s:23:\"um-icon-ios-box-outline\";i:293;s:21:\"um-icon-ios-briefcase\";i:294;s:29:\"um-icon-ios-briefcase-outline\";i:295;s:20:\"um-icon-ios-browsers\";i:296;s:28:\"um-icon-ios-browsers-outline\";i:297;s:22:\"um-icon-ios-calculator\";i:298;s:30:\"um-icon-ios-calculator-outline\";i:299;s:20:\"um-icon-ios-calendar\";i:300;s:28:\"um-icon-ios-calendar-outline\";i:301;s:18:\"um-icon-ios-camera\";i:302;s:26:\"um-icon-ios-camera-outline\";i:303;s:16:\"um-icon-ios-cart\";i:304;s:24:\"um-icon-ios-cart-outline\";i:305;s:21:\"um-icon-ios-chatboxes\";i:306;s:29:\"um-icon-ios-chatboxes-outline\";i:307;s:22:\"um-icon-ios-chatbubble\";i:308;s:30:\"um-icon-ios-chatbubble-outline\";i:309;s:21:\"um-icon-ios-checkmark\";i:310;s:27:\"um-icon-ios-checkmark-empty\";i:311;s:29:\"um-icon-ios-checkmark-outline\";i:312;s:25:\"um-icon-ios-circle-filled\";i:313;s:26:\"um-icon-ios-circle-outline\";i:314;s:17:\"um-icon-ios-clock\";i:315;s:25:\"um-icon-ios-clock-outline\";i:316;s:17:\"um-icon-ios-close\";i:317;s:23:\"um-icon-ios-close-empty\";i:318;s:25:\"um-icon-ios-close-outline\";i:319;s:17:\"um-icon-ios-cloud\";i:320;s:26:\"um-icon-ios-cloud-download\";i:321;s:34:\"um-icon-ios-cloud-download-outline\";i:322;s:25:\"um-icon-ios-cloud-outline\";i:323;s:24:\"um-icon-ios-cloud-upload\";i:324;s:32:\"um-icon-ios-cloud-upload-outline\";i:325;s:18:\"um-icon-ios-cloudy\";i:326;s:24:\"um-icon-ios-cloudy-night\";i:327;s:32:\"um-icon-ios-cloudy-night-outline\";i:328;s:26:\"um-icon-ios-cloudy-outline\";i:329;s:15:\"um-icon-ios-cog\";i:330;s:23:\"um-icon-ios-cog-outline\";i:331;s:24:\"um-icon-ios-color-filter\";i:332;s:32:\"um-icon-ios-color-filter-outline\";i:333;s:22:\"um-icon-ios-color-wand\";i:334;s:30:\"um-icon-ios-color-wand-outline\";i:335;s:19:\"um-icon-ios-compose\";i:336;s:27:\"um-icon-ios-compose-outline\";i:337;s:19:\"um-icon-ios-contact\";i:338;s:27:\"um-icon-ios-contact-outline\";i:339;s:16:\"um-icon-ios-copy\";i:340;s:24:\"um-icon-ios-copy-outline\";i:341;s:16:\"um-icon-ios-crop\";i:342;s:23:\"um-icon-ios-crop-strong\";i:343;s:20:\"um-icon-ios-download\";i:344;s:28:\"um-icon-ios-download-outline\";i:345;s:16:\"um-icon-ios-drag\";i:346;s:17:\"um-icon-ios-email\";i:347;s:25:\"um-icon-ios-email-outline\";i:348;s:15:\"um-icon-ios-eye\";i:349;s:23:\"um-icon-ios-eye-outline\";i:350;s:23:\"um-icon-ios-fastforward\";i:351;s:31:\"um-icon-ios-fastforward-outline\";i:352;s:18:\"um-icon-ios-filing\";i:353;s:26:\"um-icon-ios-filing-outline\";i:354;s:16:\"um-icon-ios-film\";i:355;s:24:\"um-icon-ios-film-outline\";i:356;s:16:\"um-icon-ios-flag\";i:357;s:24:\"um-icon-ios-flag-outline\";i:358;s:17:\"um-icon-ios-flame\";i:359;s:25:\"um-icon-ios-flame-outline\";i:360;s:17:\"um-icon-ios-flask\";i:361;s:25:\"um-icon-ios-flask-outline\";i:362;s:18:\"um-icon-ios-flower\";i:363;s:26:\"um-icon-ios-flower-outline\";i:364;s:18:\"um-icon-ios-folder\";i:365;s:26:\"um-icon-ios-folder-outline\";i:366;s:20:\"um-icon-ios-football\";i:367;s:28:\"um-icon-ios-football-outline\";i:368;s:29:\"um-icon-ios-game-controller-a\";i:369;s:37:\"um-icon-ios-game-controller-a-outline\";i:370;s:29:\"um-icon-ios-game-controller-b\";i:371;s:37:\"um-icon-ios-game-controller-b-outline\";i:372;s:16:\"um-icon-ios-gear\";i:373;s:24:\"um-icon-ios-gear-outline\";i:374;s:19:\"um-icon-ios-glasses\";i:375;s:27:\"um-icon-ios-glasses-outline\";i:376;s:21:\"um-icon-ios-grid-view\";i:377;s:29:\"um-icon-ios-grid-view-outline\";i:378;s:17:\"um-icon-ios-heart\";i:379;s:25:\"um-icon-ios-heart-outline\";i:380;s:16:\"um-icon-ios-help\";i:381;s:22:\"um-icon-ios-help-empty\";i:382;s:24:\"um-icon-ios-help-outline\";i:383;s:16:\"um-icon-ios-home\";i:384;s:24:\"um-icon-ios-home-outline\";i:385;s:20:\"um-icon-ios-infinite\";i:386;s:28:\"um-icon-ios-infinite-outline\";i:387;s:23:\"um-icon-ios-information\";i:388;s:29:\"um-icon-ios-information-empty\";i:389;s:31:\"um-icon-ios-information-outline\";i:390;s:25:\"um-icon-ios-ionic-outline\";i:391;s:18:\"um-icon-ios-keypad\";i:392;s:26:\"um-icon-ios-keypad-outline\";i:393;s:21:\"um-icon-ios-lightbulb\";i:394;s:29:\"um-icon-ios-lightbulb-outline\";i:395;s:16:\"um-icon-ios-list\";i:396;s:24:\"um-icon-ios-list-outline\";i:397;s:20:\"um-icon-ios-location\";i:398;s:28:\"um-icon-ios-location-outline\";i:399;s:18:\"um-icon-ios-locked\";i:400;s:26:\"um-icon-ios-locked-outline\";i:401;s:16:\"um-icon-ios-loop\";i:402;s:23:\"um-icon-ios-loop-strong\";i:403;s:19:\"um-icon-ios-medical\";i:404;s:27:\"um-icon-ios-medical-outline\";i:405;s:18:\"um-icon-ios-medkit\";i:406;s:26:\"um-icon-ios-medkit-outline\";i:407;s:15:\"um-icon-ios-mic\";i:408;s:19:\"um-icon-ios-mic-off\";i:409;s:23:\"um-icon-ios-mic-outline\";i:410;s:17:\"um-icon-ios-minus\";i:411;s:23:\"um-icon-ios-minus-empty\";i:412;s:25:\"um-icon-ios-minus-outline\";i:413;s:19:\"um-icon-ios-monitor\";i:414;s:27:\"um-icon-ios-monitor-outline\";i:415;s:16:\"um-icon-ios-moon\";i:416;s:24:\"um-icon-ios-moon-outline\";i:417;s:16:\"um-icon-ios-more\";i:418;s:24:\"um-icon-ios-more-outline\";i:419;s:24:\"um-icon-ios-musical-note\";i:420;s:25:\"um-icon-ios-musical-notes\";i:421;s:20:\"um-icon-ios-navigate\";i:422;s:28:\"um-icon-ios-navigate-outline\";i:423;s:21:\"um-icon-ios-nutrition\";i:424;s:29:\"um-icon-ios-nutrition-outline\";i:425;s:17:\"um-icon-ios-paper\";i:426;s:25:\"um-icon-ios-paper-outline\";i:427;s:22:\"um-icon-ios-paperplane\";i:428;s:30:\"um-icon-ios-paperplane-outline\";i:429;s:23:\"um-icon-ios-partlysunny\";i:430;s:31:\"um-icon-ios-partlysunny-outline\";i:431;s:17:\"um-icon-ios-pause\";i:432;s:25:\"um-icon-ios-pause-outline\";i:433;s:15:\"um-icon-ios-paw\";i:434;s:23:\"um-icon-ios-paw-outline\";i:435;s:18:\"um-icon-ios-people\";i:436;s:26:\"um-icon-ios-people-outline\";i:437;s:18:\"um-icon-ios-person\";i:438;s:26:\"um-icon-ios-person-outline\";i:439;s:21:\"um-icon-ios-personadd\";i:440;s:29:\"um-icon-ios-personadd-outline\";i:441;s:18:\"um-icon-ios-photos\";i:442;s:26:\"um-icon-ios-photos-outline\";i:443;s:15:\"um-icon-ios-pie\";i:444;s:23:\"um-icon-ios-pie-outline\";i:445;s:16:\"um-icon-ios-pint\";i:446;s:24:\"um-icon-ios-pint-outline\";i:447;s:16:\"um-icon-ios-play\";i:448;s:24:\"um-icon-ios-play-outline\";i:449;s:16:\"um-icon-ios-plus\";i:450;s:22:\"um-icon-ios-plus-empty\";i:451;s:24:\"um-icon-ios-plus-outline\";i:452;s:20:\"um-icon-ios-pricetag\";i:453;s:28:\"um-icon-ios-pricetag-outline\";i:454;s:21:\"um-icon-ios-pricetags\";i:455;s:29:\"um-icon-ios-pricetags-outline\";i:456;s:19:\"um-icon-ios-printer\";i:457;s:27:\"um-icon-ios-printer-outline\";i:458;s:17:\"um-icon-ios-pulse\";i:459;s:24:\"um-icon-ios-pulse-strong\";i:460;s:17:\"um-icon-ios-rainy\";i:461;s:25:\"um-icon-ios-rainy-outline\";i:462;s:21:\"um-icon-ios-recording\";i:463;s:29:\"um-icon-ios-recording-outline\";i:464;s:16:\"um-icon-ios-redo\";i:465;s:24:\"um-icon-ios-redo-outline\";i:466;s:19:\"um-icon-ios-refresh\";i:467;s:25:\"um-icon-ios-refresh-empty\";i:468;s:27:\"um-icon-ios-refresh-outline\";i:469;s:18:\"um-icon-ios-reload\";i:470;s:26:\"um-icon-ios-reverse-camera\";i:471;s:34:\"um-icon-ios-reverse-camera-outline\";i:472;s:18:\"um-icon-ios-rewind\";i:473;s:26:\"um-icon-ios-rewind-outline\";i:474;s:16:\"um-icon-ios-rose\";i:475;s:24:\"um-icon-ios-rose-outline\";i:476;s:18:\"um-icon-ios-search\";i:477;s:25:\"um-icon-ios-search-strong\";i:478;s:20:\"um-icon-ios-settings\";i:479;s:27:\"um-icon-ios-settings-strong\";i:480;s:19:\"um-icon-ios-shuffle\";i:481;s:26:\"um-icon-ios-shuffle-strong\";i:482;s:24:\"um-icon-ios-skipbackward\";i:483;s:32:\"um-icon-ios-skipbackward-outline\";i:484;s:23:\"um-icon-ios-skipforward\";i:485;s:31:\"um-icon-ios-skipforward-outline\";i:486;s:17:\"um-icon-ios-snowy\";i:487;s:23:\"um-icon-ios-speedometer\";i:488;s:31:\"um-icon-ios-speedometer-outline\";i:489;s:16:\"um-icon-ios-star\";i:490;s:21:\"um-icon-ios-star-half\";i:491;s:24:\"um-icon-ios-star-outline\";i:492;s:21:\"um-icon-ios-stopwatch\";i:493;s:29:\"um-icon-ios-stopwatch-outline\";i:494;s:17:\"um-icon-ios-sunny\";i:495;s:25:\"um-icon-ios-sunny-outline\";i:496;s:21:\"um-icon-ios-telephone\";i:497;s:29:\"um-icon-ios-telephone-outline\";i:498;s:22:\"um-icon-ios-tennisball\";i:499;s:30:\"um-icon-ios-tennisball-outline\";i:500;s:24:\"um-icon-ios-thunderstorm\";i:501;s:32:\"um-icon-ios-thunderstorm-outline\";i:502;s:16:\"um-icon-ios-time\";i:503;s:24:\"um-icon-ios-time-outline\";i:504;s:17:\"um-icon-ios-timer\";i:505;s:25:\"um-icon-ios-timer-outline\";i:506;s:18:\"um-icon-ios-toggle\";i:507;s:26:\"um-icon-ios-toggle-outline\";i:508;s:17:\"um-icon-ios-trash\";i:509;s:25:\"um-icon-ios-trash-outline\";i:510;s:16:\"um-icon-ios-undo\";i:511;s:24:\"um-icon-ios-undo-outline\";i:512;s:20:\"um-icon-ios-unlocked\";i:513;s:28:\"um-icon-ios-unlocked-outline\";i:514;s:18:\"um-icon-ios-upload\";i:515;s:26:\"um-icon-ios-upload-outline\";i:516;s:20:\"um-icon-ios-videocam\";i:517;s:28:\"um-icon-ios-videocam-outline\";i:518;s:23:\"um-icon-ios-volume-high\";i:519;s:22:\"um-icon-ios-volume-low\";i:520;s:21:\"um-icon-ios-wineglass\";i:521;s:29:\"um-icon-ios-wineglass-outline\";i:522;s:17:\"um-icon-ios-world\";i:523;s:25:\"um-icon-ios-world-outline\";i:524;s:12:\"um-icon-ipad\";i:525;s:14:\"um-icon-iphone\";i:526;s:12:\"um-icon-ipod\";i:527;s:11:\"um-icon-jet\";i:528;s:11:\"um-icon-key\";i:529;s:13:\"um-icon-knife\";i:530;s:14:\"um-icon-laptop\";i:531;s:12:\"um-icon-leaf\";i:532;s:14:\"um-icon-levels\";i:533;s:17:\"um-icon-lightbulb\";i:534;s:12:\"um-icon-link\";i:535;s:14:\"um-icon-load-a\";i:536;s:14:\"um-icon-load-b\";i:537;s:14:\"um-icon-load-c\";i:538;s:14:\"um-icon-load-d\";i:539;s:16:\"um-icon-location\";i:540;s:24:\"um-icon-lock-combination\";i:541;s:14:\"um-icon-locked\";i:542;s:14:\"um-icon-log-in\";i:543;s:15:\"um-icon-log-out\";i:544;s:12:\"um-icon-loop\";i:545;s:14:\"um-icon-magnet\";i:546;s:12:\"um-icon-male\";i:547;s:11:\"um-icon-man\";i:548;s:11:\"um-icon-map\";i:549;s:14:\"um-icon-medkit\";i:550;s:13:\"um-icon-merge\";i:551;s:13:\"um-icon-mic-a\";i:552;s:13:\"um-icon-mic-b\";i:553;s:13:\"um-icon-mic-c\";i:554;s:13:\"um-icon-minus\";i:555;s:21:\"um-icon-minus-circled\";i:556;s:19:\"um-icon-minus-round\";i:557;s:15:\"um-icon-model-s\";i:558;s:15:\"um-icon-monitor\";i:559;s:12:\"um-icon-more\";i:560;s:13:\"um-icon-mouse\";i:561;s:18:\"um-icon-music-note\";i:562;s:15:\"um-icon-navicon\";i:563;s:21:\"um-icon-navicon-round\";i:564;s:16:\"um-icon-navigate\";i:565;s:15:\"um-icon-network\";i:566;s:18:\"um-icon-no-smoking\";i:567;s:15:\"um-icon-nuclear\";i:568;s:14:\"um-icon-outlet\";i:569;s:18:\"um-icon-paintbrush\";i:570;s:19:\"um-icon-paintbucket\";i:571;s:22:\"um-icon-paper-airplane\";i:572;s:17:\"um-icon-paperclip\";i:573;s:13:\"um-icon-pause\";i:574;s:14:\"um-icon-person\";i:575;s:18:\"um-icon-person-add\";i:576;s:22:\"um-icon-person-stalker\";i:577;s:17:\"um-icon-pie-graph\";i:578;s:11:\"um-icon-pin\";i:579;s:16:\"um-icon-pinpoint\";i:580;s:13:\"um-icon-pizza\";i:581;s:13:\"um-icon-plane\";i:582;s:14:\"um-icon-planet\";i:583;s:12:\"um-icon-play\";i:584;s:19:\"um-icon-playstation\";i:585;s:12:\"um-icon-plus\";i:586;s:20:\"um-icon-plus-circled\";i:587;s:18:\"um-icon-plus-round\";i:588;s:14:\"um-icon-podium\";i:589;s:13:\"um-icon-pound\";i:590;s:13:\"um-icon-power\";i:591;s:16:\"um-icon-pricetag\";i:592;s:17:\"um-icon-pricetags\";i:593;s:15:\"um-icon-printer\";i:594;s:20:\"um-icon-pull-request\";i:595;s:18:\"um-icon-qr-scanner\";i:596;s:13:\"um-icon-quote\";i:597;s:19:\"um-icon-radio-waves\";i:598;s:14:\"um-icon-record\";i:599;s:15:\"um-icon-refresh\";i:600;s:13:\"um-icon-reply\";i:601;s:17:\"um-icon-reply-all\";i:602;s:16:\"um-icon-ribbon-a\";i:603;s:16:\"um-icon-ribbon-b\";i:604;s:11:\"um-icon-sad\";i:605;s:19:\"um-icon-sad-outline\";i:606;s:16:\"um-icon-scissors\";i:607;s:14:\"um-icon-search\";i:608;s:16:\"um-icon-settings\";i:609;s:13:\"um-icon-share\";i:610;s:15:\"um-icon-shuffle\";i:611;s:21:\"um-icon-skip-backward\";i:612;s:20:\"um-icon-skip-forward\";i:613;s:22:\"um-icon-social-android\";i:614;s:30:\"um-icon-social-android-outline\";i:615;s:22:\"um-icon-social-angular\";i:616;s:30:\"um-icon-social-angular-outline\";i:617;s:20:\"um-icon-social-apple\";i:618;s:28:\"um-icon-social-apple-outline\";i:619;s:22:\"um-icon-social-bitcoin\";i:620;s:30:\"um-icon-social-bitcoin-outline\";i:621;s:21:\"um-icon-social-buffer\";i:622;s:29:\"um-icon-social-buffer-outline\";i:623;s:21:\"um-icon-social-chrome\";i:624;s:29:\"um-icon-social-chrome-outline\";i:625;s:22:\"um-icon-social-codepen\";i:626;s:30:\"um-icon-social-codepen-outline\";i:627;s:19:\"um-icon-social-css3\";i:628;s:27:\"um-icon-social-css3-outline\";i:629;s:27:\"um-icon-social-designernews\";i:630;s:35:\"um-icon-social-designernews-outline\";i:631;s:23:\"um-icon-social-dribbble\";i:632;s:31:\"um-icon-social-dribbble-outline\";i:633;s:22:\"um-icon-social-dropbox\";i:634;s:30:\"um-icon-social-dropbox-outline\";i:635;s:19:\"um-icon-social-euro\";i:636;s:27:\"um-icon-social-euro-outline\";i:637;s:23:\"um-icon-social-facebook\";i:638;s:31:\"um-icon-social-facebook-outline\";i:639;s:25:\"um-icon-social-foursquare\";i:640;s:33:\"um-icon-social-foursquare-outline\";i:641;s:28:\"um-icon-social-freebsd-devil\";i:642;s:21:\"um-icon-social-github\";i:643;s:29:\"um-icon-social-github-outline\";i:644;s:21:\"um-icon-social-google\";i:645;s:29:\"um-icon-social-google-outline\";i:646;s:25:\"um-icon-social-googleplus\";i:647;s:33:\"um-icon-social-googleplus-outline\";i:648;s:25:\"um-icon-social-hackernews\";i:649;s:33:\"um-icon-social-hackernews-outline\";i:650;s:20:\"um-icon-social-html5\";i:651;s:28:\"um-icon-social-html5-outline\";i:652;s:24:\"um-icon-social-instagram\";i:653;s:32:\"um-icon-social-instagram-outline\";i:654;s:25:\"um-icon-social-javascript\";i:655;s:33:\"um-icon-social-javascript-outline\";i:656;s:23:\"um-icon-social-linkedin\";i:657;s:31:\"um-icon-social-linkedin-outline\";i:658;s:23:\"um-icon-social-markdown\";i:659;s:21:\"um-icon-social-nodejs\";i:660;s:22:\"um-icon-social-octocat\";i:661;s:24:\"um-icon-social-pinterest\";i:662;s:32:\"um-icon-social-pinterest-outline\";i:663;s:21:\"um-icon-social-python\";i:664;s:21:\"um-icon-social-reddit\";i:665;s:29:\"um-icon-social-reddit-outline\";i:666;s:18:\"um-icon-social-rss\";i:667;s:26:\"um-icon-social-rss-outline\";i:668;s:19:\"um-icon-social-sass\";i:669;s:20:\"um-icon-social-skype\";i:670;s:28:\"um-icon-social-skype-outline\";i:671;s:23:\"um-icon-social-snapchat\";i:672;s:31:\"um-icon-social-snapchat-outline\";i:673;s:21:\"um-icon-social-tumblr\";i:674;s:29:\"um-icon-social-tumblr-outline\";i:675;s:18:\"um-icon-social-tux\";i:676;s:21:\"um-icon-social-twitch\";i:677;s:29:\"um-icon-social-twitch-outline\";i:678;s:22:\"um-icon-social-twitter\";i:679;s:30:\"um-icon-social-twitter-outline\";i:680;s:18:\"um-icon-social-usd\";i:681;s:26:\"um-icon-social-usd-outline\";i:682;s:20:\"um-icon-social-vimeo\";i:683;s:28:\"um-icon-social-vimeo-outline\";i:684;s:23:\"um-icon-social-whatsapp\";i:685;s:31:\"um-icon-social-whatsapp-outline\";i:686;s:22:\"um-icon-social-windows\";i:687;s:30:\"um-icon-social-windows-outline\";i:688;s:24:\"um-icon-social-wordpress\";i:689;s:32:\"um-icon-social-wordpress-outline\";i:690;s:20:\"um-icon-social-yahoo\";i:691;s:28:\"um-icon-social-yahoo-outline\";i:692;s:18:\"um-icon-social-yen\";i:693;s:26:\"um-icon-social-yen-outline\";i:694;s:22:\"um-icon-social-youtube\";i:695;s:30:\"um-icon-social-youtube-outline\";i:696;s:16:\"um-icon-soup-can\";i:697;s:24:\"um-icon-soup-can-outline\";i:698;s:20:\"um-icon-speakerphone\";i:699;s:19:\"um-icon-speedometer\";i:700;s:13:\"um-icon-spoon\";i:701;s:12:\"um-icon-star\";i:702;s:18:\"um-icon-stats-bars\";i:703;s:13:\"um-icon-steam\";i:704;s:12:\"um-icon-stop\";i:705;s:19:\"um-icon-thermometer\";i:706;s:18:\"um-icon-thumbsdown\";i:707;s:16:\"um-icon-thumbsup\";i:708;s:14:\"um-icon-toggle\";i:709;s:21:\"um-icon-toggle-filled\";i:710;s:19:\"um-icon-transgender\";i:711;s:15:\"um-icon-trash-a\";i:712;s:15:\"um-icon-trash-b\";i:713;s:14:\"um-icon-trophy\";i:714;s:14:\"um-icon-tshirt\";i:715;s:22:\"um-icon-tshirt-outline\";i:716;s:16:\"um-icon-umbrella\";i:717;s:18:\"um-icon-university\";i:718;s:16:\"um-icon-unlocked\";i:719;s:14:\"um-icon-upload\";i:720;s:11:\"um-icon-usb\";i:721;s:19:\"um-icon-videocamera\";i:722;s:19:\"um-icon-volume-high\";i:723;s:18:\"um-icon-volume-low\";i:724;s:21:\"um-icon-volume-medium\";i:725;s:19:\"um-icon-volume-mute\";i:726;s:12:\"um-icon-wand\";i:727;s:17:\"um-icon-waterdrop\";i:728;s:12:\"um-icon-wifi\";i:729;s:17:\"um-icon-wineglass\";i:730;s:13:\"um-icon-woman\";i:731;s:14:\"um-icon-wrench\";i:732;s:12:\"um-icon-xbox\";i:733;s:21:\"um-faicon-sticky-note\";i:734;s:15:\"um-faicon-glass\";i:735;s:15:\"um-faicon-music\";i:736;s:16:\"um-faicon-search\";i:737;s:20:\"um-faicon-envelope-o\";i:738;s:15:\"um-faicon-heart\";i:739;s:14:\"um-faicon-star\";i:740;s:16:\"um-faicon-star-o\";i:741;s:14:\"um-faicon-user\";i:742;s:14:\"um-faicon-film\";i:743;s:18:\"um-faicon-th-large\";i:744;s:12:\"um-faicon-th\";i:745;s:17:\"um-faicon-th-list\";i:746;s:15:\"um-faicon-check\";i:747;s:16:\"um-faicon-remove\";i:748;s:15:\"um-faicon-close\";i:749;s:15:\"um-faicon-times\";i:750;s:21:\"um-faicon-search-plus\";i:751;s:22:\"um-faicon-search-minus\";i:752;s:19:\"um-faicon-power-off\";i:753;s:16:\"um-faicon-signal\";i:754;s:14:\"um-faicon-gear\";i:755;s:13:\"um-faicon-cog\";i:756;s:17:\"um-faicon-trash-o\";i:757;s:14:\"um-faicon-home\";i:758;s:16:\"um-faicon-file-o\";i:759;s:17:\"um-faicon-clock-o\";i:760;s:14:\"um-faicon-road\";i:761;s:18:\"um-faicon-download\";i:762;s:29:\"um-faicon-arrow-circle-o-down\";i:763;s:27:\"um-faicon-arrow-circle-o-up\";i:764;s:15:\"um-faicon-inbox\";i:765;s:23:\"um-faicon-play-circle-o\";i:766;s:22:\"um-faicon-rotate-right\";i:767;s:16:\"um-faicon-repeat\";i:768;s:17:\"um-faicon-refresh\";i:769;s:18:\"um-faicon-list-alt\";i:770;s:14:\"um-faicon-lock\";i:771;s:14:\"um-faicon-flag\";i:772;s:20:\"um-faicon-headphones\";i:773;s:20:\"um-faicon-volume-off\";i:774;s:21:\"um-faicon-volume-down\";i:775;s:19:\"um-faicon-volume-up\";i:776;s:16:\"um-faicon-qrcode\";i:777;s:17:\"um-faicon-barcode\";i:778;s:13:\"um-faicon-tag\";i:779;s:14:\"um-faicon-tags\";i:780;s:14:\"um-faicon-book\";i:781;s:18:\"um-faicon-bookmark\";i:782;s:15:\"um-faicon-print\";i:783;s:16:\"um-faicon-camera\";i:784;s:14:\"um-faicon-font\";i:785;s:14:\"um-faicon-bold\";i:786;s:16:\"um-faicon-italic\";i:787;s:21:\"um-faicon-text-height\";i:788;s:20:\"um-faicon-text-width\";i:789;s:20:\"um-faicon-align-left\";i:790;s:22:\"um-faicon-align-center\";i:791;s:21:\"um-faicon-align-right\";i:792;s:23:\"um-faicon-align-justify\";i:793;s:14:\"um-faicon-list\";i:794;s:16:\"um-faicon-dedent\";i:795;s:17:\"um-faicon-outdent\";i:796;s:16:\"um-faicon-indent\";i:797;s:22:\"um-faicon-video-camera\";i:798;s:15:\"um-faicon-photo\";i:799;s:15:\"um-faicon-image\";i:800;s:19:\"um-faicon-picture-o\";i:801;s:16:\"um-faicon-pencil\";i:802;s:20:\"um-faicon-map-marker\";i:803;s:16:\"um-faicon-adjust\";i:804;s:14:\"um-faicon-tint\";i:805;s:14:\"um-faicon-edit\";i:806;s:25:\"um-faicon-pencil-square-o\";i:807;s:24:\"um-faicon-share-square-o\";i:808;s:24:\"um-faicon-check-square-o\";i:809;s:16:\"um-faicon-arrows\";i:810;s:23:\"um-faicon-step-backward\";i:811;s:23:\"um-faicon-fast-backward\";i:812;s:18:\"um-faicon-backward\";i:813;s:14:\"um-faicon-play\";i:814;s:15:\"um-faicon-pause\";i:815;s:14:\"um-faicon-stop\";i:816;s:17:\"um-faicon-forward\";i:817;s:22:\"um-faicon-fast-forward\";i:818;s:22:\"um-faicon-step-forward\";i:819;s:15:\"um-faicon-eject\";i:820;s:22:\"um-faicon-chevron-left\";i:821;s:23:\"um-faicon-chevron-right\";i:822;s:21:\"um-faicon-plus-circle\";i:823;s:22:\"um-faicon-minus-circle\";i:824;s:22:\"um-faicon-times-circle\";i:825;s:22:\"um-faicon-check-circle\";i:826;s:25:\"um-faicon-question-circle\";i:827;s:21:\"um-faicon-info-circle\";i:828;s:20:\"um-faicon-crosshairs\";i:829;s:24:\"um-faicon-times-circle-o\";i:830;s:24:\"um-faicon-check-circle-o\";i:831;s:13:\"um-faicon-ban\";i:832;s:20:\"um-faicon-arrow-left\";i:833;s:21:\"um-faicon-arrow-right\";i:834;s:18:\"um-faicon-arrow-up\";i:835;s:20:\"um-faicon-arrow-down\";i:836;s:22:\"um-faicon-mail-forward\";i:837;s:15:\"um-faicon-share\";i:838;s:16:\"um-faicon-expand\";i:839;s:18:\"um-faicon-compress\";i:840;s:14:\"um-faicon-plus\";i:841;s:15:\"um-faicon-minus\";i:842;s:18:\"um-faicon-asterisk\";i:843;s:28:\"um-faicon-exclamation-circle\";i:844;s:14:\"um-faicon-gift\";i:845;s:14:\"um-faicon-leaf\";i:846;s:14:\"um-faicon-fire\";i:847;s:13:\"um-faicon-eye\";i:848;s:19:\"um-faicon-eye-slash\";i:849;s:17:\"um-faicon-warning\";i:850;s:30:\"um-faicon-exclamation-triangle\";i:851;s:15:\"um-faicon-plane\";i:852;s:18:\"um-faicon-calendar\";i:853;s:16:\"um-faicon-random\";i:854;s:17:\"um-faicon-comment\";i:855;s:16:\"um-faicon-magnet\";i:856;s:20:\"um-faicon-chevron-up\";i:857;s:22:\"um-faicon-chevron-down\";i:858;s:17:\"um-faicon-retweet\";i:859;s:23:\"um-faicon-shopping-cart\";i:860;s:16:\"um-faicon-folder\";i:861;s:21:\"um-faicon-folder-open\";i:862;s:18:\"um-faicon-arrows-v\";i:863;s:18:\"um-faicon-arrows-h\";i:864;s:21:\"um-faicon-bar-chart-o\";i:865;s:19:\"um-faicon-bar-chart\";i:866;s:24:\"um-faicon-twitter-square\";i:867;s:25:\"um-faicon-facebook-square\";i:868;s:22:\"um-faicon-camera-retro\";i:869;s:13:\"um-faicon-key\";i:870;s:15:\"um-faicon-gears\";i:871;s:14:\"um-faicon-cogs\";i:872;s:18:\"um-faicon-comments\";i:873;s:21:\"um-faicon-thumbs-o-up\";i:874;s:23:\"um-faicon-thumbs-o-down\";i:875;s:19:\"um-faicon-star-half\";i:876;s:17:\"um-faicon-heart-o\";i:877;s:18:\"um-faicon-sign-out\";i:878;s:25:\"um-faicon-linkedin-square\";i:879;s:20:\"um-faicon-thumb-tack\";i:880;s:23:\"um-faicon-external-link\";i:881;s:17:\"um-faicon-sign-in\";i:882;s:16:\"um-faicon-trophy\";i:883;s:23:\"um-faicon-github-square\";i:884;s:16:\"um-faicon-upload\";i:885;s:17:\"um-faicon-lemon-o\";i:886;s:15:\"um-faicon-phone\";i:887;s:18:\"um-faicon-square-o\";i:888;s:20:\"um-faicon-bookmark-o\";i:889;s:22:\"um-faicon-phone-square\";i:890;s:17:\"um-faicon-twitter\";i:891;s:18:\"um-faicon-facebook\";i:892;s:16:\"um-faicon-github\";i:893;s:16:\"um-faicon-unlock\";i:894;s:21:\"um-faicon-credit-card\";i:895;s:13:\"um-faicon-rss\";i:896;s:15:\"um-faicon-hdd-o\";i:897;s:18:\"um-faicon-bullhorn\";i:898;s:14:\"um-faicon-bell\";i:899;s:21:\"um-faicon-certificate\";i:900;s:22:\"um-faicon-hand-o-right\";i:901;s:21:\"um-faicon-hand-o-left\";i:902;s:19:\"um-faicon-hand-o-up\";i:903;s:21:\"um-faicon-hand-o-down\";i:904;s:27:\"um-faicon-arrow-circle-left\";i:905;s:28:\"um-faicon-arrow-circle-right\";i:906;s:25:\"um-faicon-arrow-circle-up\";i:907;s:27:\"um-faicon-arrow-circle-down\";i:908;s:15:\"um-faicon-globe\";i:909;s:16:\"um-faicon-wrench\";i:910;s:15:\"um-faicon-tasks\";i:911;s:16:\"um-faicon-filter\";i:912;s:19:\"um-faicon-briefcase\";i:913;s:20:\"um-faicon-arrows-alt\";i:914;s:15:\"um-faicon-group\";i:915;s:15:\"um-faicon-users\";i:916;s:15:\"um-faicon-chain\";i:917;s:14:\"um-faicon-link\";i:918;s:15:\"um-faicon-cloud\";i:919;s:15:\"um-faicon-flask\";i:920;s:13:\"um-faicon-cut\";i:921;s:18:\"um-faicon-scissors\";i:922;s:14:\"um-faicon-copy\";i:923;s:17:\"um-faicon-files-o\";i:924;s:19:\"um-faicon-paperclip\";i:925;s:14:\"um-faicon-save\";i:926;s:18:\"um-faicon-floppy-o\";i:927;s:16:\"um-faicon-square\";i:928;s:17:\"um-faicon-navicon\";i:929;s:17:\"um-faicon-reorder\";i:930;s:14:\"um-faicon-bars\";i:931;s:17:\"um-faicon-list-ul\";i:932;s:17:\"um-faicon-list-ol\";i:933;s:23:\"um-faicon-strikethrough\";i:934;s:19:\"um-faicon-underline\";i:935;s:15:\"um-faicon-table\";i:936;s:15:\"um-faicon-magic\";i:937;s:15:\"um-faicon-truck\";i:938;s:19:\"um-faicon-pinterest\";i:939;s:26:\"um-faicon-pinterest-square\";i:940;s:28:\"um-faicon-google-plus-square\";i:941;s:21:\"um-faicon-google-plus\";i:942;s:15:\"um-faicon-money\";i:943;s:20:\"um-faicon-caret-down\";i:944;s:18:\"um-faicon-caret-up\";i:945;s:20:\"um-faicon-caret-left\";i:946;s:21:\"um-faicon-caret-right\";i:947;s:17:\"um-faicon-columns\";i:948;s:18:\"um-faicon-unsorted\";i:949;s:14:\"um-faicon-sort\";i:950;s:19:\"um-faicon-sort-down\";i:951;s:19:\"um-faicon-sort-desc\";i:952;s:17:\"um-faicon-sort-up\";i:953;s:18:\"um-faicon-sort-asc\";i:954;s:18:\"um-faicon-envelope\";i:955;s:18:\"um-faicon-linkedin\";i:956;s:21:\"um-faicon-rotate-left\";i:957;s:14:\"um-faicon-undo\";i:958;s:15:\"um-faicon-legal\";i:959;s:15:\"um-faicon-gavel\";i:960;s:19:\"um-faicon-dashboard\";i:961;s:20:\"um-faicon-tachometer\";i:962;s:19:\"um-faicon-comment-o\";i:963;s:20:\"um-faicon-comments-o\";i:964;s:15:\"um-faicon-flash\";i:965;s:14:\"um-faicon-bolt\";i:966;s:17:\"um-faicon-sitemap\";i:967;s:18:\"um-faicon-umbrella\";i:968;s:15:\"um-faicon-paste\";i:969;s:19:\"um-faicon-clipboard\";i:970;s:21:\"um-faicon-lightbulb-o\";i:971;s:18:\"um-faicon-exchange\";i:972;s:24:\"um-faicon-cloud-download\";i:973;s:22:\"um-faicon-cloud-upload\";i:974;s:17:\"um-faicon-user-md\";i:975;s:21:\"um-faicon-stethoscope\";i:976;s:18:\"um-faicon-suitcase\";i:977;s:16:\"um-faicon-bell-o\";i:978;s:16:\"um-faicon-coffee\";i:979;s:17:\"um-faicon-cutlery\";i:980;s:21:\"um-faicon-file-text-o\";i:981;s:20:\"um-faicon-building-o\";i:982;s:20:\"um-faicon-hospital-o\";i:983;s:19:\"um-faicon-ambulance\";i:984;s:16:\"um-faicon-medkit\";i:985;s:21:\"um-faicon-fighter-jet\";i:986;s:14:\"um-faicon-beer\";i:987;s:18:\"um-faicon-h-square\";i:988;s:21:\"um-faicon-plus-square\";i:989;s:27:\"um-faicon-angle-double-left\";i:990;s:28:\"um-faicon-angle-double-right\";i:991;s:25:\"um-faicon-angle-double-up\";i:992;s:27:\"um-faicon-angle-double-down\";i:993;s:20:\"um-faicon-angle-left\";i:994;s:21:\"um-faicon-angle-right\";i:995;s:18:\"um-faicon-angle-up\";i:996;s:20:\"um-faicon-angle-down\";i:997;s:17:\"um-faicon-desktop\";i:998;s:16:\"um-faicon-laptop\";i:999;s:16:\"um-faicon-tablet\";i:1000;s:22:\"um-faicon-mobile-phone\";i:1001;s:16:\"um-faicon-mobile\";i:1002;s:18:\"um-faicon-circle-o\";i:1003;s:20:\"um-faicon-quote-left\";i:1004;s:21:\"um-faicon-quote-right\";i:1005;s:17:\"um-faicon-spinner\";i:1006;s:16:\"um-faicon-circle\";i:1007;s:20:\"um-faicon-mail-reply\";i:1008;s:15:\"um-faicon-reply\";i:1009;s:20:\"um-faicon-github-alt\";i:1010;s:18:\"um-faicon-folder-o\";i:1011;s:23:\"um-faicon-folder-open-o\";i:1012;s:17:\"um-faicon-smile-o\";i:1013;s:17:\"um-faicon-frown-o\";i:1014;s:15:\"um-faicon-meh-o\";i:1015;s:17:\"um-faicon-gamepad\";i:1016;s:20:\"um-faicon-keyboard-o\";i:1017;s:16:\"um-faicon-flag-o\";i:1018;s:24:\"um-faicon-flag-checkered\";i:1019;s:18:\"um-faicon-terminal\";i:1020;s:14:\"um-faicon-code\";i:1021;s:24:\"um-faicon-mail-reply-all\";i:1022;s:19:\"um-faicon-reply-all\";i:1023;s:25:\"um-faicon-star-half-empty\";i:1024;s:24:\"um-faicon-star-half-full\";i:1025;s:21:\"um-faicon-star-half-o\";i:1026;s:24:\"um-faicon-location-arrow\";i:1027;s:14:\"um-faicon-crop\";i:1028;s:19:\"um-faicon-code-fork\";i:1029;s:16:\"um-faicon-unlink\";i:1030;s:22:\"um-faicon-chain-broken\";i:1031;s:18:\"um-faicon-question\";i:1032;s:14:\"um-faicon-info\";i:1033;s:21:\"um-faicon-exclamation\";i:1034;s:21:\"um-faicon-superscript\";i:1035;s:19:\"um-faicon-subscript\";i:1036;s:16:\"um-faicon-eraser\";i:1037;s:22:\"um-faicon-puzzle-piece\";i:1038;s:20:\"um-faicon-microphone\";i:1039;s:26:\"um-faicon-microphone-slash\";i:1040;s:16:\"um-faicon-shield\";i:1041;s:20:\"um-faicon-calendar-o\";i:1042;s:27:\"um-faicon-fire-extinguisher\";i:1043;s:16:\"um-faicon-rocket\";i:1044;s:16:\"um-faicon-maxcdn\";i:1045;s:29:\"um-faicon-chevron-circle-left\";i:1046;s:30:\"um-faicon-chevron-circle-right\";i:1047;s:27:\"um-faicon-chevron-circle-up\";i:1048;s:29:\"um-faicon-chevron-circle-down\";i:1049;s:15:\"um-faicon-html5\";i:1050;s:14:\"um-faicon-css3\";i:1051;s:16:\"um-faicon-anchor\";i:1052;s:20:\"um-faicon-unlock-alt\";i:1053;s:18:\"um-faicon-bullseye\";i:1054;s:20:\"um-faicon-ellipsis-h\";i:1055;s:20:\"um-faicon-ellipsis-v\";i:1056;s:20:\"um-faicon-rss-square\";i:1057;s:21:\"um-faicon-play-circle\";i:1058;s:16:\"um-faicon-ticket\";i:1059;s:22:\"um-faicon-minus-square\";i:1060;s:24:\"um-faicon-minus-square-o\";i:1061;s:18:\"um-faicon-level-up\";i:1062;s:20:\"um-faicon-level-down\";i:1063;s:22:\"um-faicon-check-square\";i:1064;s:23:\"um-faicon-pencil-square\";i:1065;s:30:\"um-faicon-external-link-square\";i:1066;s:22:\"um-faicon-share-square\";i:1067;s:17:\"um-faicon-compass\";i:1068;s:21:\"um-faicon-toggle-down\";i:1069;s:29:\"um-faicon-caret-square-o-down\";i:1070;s:19:\"um-faicon-toggle-up\";i:1071;s:27:\"um-faicon-caret-square-o-up\";i:1072;s:22:\"um-faicon-toggle-right\";i:1073;s:30:\"um-faicon-caret-square-o-right\";i:1074;s:14:\"um-faicon-euro\";i:1075;s:13:\"um-faicon-eur\";i:1076;s:13:\"um-faicon-gbp\";i:1077;s:16:\"um-faicon-dollar\";i:1078;s:13:\"um-faicon-usd\";i:1079;s:15:\"um-faicon-rupee\";i:1080;s:13:\"um-faicon-inr\";i:1081;s:13:\"um-faicon-cny\";i:1082;s:13:\"um-faicon-rmb\";i:1083;s:13:\"um-faicon-yen\";i:1084;s:13:\"um-faicon-jpy\";i:1085;s:15:\"um-faicon-ruble\";i:1086;s:16:\"um-faicon-rouble\";i:1087;s:13:\"um-faicon-rub\";i:1088;s:13:\"um-faicon-won\";i:1089;s:13:\"um-faicon-krw\";i:1090;s:17:\"um-faicon-bitcoin\";i:1091;s:13:\"um-faicon-btc\";i:1092;s:14:\"um-faicon-file\";i:1093;s:19:\"um-faicon-file-text\";i:1094;s:24:\"um-faicon-sort-alpha-asc\";i:1095;s:25:\"um-faicon-sort-alpha-desc\";i:1096;s:25:\"um-faicon-sort-amount-asc\";i:1097;s:26:\"um-faicon-sort-amount-desc\";i:1098;s:26:\"um-faicon-sort-numeric-asc\";i:1099;s:27:\"um-faicon-sort-numeric-desc\";i:1100;s:19:\"um-faicon-thumbs-up\";i:1101;s:21:\"um-faicon-thumbs-down\";i:1102;s:24:\"um-faicon-youtube-square\";i:1103;s:17:\"um-faicon-youtube\";i:1104;s:14:\"um-faicon-xing\";i:1105;s:21:\"um-faicon-xing-square\";i:1106;s:22:\"um-faicon-youtube-play\";i:1107;s:17:\"um-faicon-dropbox\";i:1108;s:24:\"um-faicon-stack-overflow\";i:1109;s:19:\"um-faicon-instagram\";i:1110;s:16:\"um-faicon-flickr\";i:1111;s:13:\"um-faicon-adn\";i:1112;s:19:\"um-faicon-bitbucket\";i:1113;s:26:\"um-faicon-bitbucket-square\";i:1114;s:16:\"um-faicon-tumblr\";i:1115;s:23:\"um-faicon-tumblr-square\";i:1116;s:25:\"um-faicon-long-arrow-down\";i:1117;s:23:\"um-faicon-long-arrow-up\";i:1118;s:25:\"um-faicon-long-arrow-left\";i:1119;s:26:\"um-faicon-long-arrow-right\";i:1120;s:15:\"um-faicon-apple\";i:1121;s:17:\"um-faicon-windows\";i:1122;s:17:\"um-faicon-android\";i:1123;s:15:\"um-faicon-linux\";i:1124;s:18:\"um-faicon-dribbble\";i:1125;s:15:\"um-faicon-skype\";i:1126;s:20:\"um-faicon-foursquare\";i:1127;s:16:\"um-faicon-trello\";i:1128;s:16:\"um-faicon-female\";i:1129;s:14:\"um-faicon-male\";i:1130;s:16:\"um-faicon-gittip\";i:1131;s:15:\"um-faicon-sun-o\";i:1132;s:16:\"um-faicon-moon-o\";i:1133;s:17:\"um-faicon-archive\";i:1134;s:13:\"um-faicon-bug\";i:1135;s:12:\"um-faicon-vk\";i:1136;s:15:\"um-faicon-weibo\";i:1137;s:16:\"um-faicon-renren\";i:1138;s:19:\"um-faicon-pagelines\";i:1139;s:24:\"um-faicon-stack-exchange\";i:1140;s:30:\"um-faicon-arrow-circle-o-right\";i:1141;s:29:\"um-faicon-arrow-circle-o-left\";i:1142;s:21:\"um-faicon-toggle-left\";i:1143;s:29:\"um-faicon-caret-square-o-left\";i:1144;s:22:\"um-faicon-dot-circle-o\";i:1145;s:20:\"um-faicon-wheelchair\";i:1146;s:22:\"um-faicon-vimeo-square\";i:1147;s:22:\"um-faicon-turkish-lira\";i:1148;s:13:\"um-faicon-try\";i:1149;s:23:\"um-faicon-plus-square-o\";i:1150;s:23:\"um-faicon-space-shuttle\";i:1151;s:15:\"um-faicon-slack\";i:1152;s:25:\"um-faicon-envelope-square\";i:1153;s:19:\"um-faicon-wordpress\";i:1154;s:16:\"um-faicon-openid\";i:1155;s:21:\"um-faicon-institution\";i:1156;s:14:\"um-faicon-bank\";i:1157;s:20:\"um-faicon-university\";i:1158;s:22:\"um-faicon-mortar-board\";i:1159;s:24:\"um-faicon-graduation-cap\";i:1160;s:15:\"um-faicon-yahoo\";i:1161;s:16:\"um-faicon-google\";i:1162;s:16:\"um-faicon-reddit\";i:1163;s:23:\"um-faicon-reddit-square\";i:1164;s:28:\"um-faicon-stumbleupon-circle\";i:1165;s:21:\"um-faicon-stumbleupon\";i:1166;s:19:\"um-faicon-delicious\";i:1167;s:14:\"um-faicon-digg\";i:1168;s:20:\"um-faicon-pied-piper\";i:1169;s:24:\"um-faicon-pied-piper-alt\";i:1170;s:16:\"um-faicon-drupal\";i:1171;s:16:\"um-faicon-joomla\";i:1172;s:18:\"um-faicon-language\";i:1173;s:13:\"um-faicon-fax\";i:1174;s:18:\"um-faicon-building\";i:1175;s:15:\"um-faicon-child\";i:1176;s:13:\"um-faicon-paw\";i:1177;s:15:\"um-faicon-spoon\";i:1178;s:14:\"um-faicon-cube\";i:1179;s:15:\"um-faicon-cubes\";i:1180;s:17:\"um-faicon-behance\";i:1181;s:24:\"um-faicon-behance-square\";i:1182;s:15:\"um-faicon-steam\";i:1183;s:22:\"um-faicon-steam-square\";i:1184;s:17:\"um-faicon-recycle\";i:1185;s:20:\"um-faicon-automobile\";i:1186;s:13:\"um-faicon-car\";i:1187;s:13:\"um-faicon-cab\";i:1188;s:14:\"um-faicon-taxi\";i:1189;s:14:\"um-faicon-tree\";i:1190;s:17:\"um-faicon-spotify\";i:1191;s:20:\"um-faicon-deviantart\";i:1192;s:20:\"um-faicon-soundcloud\";i:1193;s:18:\"um-faicon-database\";i:1194;s:20:\"um-faicon-file-pdf-o\";i:1195;s:21:\"um-faicon-file-word-o\";i:1196;s:22:\"um-faicon-file-excel-o\";i:1197;s:27:\"um-faicon-file-powerpoint-o\";i:1198;s:22:\"um-faicon-file-photo-o\";i:1199;s:24:\"um-faicon-file-picture-o\";i:1200;s:22:\"um-faicon-file-image-o\";i:1201;s:20:\"um-faicon-file-zip-o\";i:1202;s:24:\"um-faicon-file-archive-o\";i:1203;s:22:\"um-faicon-file-sound-o\";i:1204;s:22:\"um-faicon-file-audio-o\";i:1205;s:22:\"um-faicon-file-movie-o\";i:1206;s:22:\"um-faicon-file-video-o\";i:1207;s:21:\"um-faicon-file-code-o\";i:1208;s:14:\"um-faicon-vine\";i:1209;s:17:\"um-faicon-codepen\";i:1210;s:18:\"um-faicon-jsfiddle\";i:1211;s:19:\"um-faicon-life-bouy\";i:1212;s:19:\"um-faicon-life-buoy\";i:1213;s:20:\"um-faicon-life-saver\";i:1214;s:17:\"um-faicon-support\";i:1215;s:19:\"um-faicon-life-ring\";i:1216;s:24:\"um-faicon-circle-o-notch\";i:1217;s:12:\"um-faicon-ra\";i:1218;s:15:\"um-faicon-rebel\";i:1219;s:12:\"um-faicon-ge\";i:1220;s:16:\"um-faicon-empire\";i:1221;s:20:\"um-faicon-git-square\";i:1222;s:13:\"um-faicon-git\";i:1223;s:21:\"um-faicon-hacker-news\";i:1224;s:23:\"um-faicon-tencent-weibo\";i:1225;s:12:\"um-faicon-qq\";i:1226;s:16:\"um-faicon-wechat\";i:1227;s:16:\"um-faicon-weixin\";i:1228;s:14:\"um-faicon-send\";i:1229;s:21:\"um-faicon-paper-plane\";i:1230;s:16:\"um-faicon-send-o\";i:1231;s:23:\"um-faicon-paper-plane-o\";i:1232;s:17:\"um-faicon-history\";i:1233;s:21:\"um-faicon-circle-thin\";i:1234;s:16:\"um-faicon-header\";i:1235;s:19:\"um-faicon-paragraph\";i:1236;s:17:\"um-faicon-sliders\";i:1237;s:19:\"um-faicon-share-alt\";i:1238;s:26:\"um-faicon-share-alt-square\";i:1239;s:14:\"um-faicon-bomb\";i:1240;s:23:\"um-faicon-soccer-ball-o\";i:1241;s:18:\"um-faicon-futbol-o\";i:1242;s:13:\"um-faicon-tty\";i:1243;s:20:\"um-faicon-binoculars\";i:1244;s:14:\"um-faicon-plug\";i:1245;s:20:\"um-faicon-slideshare\";i:1246;s:16:\"um-faicon-twitch\";i:1247;s:14:\"um-faicon-yelp\";i:1248;s:21:\"um-faicon-newspaper-o\";i:1249;s:14:\"um-faicon-wifi\";i:1250;s:20:\"um-faicon-calculator\";i:1251;s:16:\"um-faicon-paypal\";i:1252;s:23:\"um-faicon-google-wallet\";i:1253;s:17:\"um-faicon-cc-visa\";i:1254;s:23:\"um-faicon-cc-mastercard\";i:1255;s:21:\"um-faicon-cc-discover\";i:1256;s:17:\"um-faicon-cc-amex\";i:1257;s:19:\"um-faicon-cc-paypal\";i:1258;s:19:\"um-faicon-cc-stripe\";i:1259;s:20:\"um-faicon-bell-slash\";i:1260;s:22:\"um-faicon-bell-slash-o\";i:1261;s:15:\"um-faicon-trash\";i:1262;s:19:\"um-faicon-copyright\";i:1263;s:12:\"um-faicon-at\";i:1264;s:20:\"um-faicon-eyedropper\";i:1265;s:21:\"um-faicon-paint-brush\";i:1266;s:23:\"um-faicon-birthday-cake\";i:1267;s:20:\"um-faicon-area-chart\";i:1268;s:19:\"um-faicon-pie-chart\";i:1269;s:20:\"um-faicon-line-chart\";i:1270;s:16:\"um-faicon-lastfm\";i:1271;s:23:\"um-faicon-lastfm-square\";i:1272;s:20:\"um-faicon-toggle-off\";i:1273;s:19:\"um-faicon-toggle-on\";i:1274;s:17:\"um-faicon-bicycle\";i:1275;s:13:\"um-faicon-bus\";i:1276;s:17:\"um-faicon-ioxhost\";i:1277;s:19:\"um-faicon-angellist\";i:1278;s:12:\"um-faicon-cc\";i:1279;s:16:\"um-faicon-shekel\";i:1280;s:16:\"um-faicon-sheqel\";i:1281;s:13:\"um-faicon-ils\";i:1282;s:18:\"um-faicon-meanpath\";}','yes'),
  315. (270,'um_existing_rows_5655','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
  316. (271,'um_form_rowdata_5655','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}','yes'),
  317. (274,'ur_secret_key','aPPyfvS99ZQD8J6sBcyJi6zQh^5f09!i','yes'),
  318. (275,'ur_secret_iv',')Petg&Q^rSjbWBt4r7p574nv5ooZXr#^','yes'),
  319. (276,'um_cache_userdata_1','a:127:{s:2:\"ID\";i:1;s:10:\"user_login\";s:3:\"val\";s:9:\"user_pass\";s:60:\"$2y$10$EF0G3K0tUyCziEA54d5rnuPa/hahpQVnGFlqAFQULxD7JLoNieU3.\";s:13:\"user_nicename\";s:3:\"val\";s:10:\"user_email\";s:34:\"valentin_le_moign@figureslibres.io\";s:8:\"user_url\";s:20:\"https://localhost/wp\";s:15:\"user_registered\";s:19:\"2023-05-15 02:26:02\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:3:\"val\";s:13:\"administrator\";b:1;s:15:\"wpie_new_export\";b:1;s:18:\"wpie_manage_export\";b:1;s:15:\"wpie_new_import\";b:1;s:18:\"wpie_manage_import\";b:1;s:13:\"wpie_settings\";b:1;s:15:\"wpie_extensions\";b:1;s:18:\"wpie_add_shortcode\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:3:\"val\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:18:\"show_welcome_panel\";s:1:\"1\";s:37:\"wp_dashboard_quick_press_last_post_id\";s:1:\"4\";s:25:\"community-events-location\";s:33:\"a:1:{s:2:\"ip\";s:10:\"172.21.0.0\";}\";s:24:\"wp_persisted_preferences\";s:199:\"a:2:{s:14:\"core/edit-post\";a:4:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"editorMode\";s:6:\"visual\";s:10:\"openPanels\";a:0:{}}s:9:\"_modified\";s:24:\"2023-07-04T12:55:05.409Z\";}\";s:77:\"wpda_manage_columnshidden_wp-data-access_page_wpda_publisherwp_wpda_publisher\";s:990:\"a:32:{i:0;s:14:\"pub_table_name\";i:1;s:16:\"pub_column_names\";i:2;s:14:\"pub_sort_icons\";i:3;s:10:\"pub_styles\";i:4;s:17:\"pub_style_premium\";i:5;s:14:\"pub_style_user\";i:6;s:15:\"pub_style_color\";i:7;s:15:\"pub_style_space\";i:8;s:16:\"pub_style_corner\";i:9;s:21:\"pub_style_modal_width\";i:10;s:26:\"pub_responsive_popup_title\";i:11;s:19:\"pub_responsive_cols\";i:12;s:19:\"pub_responsive_type\";i:13;s:31:\"pub_responsive_modal_hyperlinks\";i:14;s:19:\"pub_responsive_icon\";i:15;s:16:\"pub_flat_scrollx\";i:16;s:10:\"pub_format\";i:17;s:17:\"pub_default_where\";i:18;s:19:\"pub_default_orderby\";i:19;s:27:\"pub_table_options_searching\";i:20;s:26:\"pub_table_options_ordering\";i:21;s:24:\"pub_table_options_paging\";i:22;s:26:\"pub_table_options_advanced\";i:23;s:28:\"pub_table_options_serverside\";i:24;s:23:\"pub_table_options_nl2br\";i:25;s:26:\"pub_show_advanced_settings\";i:26;s:14:\"pub_extentions\";i:27;s:9:\"pub_query\";i:28;s:7:\"pub_cpt\";i:29;s:14:\"pub_cpt_fields\";i:30;s:13:\"pub_cpt_query\";i:31;s:14:\"pub_cpt_format\";}\";s:20:\"enable_custom_fields\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:35:\"um_user_profile_url_slug_user_login\";s:3:\"val\";s:14:\"_um_last_login\";s:10:\"1688729530\";s:19:\"account_status_name\";s:10:\"Approuvés\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','no'),
  320. (278,'um_existing_rows_5654','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
  321. (279,'um_form_rowdata_5654','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}','yes'),
  322. (280,'um_fields','a:0:{}','yes'),
  323. (281,'um_existing_rows_5656','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
  324. (282,'um_form_rowdata_5656','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}','yes'),
  325. (285,'_site_transient_timeout_browser_b92b15ac42fc3e75755d685b2900da19','1689634262','no'),
  326. (286,'_site_transient_browser_b92b15ac42fc3e75755d685b2900da19','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"114.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
  327. (301,'_site_transient_timeout_popular_importers_e6a24040e24587f5bbd50d76f007c002','1689203143','no'),
  328. (302,'_site_transient_popular_importers_e6a24040e24587f5bbd50d76f007c002','a:2:{s:9:\"importers\";a:7:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts &amp; media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','no'),
  329. (307,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1689120357','no'),
  330. (308,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 13:27:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.3-beta3-56196\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"6.3 Live Product Demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 13:27:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15354\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:178:\"Want to learn more about WordPress 6.3, planned for release on August 8, 2023? Join the WordPress community for a first look at 6.3 in action during a live product demonstration.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3601:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?resize=1024%2C576&#038;ssl=1\" alt=\"WordPress 6.3 Live Product Demo Cover Art\" class=\"wp-image-15355\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><strong>Want to learn more about WordPress 6.3, planned for release on August 8, 2023? Join the WordPress community for a first look at 6.3 in action during a live product demonstration.</strong></p>\n\n\n\n<p>6.3 release squad members, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/annezazu/\" target=\"_blank\">Anne McCarthy</a> and <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/richtabor/\" target=\"_blank\">Rich Tabor</a>, will team up with moderator, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/njwrigley/\" target=\"_blank\">Nathan Wrigley</a>, to guide attendees through the anticipated highlights of the upcoming release. This event will follow a similar format to the <a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\">live demo for 6.2</a>.</p>\n\n\n\n<p>Attendees will see recent improvements to the Site Editor, Patterns, Command Palette, and more. Following the demo, there will be a Q&amp;A session, and you may submit questions in advance via <a href=\"https://wordpress.slack.com/archives/C039R2P1ZC1\">Slack</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Date, Time, and Location</h2>\n\n\n\n<p>Thursday, July 20, 2023 at <a href=\"http://time.unitarium.com/utc/1600\">16:00 UTC</a><br><a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom Link</a> | Save this link and use it on July 20 to join the event.</p>\n\n\n\n<p>The event will be recorded, archived for on-demand viewing on <a href=\"https://wordpress.tv/\">WordPress.tv</a>, and shared in a recap post shortly afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">About WordPress 6.3</h2>\n\n\n\n<p>To learn more about WordPress 6.3, please visit the following resources:</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2 Announcement</a></li>\n\n\n\n<li>Overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a></li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> for testing 6.3</li>\n</ul>\n\n\n\n<p>Props to our panelists and moderator, and to <a href=\'https://profiles.wordpress.org/jpantani/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jpantani</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>, and <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for helping prepare this announcement and supporting event logistics.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 17:10:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15340\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:289:\"WordPress 6.3 Beta 3 is now ready for download and testing!\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version on production or mission-critical websites. Instead, it is recommended that you test Beta 3 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5926:\"\n<p>WordPress 6.3 Beta 3 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, it is recommended you evaluate Beta 3 on a test server and site. </p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a> in the coming weeks for further details. Also, save the date for a live product demo tentatively scheduled for Thursday, July 20, 2023 at 16:00 UTC (link TBD). This will be a great opportunity to join the WordPress community to celebrate the accomplishments of 6.3 and this final chapter of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 3 highlights</h2>\n\n\n\n<p>Thanks to the many WordPress beta testers, this release contains approximately 34 (Site Editor) and 40+ (Trac) updates since the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 release</a>. Nice work, team!</p>\n\n\n\n<p>Testers should note that the &#8220;Patterns Library&#8221; is <a href=\"https://github.com/WordPress/gutenberg/pull/52102\">now simply called <em>Patterns</em></a> in the UI. Additionally, pattern details now include a <a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status</a> and a <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">lock icon</a> is added for theme patterns.</p>\n\n\n\n<p>Browse the technical details for issues addressed since Beta 2 using these queries:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">GitHub commits for 6.3</a></li>\n\n\n\n<li>Closed <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=06%2F28%2F2023..07%2F03%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a> since June 28</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test the new features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not.&nbsp;</p>\n\n\n\n<p>While testing the upgrade process is essential, trying out new features is too. Review the many <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a> and focus your testing efforts on those areas in particular.</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you&#8217;ve never tested a beta release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>Between the Beta 1 release and the final release candidate (RC), the <a href=\"https://make.wordpress.org/security/2023/06/28/doubling-the-bounties-for-wordpress-6-3-beta/\">monetary reward for reporting new, unreleased security vulnerabilities is double</a>. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 Beta 3</h2>\n\n\n\n<p>You can test WordPress 6.3 Beta 3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-beta3.zip\">Beta 3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-beta3</code></li>\n</ul>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, which is about five weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 Haiku for You</h2>\n\n\n\n<p>Beta three, a peek<br>Summer here and winter there<br>A fourth in one week</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>@eidolonnight</em></a><em>, </em><a href=\"https://profiles.wordpress.org/davidbaumwald/\"><em>@davidbaumwald</em></a>, <a href=\"https://profiles.wordpress.org/priethor/\">@priethor</a>, and <a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a> for the Haiku.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15340\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WP Briefing: Episode 59: A Polyglot’s WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/07/episode-59-a-polyglots-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15281\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:227:\"Join WordPress Executive Director Josepha Haden Chomphosy in the 59th episode of the WordPress Briefing. Today she invites guest speaker Alex Kirk to discuss Polyglots’ work to continue to help bring translation to WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/06/WP-Briefing-059.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:30284:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 59th episode of the WordPress Briefing. Today she invites guest speaker Alex Kirk to discuss Polyglots&#8217; work to continue to help bring translation to WordPress. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Guests: <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a> and <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/\">Polyglots team</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/about/roadmap/\">Gutenberg Project roadmap</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/glotpress/\">GlotPress plugin</a></li>\n\n\n\n<li><a href=\"https://translate.wordpress.org/\">Translating WordPress</a> &#8211; Contribute to WordPress core, themes, and plugins by translating them into your language.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> &#8211; WordPress that runs entirely in your browser.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/08/translate-live-updates-to-the-translation-playground/\">Translate Live: Updates to the Translation Playground</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/handbook/about/roles-and-capabilities/\">Polyglots Roles and Capabilities</a> &#8211; Including the <a href=\"https://make.wordpress.org/polyglots/handbook/about/roles-and-capabilities/#general-translation-editor\">GTE</a> and <a href=\"https://make.wordpress.org/polyglots/handbook/about/roles-and-capabilities/#project-translation-editor\">PTE</a> roles.</li>\n\n\n\n<li><a href=\"https://href.li/?https://2023.wpcampus.org/\">WPCampus 2023</a> &#8211; A hybrid event, July 12th through the 14th, at Tulane University in New Orleans, Louisiana. Topics focus on the growth of higher education, accessibility, WordPress, and anyone who works in higher education.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a> &#8211; A cohort-based onboarding experience with guided courses and live workshops for those interested in contributing to the project but unsure where to begin.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15281\"></span>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:00:10]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:00:39]&nbsp;</strong></p>\n\n\n\n<p>I have with me Alex Kirk, who is a longtime WordPress contributor and who has been instrumental in recent innovations in the Polyglots&#8217; work. Phase four of the Gutenberg project is native multilingual support, and so I see this work that is being done as instrumental, not only for our global community but in support of what&#8217;s to come in that specific roadmap.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:00:59]&nbsp;</strong></p>\n\n\n\n<p>So without further ado, Alex Kirk, welcome to the WordPress Briefing.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:01:03]</strong></p>\n\n\n\n<p>Hello, how are you doing?&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:01:05]</strong></p>\n\n\n\n<p>I&#8217;m good. I&#8217;m good. Can you, let&#8217;s, because I bet that not a lot of people know who you are, can you first start by just telling me a bit about your work with WordPress, and then let us know what GlotPress is, for those of us who don&#8217;t know yet?&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:01:19]</strong></p>\n\n\n\n<p>All right. So, Automattic sponsors me to work in the WordPress project on the Meta team and on the Polyglots team. So I spent time on improving or helping improve the software that powers the translation on WordPress.org. But I also work on the meta team on things like Matrix and evaluating if it would be a good fit for WordPress to switch to Matrix for their chat system.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:01:46]</strong></p>\n\n\n\n<p>So a lot of really big projects that you work on, all of that kind of stuff that has no easy solutions anymore, is where you are right now. Huh?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:01:56]</strong></p>\n\n\n\n<p>Yeah, there&#8217;s no clear path, but it&#8217;s our mission to find it. So that&#8217;s part of what makes things interesting.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:02:05]</strong></p>\n\n\n\n<p>Cool. So for folks who don&#8217;t know too much about the Polyglots team or generally translating WordPress, the software, can you let us know a bit about what GlotPress is?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:02:16]</strong></p>\n\n\n\n<p>Right. So the translation system that powers WordPress.org is called GlotPress. It used to be a standalone software that was developed a couple of years ago, and it was transformed into a WordPress plugin at some point, and now powers the translation that happens on WordPress.org. So we translate WordPress core there from English to other languages, plugins, themes, block patterns, and it all happens through this software called GlotPress. There are a couple GlotPress installations around the world, but I think the WordPress.org one is one of the bigger ones.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:02:55]</strong></p>\n\n\n\n<p>Probably, WordPress.org is pretty, pretty massive. Also, I think it&#8217;s great that you said that GlotPress was created a couple of years ago, like that, that indicates to me that you&#8217;re working on a really different timescale than a lot of folks are in WordPress.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:03:10]</strong></p>\n\n\n\n<p>So Alex, tell me a little bit about what it takes to ship translated WordPress software. So, I mean, for people who don&#8217;t need translated WordPress, like obviously we don&#8217;t have a good idea of what it takes to make sure that WordPress is available in so many languages. So what goes into the work of making sure that that happens?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:03:32]</strong></p>\n\n\n\n<p>All right, so typically the WordPress software and plugins and themes are primarily created in English. And for it to be available in other languages, it needs to be translated. And for that to be able to happen, the programmers need to make the software translatable. Basically, they&#8217;re providing each English string for the translation software to be available to be transformed, so to speak, into another language and to what it&#8217;s being transformed to. This is what the translators do. So they go into the GlotPress software and see the list of texts that need to be translated and translate it to their language that they speak. Typically there is a process around this.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:03:32]</strong></p>\n\n\n\n<p>So, we&#8217;ve got people who have lots of experience in translation. And specifically in translating WordPress or WordPress plugins. And they&#8217;re kind of the, the people who help ensure good quality of translation. So anybody who&#8217;s working the WordPress project, so basically who has a WordPress.org account, can come in and address the translation. And that translation enters the system, so to speak, in a waiting state. And then somebody who we promoted to be a Translation Editor will come along and take a look at your translation and will approve it or will give you suggestions how to do the translation in a better way, or come up with maybe even a better translation.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:03]</strong></p>\n\n\n\n<p>You know, when you have like a small thing that&#8217;s just not right, like a missing full stop or something like that. They might just add it for you. And well, as soon as the plugin or software is translated to a certain level of translations those translations will be shipped out to the WordPress installs.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:20]</strong></p>\n\n\n\n<p>So, for example, for a plugin, you would reach 90% of translated strings. Those translations will then be basically packed up into zip file, a language pack and delivered to each WordPress so that you can have the translations available there.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:05:35]</strong></p>\n\n\n\n<p>And is 90% the threshold for plugins only, or is that also the threshold for like themes and the CMS itself?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:34]</strong></p>\n\n\n\n<p>Well. We strive for 100%, I would say.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:05:47]</strong></p>\n\n\n\n<p>Good. <em>( laughs )</em></p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:48]</strong></p>\n\n\n\n<p>And, 90% more of a motivational point. To be actually honest, I&#8217;m not sure if the threshold is 90% for every project or even if it&#8217;s actually 90%. It&#8217;s different between different GlotPress installations and it&#8217;s basically something that is made as a setting that can be changed. There&#8217;s, it&#8217;s an arbitrary number. Typically you&#8217;d actually want to make sure that the most important strings are translated first. So the ones like, if you look at the whole picture, software usually consists of many parts, many of whom are not encountered by people on a regular basis. For example, error messages that could be like obscure error messages, and you could argue that those might be not as important. Or even sometimes you could even say like, do they need to be translated? Because if you encounter an error message and you search the internet, wouldn&#8217;t you probably want everybody to search for the English one to find the solution? But that set-aside, it&#8217;s important to have like the headline of the plugin or like the most important strings translated, and typically translating those most important strings will take you to a pretty high percentage so that we can then say it&#8217;s good enough to be shipped.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:07:02]</strong></p>\n\n\n\n<p>Gotcha. I see, I see. Okay. Well, we talked a bit earlier about GlotPress&#8217;s timeline. It has been around for a bit, I know. But with that kind of in mind, have there been any notable changes to GlotPress recently?&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:07:19]</strong></p>\n\n\n\n<p>Yeah, so I think for GlotPress there&#8217;s been a bit of an up and down over time in terms of engagement and progress on the software. But in, in the recent year, I think we&#8217;ve added a couple of things that have been very helpful for translators. So one of them was adding the commenting functionality, so yeah.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:07:35]</strong></p>\n\n\n\n<p>Super helpful. Shocked it wasn&#8217;t there before. Sorry, translators. Sorry, all of our polyglots.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:07:40]</strong></p>\n\n\n\n<p>Well, it can be like there was when GlotPress was created there, there is like the, a big part of GlotPress are these states, like the waiting state when you enter translation, and then there&#8217;s approved state, which basically a translation we say it&#8217;s set to current, and there&#8217;s all sorts of process around it. So if the software is updated or translation might get fuzzy. But also like, if somebody submits a translation that doesn&#8217;t fully conform to what&#8217;s the translation editors, or like what the standards of the translation community have been set to, then you would have to need to reject it.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:08:16]</strong></p>\n\n\n\n<p>And that has been something that we felt wasn&#8217;t a very good and enticing way of telling people like, we appreciate your work. It wasn&#8217;t just quite right, but it&#8217;s more of a rejection. So this is how we came up with this like, let&#8217;s give people the option to say what was wrong and give them a chance to try again without making them feel rejected.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:08:38]</strong></p>\n\n\n\n<p>Yeah. Sort of a &#8220;No, but&#8230;&#8221; as opposed to a, just refusal to receive it.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:08:45]</strong></p>\n\n\n\n<p>And other things that we&#8217;ve worked on is, like, with the recent search of AI, like getting help from AI on translation and also on reviews. So, there&#8217;s some interesting things that you can do with AI in that regard; that one important aspect of translations, it&#8217;s also that we&#8217;ve got glossaries for each language where people, basically the translation community, identifies certain words they want to translate them the same way every time.&nbsp;And with the AI, you can basically add to the prompt, like, please translate those words to those translations when you give me a translation for that. And as it can change over time, you can always adapt this to the prompt, and that has been proven quite helpful.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:09:25]</strong></p>\n\n\n\n<p>That is great. That&#8217;s one of those things I know that AI has been like a really popular thing to talk about. And AI, specifically for translations, I think has caused some concern that maybe we&#8217;ll just like translate it all and hope that computers get it right when we know pretty certainly that computers don&#8217;t always get the translations right. But that&#8217;s not what you&#8217;re talking about, right? What you&#8217;re suggesting is that AI would suggest what could be translated and what it could be translated to, and then human beings have to confirm that that&#8217;s correct, right?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:09:59]</strong></p>\n\n\n\n<p>That&#8217;s exactly it. So basically, we give suggestions to the translators, and then they can modify a translation before they press save. It&#8217;s more of a, like supporting them in getting the translations, like looking up words more quickly and all of that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:10:16]</strong></p>\n\n\n\n<p>That&#8217;s wonderful. So is that the major sort of next step that is coming for GlotPress, or are there other things that we should keep an eye out for in that software?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:10:27]</strong></p>\n\n\n\n<p>So one direction that we&#8217;ve been taking GlotPress is basically making use of the fact that GlotPress is WordPress plugin now. And you know, typically, you would just use a GlotPress install. So on WordPress.Org, there&#8217;s like GlotPress installed, there&#8217;s translation projects created, something that we call &#8220;translation sets&#8221;. So for languages, you want to translate it to, it&#8217;s all pre-configured, and if you would install GlotPress to plugin on your own WordPress, it would be empty and not very useful. So what we&#8217;ve added is a way for you to basically be able to translate the plugins and themes that you&#8217;ve got installed in your WordPress into the language that you&#8217;re interested in.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:11:07]</strong></p>\n\n\n\n<p>So you might have a non-English website that you want to use certain plugins with, and they might not be fully translated at this point, so obviously, you could go to WordPress.org and help translate them, and that&#8217;s the way to, that&#8217;s preferred. But you could also now go install GlotPress on your own website and translate there. And then you have the translations there right when you enter them. And you can then contribute those translations back to WordPress.org.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:11:35]</strong></p>\n\n\n\n<p>So that&#8217;s with local GlotPress?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:11:37]</strong></p>\n\n\n\n<p>That&#8217;s something that we call local GlotPress. And you know, since we then have all these translations in the local database, it means we can do even more with those translations. So typically, language packs would be delivered to WordPress, but with local GlotPress, you&#8217;ve got like all the GlotPress software there.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:11:56]</strong></p>\n\n\n\n<p>So we can do things like inline translation. So, on your own WordPress and wp-admin, for example, we can highlight all the strings that can be translated, and those strings just have to right-click them and enter your translation, and that way, you can basically go about and translate the whole ui, seeing your progress, as you&#8217;re making, basically turning the screen from red to green.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:12:20]</strong></p>\n\n\n\n<p>Yeah. Yeah. So that&#8217;s something now that you can do in your local WordPress installation.&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:12:26]</strong></p>\n\n\n\n<p>Basically, it&#8217;s completely independent of WordPress.org. We would ask you to contribute the translations back when you have them, but being independent also allows you to translate like premium plugins, which could not be hosted on WordPress.org or doing something like that we call like hyper-local translation. So, for example, I speak Austrian German natively, but even inside Austria, we&#8217;ve got different dialects or like special words that we use. And if I wanted to create a website that&#8217;s targeted at the Viennese market, for example, I might want to use those specific terms. And this is something I would have to argue for those translations to be accepted on WordPress.org because it&#8217;s a, it&#8217;s like a very targeted market. But if I have a local GlotPress, I can do those translations there.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:13:11]</strong></p>\n\n\n\n<p>That seems awfully beneficial, especially as dialects. I&#8217;ve been having these conversations. I have, in my extended family, many children, and they are all learning languages and one of them has been having kind of thoughts about, like, dialects and how dialects are almost another language. And if so, like how do you know what everybody&#8217;s saying when you&#8217;re speaking all the same thing, but it&#8217;s kind of a little bit it sounds a little bit different.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:13:37]</strong></p>\n\n\n\n<p>That&#8217;s certainly a thing in the US, the distinct dialects across our country. And so I imagine that that&#8217;s gonna be a really beneficial sort of implementation for countries that have a lot of different regional variations and certainly smaller countries that have technically the same language as somebody else, but a lot of regional differences, regional specific things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:14:01]</strong></p>\n\n\n\n<p>Is that the same or different as the live translations, Translate Live, that we talked about at the WordCamp Europe a couple weeks back?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:14:12]</strong></p>\n\n\n\n<p>Right. So, Translate Live is kind of the next step after local GlotPress. It&#8217;s like this happy marriage between the WordPress Playground and local GlotPress. So the WordPress Playground is also something that has come up a lot. It&#8217;s basically a way for you to run WordPress inside a browser window, so in JavaScript. And at first, it seems like mildly interesting, I would say. But when you combine it with other things like local GlotPress, it can lead to really interesting opportunities. So with inline translation, for example, on WordPress.org, you would typically find for every plugin, the UI would look the same. You would have a table of strings, and all that makes you realize you&#8217;re translating this certain plugin is that in the header of the page, it says this name of the plugin, but other than that, it can look really all the same.&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:15:07]</strong></p>\n\n\n\n<p>And now, with WordPress Playground, you can put up a WordPress and run this plugin inside that Playground. And now, if you add local GlotPress to the picture, you can also do the inline translation of that plugin inside the WordPress Playground. So you&#8217;ve got inline translation. We add the glossary so they do make sure that you translate things the same way that they&#8217;re expected, and you don&#8217;t have to install the plugin.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:15:33]</strong></p>\n\n\n\n<p>And still, you can see what the translations will look like. You can see the strings next to each other, and what I think is most important, you will start with the strings that you see first, which are the most important ones. When you&#8217;re in the table view, those strings might be somewhere buried in the middle, and yeah, it&#8217;s really hard to see progress if you start with kind of obscure error messages, for example, versus just starting with the things that you see first.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:16:02]</strong></p>\n\n\n\n<p>Yeah. So, moving translations away from table-based translations where you kind of have to know what you&#8217;re looking for. So the Translate Live, along with local GlotPress, along with WP Playground, is going to make it so that it&#8217;s easier to see visually what needs to be translated, where, what&#8217;s most valuable to translate for your mid users and your end users, basically.</p>\n\n\n\n<p>Yeah?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:16:30]</strong></p>\n\n\n\n<p>That, and also like for plug-in authors, it can be really good to see, you know, you can switch the languages in the Playground to another language, and you can quickly see like what&#8217;s the state of the translation in this language or in that language. And even things like, you know, Arabic as an RTL language rights to left language. The sidebar will change to the right, and you can also just switch language and see like, what&#8217;s my plugin like in this environment. I mean, this is not technically something that&#8217;s related to local GlotPress, but in this translation live ui, it&#8217;s very easy to change languages and see your plugin in another language.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:17:06]</strong></p>\n\n\n\n<p>I mean, it&#8217;s not specifically related to, to Translations Live, but also, I think that if we&#8217;re saying that WordPress not necessarily is going to lead the way with translations and native multilingual support in our CMS because, of course, it&#8217;s still a little bit far out on our roadmap. We certainly have an opportunity to have the best implementation of that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:17:27]</strong></p>\n\n\n\n<p>And even if like that specific use case that you&#8217;re talking about isn&#8217;t related directly to what it is that you are working on for Polyglots and inside GlotPress and all of that, I do see that having more streamlined, more easy to see and access opportunities to like test the way that our software looks across varying environments, especially those that change it substantially from what we typically work in day-to-day for any individual developer or any individual WordPress site implementer.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:18:00</strong>]</p>\n\n\n\n<p>Like, I think that that is a big step forward for all of us and certainly for anyone who is having to use WordPress as not a native English speaker. And so you say it&#8217;s not related, but it still is a big, a big benefit for WordPress overall, I think, to have this kind of work happening so that we can have those benefits to the folks who are using our software.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:18:22]</strong></p>\n\n\n\n<p>So there were a couple of different things that you mentioned over the course of our conversation. We&#8217;re gonna put some links to the show notes for all of those. But one thing that you mentioned that just kind of went by, and we never really had an opportunity to talk about it. You talked about the, I think it was GTEs, Global Translation Editors, the folks that are like approved as final approvers of translations. If there is someone who&#8217;s listening to this podcast who wants to become a GTE someday, where would they go to do that?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:18:54]</strong></p>\n\n\n\n<p>So the path to GTE is a PTE.&nbsp;<em>( laughs )</em></p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:18:59]</strong></p>\n\n\n\n<p>So, we&#8217;ve got different levels of translation editors. Basically, you start, you could say you start off as a translator, and this is how you can kind of show that you can do good translations or that you&#8217;re very firm in your language. And this might make you be noticed in the community.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:19:16]</strong></p>\n\n\n\n<p>So we&#8217;re always looking for people who like to help with translations. And you might be then promoted to be a Project Translation Editor. Basically, it means that for a single language in a project, you&#8217;ll be able to approve translations. So, you&#8217;ll be the one who says, like, this translation is a good one and this conforms to the to the rules that we have stated as a translation community.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:19:42]</strong></p>\n\n\n\n<p>And further down the path then is the GTE, where you basically are allowed to approve translations across any project on translate.WordPress.org in your language. And that&#8217;s, usually you&#8217;ll be in, in that position with other GTEs.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:20:04]</strong></p>\n\n\n\n<p>So there is, like, in each community, there is like, we&#8217;re people based. We talk about what might be a good translation. We talk to each other, try to find rules that maybe prevent common mistranslations, or set the standards for how we want the software to be translated. And this is something where you get a voice as a translator, but as a GTE, you get into a position where you can actually make the changes or find consensus on how the software should be translated in your language.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:20:35]</strong></p>\n\n\n\n<p>And if folks are not familiar where the Polyglots team works and meets, where would they find you all?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:20:41]</strong></p>\n\n\n\n<p>At make.WordPress.org/polyglots.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:20:45]</strong></p>\n\n\n\n<p>Perfect. Alex, this has been such a fascinating conversation. Thank you so much for joining me today.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:20:50]</strong></p>\n\n\n\n<p>Thank you very much.&nbsp;</p>\n\n\n\n<p><em>( Intermission music )</em></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:20:59]</strong></p>\n\n\n\n<p>So that brings us now to our small list of big things. First, WP Campus 2023 is taking place July 12th through the 14th. That&#8217;s a nonprofit three-day conference with topics that focus on the growth of higher education, accessibility, WordPress, and anyone who works in higher education.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:17]</strong></p>\n\n\n\n<p>It&#8217;s a hybrid event. There is an in-person component on the beautiful campus of Tulane University in New Orleans, Louisiana. I&#8217;ll add information about that in our show notes for anyone who would like to join in person or online.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:32]</strong></p>\n\n\n\n<p>The second thing is that the mentorship program pilot that I have been talking about a little bit over the last few months has been formally launched.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:39]</strong></p>\n\n\n\n<p>If you are interested in contributing more to the project but not sure where to begin, take a look at this comprehensive onboarding experience. It&#8217;s cohort-based. It has some personalized one-to-one mentorship. There are guided courses, live workshops, all of that. So read more about it in our show notes and sign up for one-on-one team mentorship.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:59]</strong></p>\n\n\n\n<p>And then, finally, Matt mentioned at WordCamp Europe an idea that he had been thinking of for some time a Make team dashboard that would sort of help define team metrics and help identify for individual contributors what should indicate team health and where they can find the most impactful projects to work on.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:22:20]</strong></p>\n\n\n\n<p>A post has since been published on make.WordPress.org/meta calling for additional feedback on that idea, so that we have an understanding of what this could be, how the dashboard can kind of come to be. And so stop by and add your thoughts there in the comments.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:22:38]</strong></p>\n\n\n\n<p>And that, my friends, is your small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:22:42]</strong></p>\n\n\n\n<p>Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><em>( Outro music )</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Allison Dye\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jun 2023 21:23:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15287\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The People of WordPress goes to the US to feature Allison Dye, who uses the software in her work and disability-advocacy.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14661:\"\n<p><strong>A way to escape chronic pain and give a sense of independence, is what using WordPress means for Italian-American Allison Dye. Now as a project manager and social media content manager living in North Carolina, USA, she uses the software in her work and in disability-advocacy.</strong></p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"537\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/fi-allison-dye.jpg?resize=1024%2C537&#038;ssl=1\" alt=\"Allison Dye\" class=\"wp-image-15292\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/fi-allison-dye.jpg?resize=1024%2C537&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/06/fi-allison-dye.jpg?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/06/fi-allison-dye.jpg?resize=768%2C403&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/06/fi-allison-dye.jpg?w=1196&amp;ssl=1 1196w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Allison was first introduced to WordPress when she was 13 years old. Her parents gave her own WordPress website to use, play, test, and try whatever she wanted with it. Her health issues had started when she was eight years old, and being able to express who she was and learn new skills provided an escape she needed. </p>\n\n\n\n<h2 class=\"wp-block-heading\">My first encounter with WordPress</h2>\n\n\n\n<p>Allison said: &#8220;While the technical aspects of my new WordPress website intrigued me, I was more interested in the space it made for me to write. All throughout my childhood I had struggled with chronic pain, fatigue, and other unexplained symptoms. Having a private world I could call my own, I was able to write my story.&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;There is something truly amazing about having a place to tell your story.&#8221;</p>\n<cite>Allison Dye</cite></blockquote>\n\n\n\n<p>Her family faced many doctors, nurse, specialists and hospital visits, but could not get an answer to the difficulties faced by Allison. She said: &#8220;I felt like my life and world were out of control. But logging onto my little website and typing away on the computer keys gave me a sense of control. I couldn’t always do things that other kids had the energy to do. But I could get lost in writing for hours. I couldn’t control my life story, but I could write about it.&#8221;</p>\n\n\n\n<p>She felt it was like writing letters to her future self and would act as a reminder of how strong she had become. Even now when Allison writes on her website, she feels it is writing letters to her past self, expressing reassurance and pride. The practice of writing online continues to help her reflect on how she coped and made it through the difficulties.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress in the real world</h2>\n\n\n\n<p>Allison hoped her early experiences with hospitals and being unwell was just part of being a child, and that in adulthood she would be healthy. She longed for this time.</p>\n\n\n\n<p>Growing up did not bring her this dream of a healthier life and an end to chronic pain. In fact, her condition worsened as she went through her teens and at 18 she finally received a diagnosis of Multiple Sclerosis.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/allison-2.jpg?resize=768%2C1024&#038;ssl=1\" alt=\"Allison stood in front of trees\" class=\"wp-image-15290\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/allison-2.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/06/allison-2.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/06/allison-2.jpg?w=900&amp;ssl=1 900w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Allison enjoying time with nature and trees</figcaption></figure>\n\n\n\n<p>This changed what had been conventional job choices, as she was not able to handle a 9 to 5 work schedule. She could not drive herself to work on some days and relied on her mother to help with transport. She knew that she would have to find another way to work and she was determined to find it.</p>\n\n\n\n<p>She began writing music and book reviews online, and then moved onto writing blog posts. As they were published she started to receive payment and a sense of power over her life. She said: &#8220;WordPress felt familiar, typing on the computer keys felt comfortable, and sharing my words with the world felt surreal.&#8221;</p>\n\n\n\n<p>Allison&#8217;s sense of ownership of the software became part of her strength. &#8220;I think I believed WordPress was mine somehow. I was learning that WordPress is something that belongs to everyone in some way. And I loved it.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Finding work with WordPress</h2>\n\n\n\n<p>The confidence using the platform gave Allison led her to find more about what it could do and meet other people who used it. She said: &#8220;The thing I love about WordPress is that it’s not just for developers or bloggers or SEO experts. I began to meet more people in the community and was delighted to find people like me, who didn’t know the technical stuff, but were a part of WordPress.&#8221;</p>\n\n\n\n<p>This global community orbiting around the software gave her an opportunity to meet social media managers, designers, and people from many different areas. She found that &#8216;there was a place for everyone&#8217;. The guiding strength and fascination Allison found and still finds today is in that community. Allison said: &#8220;The community felt as important as the rest of everything that makes WordPress what it is. It felt like it was about people and relationships as well as codes and databases.&#8221;</p>\n\n\n\n<p>In 2020, she was hired by a WordPress company. She said: &#8220;I like being a part of a WordPress company, and I love that I contribute to a team that helps people with their websites. I understand the importance of having a space that’s yours. Whether it’s a business or personal site, having a website gives you the power of telling your own story.&#8221;</p>\n\n\n\n<p>WordPress gave Allison a freedom and an independence. She did not have to work a 9 to 5 job, rely on others to drive her on bad days with her MS, nor worry about days when she wanted to stay in her sweatshirts rather than go into an office to work. She said: &#8220;I have a 100% remote job which I can do despite the plot twists in my story, thanks to WordPress and the people in it.&#8221;</p>\n\n\n\n<p>WordPress took Allison into the world of project management for a small agency, and this experience was to help guide her path, skills and confidence into the future. She went on to work in content management in WordPress, building pages for awareness campaigns for non profit organizations and small businesses as a contractor. She helps people update their websites, add and edit content, perform basic updates and help them to learn how to use their sites. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I tell all my clients to use WordPress because there is really no other solution that can scale as easily for growing organizations and small businesses. I love how WordPress allows them to tell their stories, share their passion, and have a place to call their own on the internet.&#8221;</p>\n<cite>Allison Dye</cite></blockquote>\n\n\n\n<p>As a fluent English and Italian speaker, Allison is able to support clients in different countries from where she lives. &#8220;I love that with WordPress I&#8217;m able to support clients remotely. This is thanks to all of the many WordPress contributors, developers, project managers, content writers, and many, many volunteers that work tirelessly to enable people around the world to use WordPress.&#8221;</p>\n\n\n\n<p>Allison also became a certified as an English As A Second Language (ESL) teacher. &#8220;My affinity for words and languages allows me to teach passionately and creatively. I’m Italian-American and am fluent in English and Italian. Teaching English allows me to share my passion for communication with others.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcomed into the WordPress community</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"562\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/WPCoffeeTalk-Allie-Dye.png?resize=1024%2C562&#038;ssl=1\" alt=\"Allie interviewed for a podcast on her use of WordPress\" class=\"wp-image-15293\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/WPCoffeeTalk-Allie-Dye.png?resize=1024%2C562&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/06/WPCoffeeTalk-Allie-Dye.png?resize=300%2C165&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/06/WPCoffeeTalk-Allie-Dye.png?resize=768%2C422&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/06/WPCoffeeTalk-Allie-Dye.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Allie interviewed for a podcast on her use of WordPress</figcaption></figure>\n\n\n\n<p>Allison attributes mentors and supporters in the WordPress community for helping her appreciate she really is part of it. Allison recalled: &#8220;It felt unreal. I wasn’t a dev, I don’t know how to code, and yet I got to be a part of it all? I felt like I was a fake. But Kimberly continues to remind me that I’m real, I get to be here, I get to stay, I have a place.&#8221;</p>\n\n\n\n<p>She was later encouraged to contribute by a WordPress community member to the Big Orange Heart, which aims to support and promote positive well-being and mental health within remote working communities. She said she felt &#8216;honored typing my words, pieces of my story, and sharing them with a community of people&#8217;.</p>\n\n\n\n<p>She also joined the <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a> online organizing team. </p>\n\n\n\n<p>Allison enjoys the fact that in the WordPress community, &#8216;everyone here is constantly working to be better and do better&#8217;.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Facing the future with strength from her friends and colleagues in WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/allison-1.jpg?resize=675%2C900&#038;ssl=1\" alt=\"\" class=\"wp-image-15289\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/allison-1.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/06/allison-1.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Allison was later diagnosed with two additional neurological conditions: Functional Neurological Disorder and Migraine. She said: &#8220;If it were not for WordPress I would really be unable to work. But WordPress and its community continue to be a part of my life and I am grateful to everyone who&#8217;s helped me along my way. I don&#8217;t know where I would even be without it.&#8221;</p>\n\n\n\n<p>She strives to raise awareness of dynamic disabilities and invisible illnesses like her own through podcasts and social media. She feels that her WordPress friends have helped her both in her professional life and in her wish to be an advocate for others with disabilities too.<br><br>Allison hopes reading of her experience will help others who are worried about not progressing in a WordPress career due to health concerns.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I hope that it will remind anyone reading this that WordPress is a space for everyone. Healthy or not, developer or not, blogger or not — WordPress belongs to you too.&#8221;</p>\n<cite>Allison Dye</cite></blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Allie Dye (<a href=\'https://profiles.wordpress.org/allisondye/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>allisondye</a>)&nbsp;for sharing about her adventures in WordPress.</p>\n\n\n\n<p>Props to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>) and the late Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>) for interviews and writing the feature, Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for work on images, and to Meher, Maja Loncan (@mloncar) and Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) for reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jun 2023 23:30:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15193\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"WordPress 6.3 Beta 2 is ready for download and testing.\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 2 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:81:\"https://wordpress.org/news/files/2023/06/Prototype-of-the-Wayfinder-in-action.mp4\";s:6:\"length\";s:7:\"1269106\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15920:\"\n<p>WordPress 6.3 Beta 2 is ready for download and testing. This is the first release of the 6.3 cycle, as there was no Beta 1 due to technical issues with packaging the release. Rather than further delaying a beta release, the release squad has decided to package and ship Beta 2.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, the release squad recommends you evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p>WordPress 6.3 demonstrates incredible progress toward achieving the goals outlined in the <a href=\"https://wordpress.org/about/roadmap/\">WordPress roadmap</a> and is the <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">final major release of Phase 2</a>. Phase 2 has focused mainly on the Site Editor, enabling site creators to build websites, design compelling layouts, and manage content without toggling between multiple configuration areas or editing code.</p>\n\n\n\n<p>Learn more about Gutenberg updates debuting since WordPress 6.2 by reviewing prior editions of <em>What’s New in Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2023/02/24/whats-new-in-gutenberg-15-2-22-february/\">15.2</a>, <a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/\">15.3</a>, <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/\">15.4</a>, <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">15.5</a>, <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/\">15.6</a>, <a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\">15.7</a>, <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">15.8</a>, <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\">15.9</a>, <a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">16.0</a>, and <a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">16.1</a>.</p>\n\n\n\n<p>WordPress is the result of contributions by users, developers, and extenders across the globe. As this community seeks new features, the platform will continue to evolve, including the site editing features and beyond. Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A first look at 6.3</h2>\n\n\n\n<p>This latest WordPress release includes many updates spanning all platform areas, emphasizing the editing experience and polishing usability.&nbsp;This release contains more than 500 new features and enhancements and 400+ bug fixes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p>Following the incredible <a href=\"https://make.wordpress.org/core/2023/04/05/wordpress-6-2-performance-improvements-for-all-themes/\">performance improvements introduced in 6.2</a>, the release includes more than 170 performance-related updates, including adding <a href=\"https://core.trac.wordpress.org/ticket/12009\">defer and async support to the WP Scripts API</a> and <a href=\"https://core.trac.wordpress.org/ticket/58235\">fetchpriority support for images</a>. Optimizations were made to <a href=\"https://github.com/WordPress/wordpress-develop/pull/4097\">block template resolution</a>, <a href=\"https://core.trac.wordpress.org/ticket/58211\">image lazy-loading</a>, and the <a href=\"https://core.trac.wordpress.org/ticket/58472\">emoji loader</a>, all of which benefit LCP performance. Support for PHP versions <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=assigned&amp;status=new&amp;status=reopened&amp;status=reviewing&amp;keywords=~php8+-php81+-php82&amp;milestone=6.3&amp;order=priority\">8.0</a>, <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=assigned&amp;status=new&amp;status=reopened&amp;status=reviewing&amp;keywords=~php81&amp;milestone=6.3&amp;order=priority\">8.1</a>, and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=assigned&amp;status=new&amp;status=reopened&amp;status=reviewing&amp;keywords=~php82&amp;milestone=6.3&amp;order=priority\">8.2</a> has been improved.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Site Editor</h3>\n\n\n\n<p>The Site Editor expands to include navigating and editing <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/#add-the-pages-menu-to-the-site-editor-50463\">pages</a>, <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#style-variations-in-browse-mode\">styles</a>, <a href=\"https://github.com/WordPress/gutenberg/issues/50418#top\">templates</a>, and <a href=\"https://github.com/WordPress/gutenberg/issues/44461\">content</a>. The unified site editing experience will include a <a href=\"https://github.com/WordPress/gutenberg/issues/49175\">distraction-free mode</a>, enhanced <a href=\"https://make.wordpress.org/core/2023/02/24/whats-new-in-gutenberg-15-2-22-february/#enhancements-to-navigation-in-the-site-editor\">navigation</a>, and an <a href=\"https://github.com/WordPress/gutenberg/issues/35503\">improved loading experience</a>. Additionally, you can use the Site Editor to <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/#add-theme-previews-for-block-themes-50030\">preview a block theme</a> and adjust your site before activating the new theme. This release includes <a href=\"https://github.com/WordPress/gutenberg/pull/50089\">style revisions</a> so you can toggle between and preview different saved styles. Rounding out the changes, 6.3 ushers in a new <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/#command-tool\">Command Palette</a>, enabling users to context switch and perform actions quickly across different sections of the site editing experience.</p>\n\n\n\n<figure class=\"wp-block-video alignleft\"><video controls src=\"https://wordpress.org/news/files/2023/06/Prototype-of-the-Wayfinder-in-action.mp4\"></video><figcaption class=\"wp-element-caption\">Prototype of the Command Palette in action</figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Blocks</h3>\n\n\n\n<p>New blocks for <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#details-block-experimental\">details</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/51201\">footnotes</a> debut in this release, along with updates for better handling of <a href=\"https://github.com/WordPress/gutenberg/issues/51138\">image aspect ratios</a> and improved fallback states. <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#spacer-block-gets-spacing-presets\">Spacer blocks</a> now include presets, and the cover block gets updates for managing <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/#color-and-layout-support-for-cover-block\">text colors and layout support</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Spacing-Presets.png?ssl=1\" alt=\"\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">The new height control for the Spacer block</figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Patterns and Design</h3>\n\n\n\n<p>Reusable blocks have been renamed to <a href=\"https://github.com/WordPress/gutenberg/pull/51144\"><em>synced patterns</em></a>. This change reflects the unification of reusable blocks and traditional block patterns (unsynced patterns) within the Editor. A <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#patterns-as-template-starters\">new option</a> allows you to assign patterns to templates, adding the ability to have starter patterns to speed up the creation process. Site creators can now easily create, save, and manage custom synced and unsynced patterns, as well as browse a <a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">directory of curated patterns</a>. Additionally, the <a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/#leveling-up-duotone\">duotone filter</a> and <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#style-captions-via-the-styles-interface\">captions</a> can now be edited in the Styles interface.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Styling-Captions.png?ssl=1\" alt=\"\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Style your captions in the new Styles interface</figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Usability<strong> </strong></h3>\n\n\n\n<p>Some key usability highlights include <a href=\"https://github.com/WordPress/gutenberg/issues/40450\">toolbar updates</a>, <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/#updated-template-descriptions\">updated template descriptions</a>, enhanced <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/#enhancements-site-editor\">list view drag-and-drop</a>, improved <a href=\"https://github.com/WordPress/gutenberg/issues/49264#top\">padding and margin controls</a>, and a new area for <a href=\"https://github.com/WordPress/gutenberg/issues/50397#top\">managing patterns</a> (including reusable blocks, now called <em>synced patterns</em>.) <a href=\"https://github.com/WordPress/gutenberg/issues/50891\">Link control</a> receives some updates, rounding out high-level usability enhancements in 6.3.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Add-and-modify-descriptions-for-templates.png?ssl=1\" alt=\"\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Add and modify descriptions for templates</figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility</h3>\n\n\n\n<p>WordPress remains steadfast in making the site-building experience accessible to everyone. 6.3 incorporates over 50 accessibility improvements across the platform. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and <a href=\"https://core.trac.wordpress.org/ticket/50523\">new controls in the admin image editor</a> allow those using screen readers, keyboard navigation, and other assistive technology to navigate more easily. The <a href=\"https://core.trac.wordpress.org/ticket/32510\">login form</a>, <a href=\"https://core.trac.wordpress.org/ticket/40470\">installation steps</a>, and list tables (for <a href=\"https://core.trac.wordpress.org/ticket/32170\">sorting</a> and <a href=\"https://core.trac.wordpress.org/ticket/21516\">selection</a>) have all been updated. Additional accessibility tickets are viewable in <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~accessibility&amp;milestone=6.3&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">the WordPress Trac</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other notes</h3>\n\n\n\n<p>This release includes <a href=\"https://core.trac.wordpress.org/ticket/51857\">auto-rollback</a> for failed manual updates of themes and plugins.</p>\n\n\n\n<p><em>Please note that the features in this list may change before the final release.</em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Testing makes WordPress stronger!</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not.&nbsp;</p>\n\n\n\n<p>While testing the upgrade process is essential, testing new features is too. Review the many new features listed above and focus your testing efforts on those areas in particular.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you&#8217;ve never tested a beta release.</p>\n\n\n\n<p>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta 2</h3>\n\n\n\n<p>Between the Beta 2 release and the final release candidate (RC) for each new WordPress version, the <a href=\"https://make.wordpress.org/security/2023/06/28/doubling-the-bounties-for-wordpress-6-3-beta/\">monetary reward for reporting new, unreleased security vulnerabilities is doubled</a>. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get WordPress 6.3 Beta 2</h3>\n\n\n\n<p>You can test WordPress 6.3 Beta 2 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-beta2.zip\">Beta 2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.3-beta2</code></p>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, which is about six weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The first haiku for 6.3</h3>\n\n\n\n<p>A chapter closes<br>Excitement yet much newness<br>Phase 2 finale</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a>, <a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@CBringmann</em></a>, <a href=\"https://profiles.wordpress.org/audrasjb/\"><em>@AudrasJB</em></a>, <a href=\"https://profiles.wordpress.org/annezazu/\"><em>@annezazu</em></a>, <a href=\"https://profiles.wordpress.org/ndiego/\"><em>@ndiego</em></a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\"><em>@davidbaumwald</em></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><em>@desrosj</em></a>, <a href=\"https://profiles.wordpress.org/priethor/\"><em>@priethor</em></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><em>@flixos90</em></a>,<a href=\"https://profiles.wordpress.org/wildworks\"> @wildworks</a>, <em>and </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a><em> for authoring the haiku</em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WP Briefing: Episode 58: A New Wave for WordPress Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wordpress.org/news/2023/06/episode-58-a-new-wave-for-wordpress-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Jun 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15179\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Hear special guest host Chloé Bringmann and special guest Angela Jin in the WordPress Briefing as they discuss the next generation of WordCamps.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2023/06/WPBriefing-058.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15637:\"\n<p>Join WordPress guest host, Chief of Staff and Head of Operations, Chloé Bringmann, and special guest Head of Programs and Contributor Experience, Angela Jin, in the 58th episode of the WordPress Briefing as they discuss the next generation of WordCamps.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-1 wp-block-group-is-layout-constrained\">\n<ul>\n<li>Guest Host:&nbsp;<a target=\"_blank\" href=\"https://profiles.wordpress.org/cbringmann/\" rel=\"noreferrer noopener\">Chloé Bringmann</a></li>\n\n\n\n<li>Guest:&nbsp;<a target=\"_blank\" href=\"https://profiles.wordpress.org/angelasjin/\" rel=\"noreferrer noopener\">Angela Jin</a></li>\n\n\n\n<li>Editor:&nbsp;<a target=\"_blank\" href=\"https://profiles.wordpress.org/dustinhartzler/\" rel=\"noreferrer noopener\">Dustin Hartzler</a></li>\n\n\n\n<li>Logo:&nbsp;<a target=\"_blank\" href=\"https://profiles.wordpress.org/javiarce/\" rel=\"noreferrer noopener\">Javier Arce</a></li>\n\n\n\n<li>Production:&nbsp;<a target=\"_blank\" href=\"https://profiles.wordpress.org/bjmcsherry/\" rel=\"noreferrer noopener\">Brett McSherry</a></li>\n\n\n\n<li>Song: Fearless First by Kevin MacLeod</li>\n</ul>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/twenty-years-of-wordpress-at-wceu/\">WordCamp Europe 2023 Keynote</a></li>\n\n\n\n<li>Establishment of a formal WordPress&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project/2023/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\" target=\"_blank\">Sustainability Team</a></li>\n\n\n\n<li>WordPress 6.4&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\" target=\"_blank\">Development Cycle Announced</a></li>\n\n\n\n<li>WCUS &#8211; Still looking <a href=\"https://us.wordcamp.org/2023/call-for-volunteers/\">for volunteers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/06/discussion-next-generation-event-tooling/\">Discussion: Next Generation Event Tooling</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/twenty-years-of-wordpress-at-wceu/\">Twenty Years of WordPress at WCEU</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/handbook/\">Contributor Handbook</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15179\"></span>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>[Chloé Bringmann 00:00:10]&nbsp;</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your guest host Chloé Bringmann. And here we go.</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>[Chloé Bringmann 00:00:40]&nbsp;</p>\n\n\n\n<p>So I have the privilege of guest hosting this episode of the WordPress Briefing. And today I have with me a very special guest. The Head of Programs and Contributor Experience, Angela Jin. Welcome. Before we dive into all the questions, can you tell me and our listeners a little bit about your role in the WordPress community?</p>\n\n\n\n<p>[Angela Jin 00:01:01]&nbsp;</p>\n\n\n\n<p>Yeah, happy to, and thank you so much for having me. I&#8217;m very excited to be here. I am the Head of Programs and Contributor Experience, and I provide oversight and guidance for our WordPress programs, such as our events programs, training, and Five for the Future, with an eye toward ensuring their sustainability and growth. I&#8217;m very fortunate to work with our contributors across many teams around the world. In addition to troubleshooting and helping folks figure out how to move forward, I also spend a good amount of time exploring with others what could be in our programs.</p>\n\n\n\n<p>[Chloé Bringmann 00:01:41]&nbsp;</p>\n\n\n\n<p>We just got back from WordCamp Europe in Athens, Greece. It was such an energizing event for me, but I&#8217;m curious about what your impressions were of the past week.</p>\n\n\n\n<p>[Angela Jin 00:01:52]&nbsp;</p>\n\n\n\n<p>Yeah, it was fantastic. I&#8217;m always really inspired by what a group of like-minded people can achieve together. There&#8217;s a lot of passion for this particular WordCamp, and it made for a really wonderful WordPress experience. Full of lots of great connections and memories; I have a million follow-ups and probably even more thoughts to reflect on. So it&#8217;s great. There were a lot of new WordPressers there. So it was lovely to meet them. And I&#8217;m really excited to see how many exciting new projects and ideas that we have in the space.</p>\n\n\n\n<p>[Chloé Bringmann 00:02:27]&nbsp;</p>\n\n\n\n<p>Same, you said it perfectly. Josepha also mentioned in the flagship’s keynote, the proposal for the next generation of WordCamps. I&#8217;m curious about what the main ideas and goals, as discussed thus far, are of that proposal.</p>\n\n\n\n<p>[Angela Jin 00:02:42]&nbsp;</p>\n\n\n\n<p>For sure. So WordCamps have been fundamental for the WordPress community for a very long time. And while they have continued to grow larger and reach more places around the world, it&#8217;s also undeniable that the way that people meet has changed since 2006.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:03:01]&nbsp;</p>\n\n\n\n<p>And so, just as WordPress itself iterates we&#8217;re looking at iterating on WordCamps so that they move from fundamental to indispensable for the WordPressers of today and tomorrow. So event attendees today are looking to learn essential skills, make connections that lead to neat opportunities, and more.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:03:23]&nbsp;</p>\n\n\n\n<p>So to that end, we put forth an updated purpose for our events, which is that WordPress events spark innovation and adoption by way of accessible training and networking for users, builders, designers, and extenders. We celebrate community by accelerating 21st-century skills, professional opportunities, and partnerships for WordPressers of today and tomorrow.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:03:47]</p>\n\n\n\n<p>So the goal here is to create events that are more clearly defined &#8211; who these are for what you will gain from attending. We are looking to see events that take a deeper dive into content, or topics and provide more advanced content. And let&#8217;s try out some different formats and see how that shapes our event experience. And so it is a big shift. And change is always hard.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:04:13]</p>\n\n\n\n<p>However, the feedback that I&#8217;ve gotten so far, and certainly at WordCamp Europe, is that this is a very welcome evolution. And the Community team has already received over 60 proposals. So I&#8217;m very excited about that. In fact, a WordPress Community Day in Rome has already been announced and is focused on providing meet-up organizing and community management skills. So that&#8217;s pretty cool.</p>\n\n\n\n<p>&nbsp;[Chloé Bringmann 00:04:37]&nbsp;</p>\n\n\n\n<p>Wow, that&#8217;s incredible. I love that we&#8217;ve gotten 60 suggestions already and that we already have an event in place. That&#8217;s fantastic. In that blog post, too, it&#8217;s mentioned that WordCamps should prioritize inclusivity and diversity. How can organizers ensure these values are upheld in the next generation of WordCamps and beyond events? Into our day-to-day project involvement?</p>\n\n\n\n<p>[Angela Jin 00:05:04]</p>\n\n\n\n<p>Excellent question. So while WordCamps themselves are changing, some of our core values, like prioritizing inclusivity and diversity, are non-negotiable. For the whole project, we have a diversity, equity, and inclusion statement, and a Code of Conduct that lays out how we expect our community to engage with each other in this space.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:05:27]</p>\n\n\n\n<p>And on top of that, our programs do focus on providing resources and training like how to create a diverse speaker roster. And we have diverse speaker training workshops on how to organize a diverse and inclusive WordPress event. And we also have a great list of third-party resources as well. And so, with so many events, we create a lot of opportunities to grow as a visible contributor, whether it is a speaker, a volunteer, or an organizer.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:05:56]</p>\n\n\n\n<p>And so with the next generation of events, we could more intentionally create these spaces for groups that historically have been underrepresented. Even long before my post went live, the BlackPress meetup group, for example, wanted to create an event that connected with historically black colleges and universities. And an event like that that really invites a specific group to learn all about WordPress would be a really great experience and a wonderful way to celebrate that community and a great connection to the broader community so that we can intentionally get to the diversity that we want to see.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:06:38]</p>\n\n\n\n<p>And I also want to add that the people who are underrepresented in our community are more likely to need financial sponsorship. And so even though we do keep our ticket prices low so that our events are more easily accessible, the cost of travel continues to increase, not to mention the time and energy required to participate in these events. So an excellent way that companies can help is to sponsor somebody&#8217;s time and somebody&#8217;s contributions, which we&#8217;re always trying to encourage through the Five for the Future program.</p>\n\n\n\n<p>[Chloé Bringmann 00:07:11]&nbsp;</p>\n\n\n\n<p>Beautiful. So, with that in mind, how do you foresee the next generation of WordCamps impacting the WordPress community, that larger ecosystem? So, what changes do you hope to see regarding community engagement, learning opportunities, and best practices?</p>\n\n\n\n<p>[Angela Jin 00:07:31]</p>\n\n\n\n<p>I foresee us evolving our tried and true event format into a dynamic wealth of community-led opportunities. I know that online events were pretty exhausting during the worst of the pandemic, but there is a ton of unexplored opportunities there. And community research is also showing that online is a great way to create more inclusive and diverse events.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:07:58]</p>\n\n\n\n<p>The Training team, with their learn WordPress online workshops, have really led the way with our online events. And there are so many more people that we can reach there.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:08:08]</p>\n\n\n\n<p>And so in addition to providing more advanced content, I also hope to see content around broader tech and business trends that influence WordPress, and conversely, how WordPress can shape those trends as well. And with all of that, I really hope that we can bring in more community members that otherwise wouldn&#8217;t be interested in what we currently offer, especially a younger generation that will help us drive the next generation of WordPress, the open source project.</p>\n\n\n\n<p>[Chloé Bringmann 00:08:39]</p>\n\n\n\n<p>Very excited to hear all of this, and I bet our listeners are too. I&#8217;m curious how they and community members can provide feedback or get involved with this next generation of WordCamps.</p>\n\n\n\n<p>[Angela Jin 00:08:50]</p>\n\n\n\n<p>I&#8217;m going to encourage everyone, please come chat with the Community team and comment on the current posts. We really welcome your feedback to help us get our events to this next iteration of what they will become. There are two posts, in particular, one is to suggest ideas of event formats and topics that you would like to see. And the second is if you are an organizer, we&#8217;re inviting you to hear some recommendations for improved tooling that would be helpful for your event site. And we&#8217;ll include links to those posts in the show notes.</p>\n\n\n\n<p>[Chloé Bringmann 00:09:26]</p>\n\n\n\n<p>One final question for you, Angela. Any thoughts as we prepare for WordCamp US and the Community Summit, which will be in National Harbor, Maryland, in August?</p>\n\n\n\n<p>[Angela Jin 00:09:37]</p>\n\n\n\n<p>For the Community Summit in particular, if you want to attend and you haven&#8217;t already applied, please please do make sure to apply as soon as possible. And encourage somebody else who you think should attend to apply as well.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:09:53]</p>\n\n\n\n<p>And if financial constraints are a blocker, we are aiming to help with the cost of hotel and or flight. And so one way to help support the diversity and inclusion of this event, and really to the whole project, is to also contribute to the Community Summit travel fund. You can find information about all of that on the Community Summit site.&nbsp;</p>\n\n\n\n<p>[Angela Jin 00:10:15]</p>\n\n\n\n<p>And next, if you have a topic in mind that you think needs to be discussed at the Community Summit, please please also share that information with us as well. And last but not least, I am, I am so excited. I&#8217;m not going to spoil anything. But I have been working with the WordCamp US organizing team and looking at some of what they have planned and some of the content. It&#8217;s going to be a truly incredible event, so don&#8217;t miss out.</p>\n\n\n\n<p>[Chloé Bringmann 00:010:41]</p>\n\n\n\n<p>Oh, wonderful. Thank you so much for joining me, Angela. And I can&#8217;t wait to see you and the WordPress community in August in person.</p>\n\n\n\n<p>[Chloé Bringmann 00:010:58]</p>\n\n\n\n<p>Which brings us now to our small list of big things. First up is the proposal and establishment of a new WordPress contributor team, the Sustainability team. Coming into WordCamp Europe, a proposal was put forward to create a team that would embed sustainable practices and processes in the ecosystem to ensure the Project&#8217;s longevity, both socially, economically, and as well environmentally. At WordCamp Europe, this proposal was confirmed, and the Sustainability team is now officially the 22nd contributor team that WordPressers can support with their contributions. Head on over to their making WordPress Slack channel, #sustainability, and join the conversation.&nbsp;</p>\n\n\n\n<p>[Chloé Bringmann 00:011:39]</p>\n\n\n\n<p>Second, I would like to call your attention to the 6.4 development cycle post that was published on June 5th. 6.4 will be the third major release of 2023 and supports our diversity, equity, and inclusion efforts by being led by those contributors that identify as underrepresented gender. This release will also be the first to kick off phase three of the Gutenberg roadmap, which is collaborative editing and workflows. I&#8217;ve included a link to the post in our show notes and encourage anyone who is interested in being part of this momentous release to join us in making this both impactful and meaningful.&nbsp;</p>\n\n\n\n<p>[Chloé Bringmann 00:012:16]</p>\n\n\n\n<p>Finally, WordCamp US, as discussed, will be upon us before we know it starting on August 24th at National Harbor, Maryland. While tickets may be sold out, volunteers are still very much needed to make the flagship event run smoothly. So stop by us.wordcamp.org, raise your hand, and join us in August for engagement, inspiration, and learning. And that, my friends, is your small list of big things. I&#8217;m your guest host Chloé Bringmann and thank you for tuning in today for the WordPress Briefing.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15179\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:66:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Twenty Years of WordPress at WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/06/twenty-years-of-wordpress-at-wceu/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Jun 2023 22:21:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15167\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"Inspiring the global community The atmosphere was electric at WordCamp Europe (WCEU) 2023 in Athens, Greece, as WordPress celebrated its 20th anniversary and the opportunity to gather in person for inspiration and engagement. More than 2,500 individuals from 94 countries came together in person or through the live stream to participate in a remarkable three-day [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6426:\"\n<h2 class=\"wp-block-heading\">Inspiring the global community</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/7Nmz3IjtPh0?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>The atmosphere was electric at WordCamp Europe (WCEU) 2023 in Athens, Greece, as WordPress celebrated its <a href=\"https://wp20.wordpress.net/\">20th anniversary</a> and the opportunity to gather in person for inspiration and engagement. More than 2,500 individuals from 94 countries came together in person or through the live stream to participate in a remarkable three-day event (plus Contributor Day) filled with talks, networking, and learning opportunities. The event concluded on June 10 with a captivating keynote address by WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, and Gutenberg Product Architect <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, who highlighted the advancements and upcoming milestones of the WordPress Project.</p>\n\n\n\n<p>One significant update shared during the keynote was the successful reactivation of WordCamps. This time last year, we organized eight in-person WordCamps, and by the end of 2022, the number had risen to 23. Thanks to the enthusiasm and involvement of the WordPress community, we are already on track to organize 25 WordCamps in the first half of this year alone.&nbsp;</p>\n\n\n\n<p>Josepha also emphasized the importance of the upcoming Community Summit on August 22-23. This in-person gathering brings contributors together across the WordPress open source project, fostering cross-project discussions vital for future growth and sustainability. For more information, visit the official <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit website</a>.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Five-for-the-Future-WCEU-1.png?resize=585%2C365&#038;ssl=1\" alt=\"Total contributors: 7788 (737 new)\nContributors pledged to 5ftF: 780 (95 new)\n152 companies total with confirmed contributors (30 new)\" class=\"wp-image-15171\" width=\"585\" height=\"365\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Five-for-the-Future-WCEU-1.png?resize=1024%2C640&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/06/Five-for-the-Future-WCEU-1.png?resize=300%2C188&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/06/Five-for-the-Future-WCEU-1.png?resize=768%2C480&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/06/Five-for-the-Future-WCEU-1.png?resize=1536%2C960&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/06/Five-for-the-Future-WCEU-1.png?resize=2048%2C1280&amp;ssl=1 2048w\" sizes=\"(max-width: 585px) 100vw, 585px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Discussing the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> (5ftF) program, Josepha highlighted the impressive growth in active contributors and company pledges over the past year. She also underscored the expansion of the WordPress ecosystem, citing examples like <a href=\"https://openverse.org/\">Openverse</a>, which now provides access to nearly 800 million images and audio files, all easily accessible in the Site Editor.&nbsp;</p>\n\n\n\n<p>Another exciting addition to the WordPress repertoire is <a href=\"https://playground.wordpress.net/\">WP Playground</a>. This new feature allows users to build WordPress applications instantly in the browser without needing a PHP server. This tool provides a swift and seamless experience, reducing the installation time from five minutes to a near-instantaneous 500 milliseconds. The application of WP Playground may seem like magic, but its practical application promises tangible and revolutionary benefits for WordPress users.</p>\n\n\n\n<p>Matías Ventura then took the stage to share updates on Gutenberg. Through a visually stunning video built entirely with blocks, he showcased the six-year development journey and the transition from words to blocks to a final design. The upcoming WordPress version 6.3 will mark the completion of the first two phases of Gutenberg, consolidating all these features into a cohesive and user-friendly experience. He also highlighted the introduction of features such as the Wayfinder tool, Style Book, and the ability to save patterns, further empowering users to own their web presence and voice.</p>\n\n\n\n<p>Following the keynote presentation, the WordPress leadership engaged in a<a href=\"https://www.youtube.com/watch?v=VzKiKRodHQ0\"> lively Q&amp;A session </a>with the audience, further illustrating the continuous evolution within the WordPress Project. This session highlighted how the WordPress community innovates, iterates, and continually improves to create a better platform for today and tomorrow.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VzKiKRodHQ0?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Join the global community and be part of the WordPress journey toward a brighter future!</p>\n\n\n\n<p><em>Special thanks to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> and <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> for review and collaboration</em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"The Month in WordPress – May 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2023/06/the-month-in-wordpress-may-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Jun 2023 10:15:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15100\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"May has been a month of celebrating WordPress and the open source community that makes it possible. In honor of the project’s 20th anniversary, WordPress Executive Director Josepha Haden Chomphosy reflected on this journey and the opportunity to build a better future for those who come after: The more our community invests in itself and [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16972:\"\n<p>May has been a month of celebrating WordPress and the open source community that makes it possible. In honor of the project’s 20th anniversary, WordPress Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> reflected on <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">this journey</a> and the opportunity to build a better future for those who come after:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement become.</p>\n<cite>Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a>.</cite></blockquote>\n\n\n\n<p>Read on for highlights of this milestone and the latest updates in the WordPress space.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress at 20</h2>\n\n\n\n<p><strong>May 27, 2023, marked the 20th anniversary of WordPress’ first release</strong>. Since its inception by <a href=\"https://ma.tt/2023/05/wp20-audrey-scholars/\">Matt Mullenweg</a> and <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649\">Mike Little</a> in 2003, the project has transformed the digital publishing landscape and enabled millions of people to craft their stories.</p>\n\n\n\n<p>WordPress enthusiasts from all over the world gathered at more than <strong>130 events</strong> to celebrate this important milestone. WP20’s commemorative book, <a href=\"https://wordpress.org/book/\"><strong>Building Blocks: The Evolution of WordPress</strong></a>, was published in tandem and documents some of the most significant moments and changes of the last decade of the project.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1024%2C576&#038;ssl=1\" alt=\"3D wallpaper of a number 20 formed by words in commemoration of the 20th anniversary of WordPress.\" class=\"wp-image-15106\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=2048%2C1152&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><a href=\"https://wp20.wordpress.net/download-3d-wp20-themed-media/\">Download the new WP20 wallpapers made in 3D</a>.<br></figcaption></figure>\n\n\n\n<p>The anniversary date may have passed, but the <a href=\"https://wp20.wordpress.net/news/\">festivities and fun aren&#8217;t over</a>. You can still <a href=\"https://wp20.wordpress.net/\">join a meetup</a>, sign the #WP20 From Blogs to Blocks campaign <a href=\"https://make.wordpress.org/marketing/2023/05/27/day-20-wp20-from-blogs-to-blocks/\">birthday card</a>, or participate in #WP20 social celebrations.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/05/episode-55-happy-anniversary-wordpress/\">Episode 55 of WP Briefing</a> as she looks back at the 20 years of WordPress and how the community made WordPress what it is today.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.3 is expected on August 8</h2>\n\n\n\n<p>Work on WordPress 6.3 officially kicked off with the <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">announcement of its development cycle and release squad</a>. <strong>Set for release on August 8, 2023</strong>, this version will be the second major update of WordPress in 2023 and will mark the end of Phase 2 of the project’s <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>.</p>\n\n\n\n<p>WordPress 6.3 aims to bring a cohesive site editing experience by introducing expanded functionality, richer interfaces, and a dedicated focus on refinement.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Check out the 6.3 roadmap post</a> for a tentative preview of anticipated features.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2.2 security release</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2</a> became available for download on May 20, 2023</strong>. This release was a quick response to resolve a regression introduced in <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">6.2.1</a>, specifically with shortcode support in block templates, and to further patch a vulnerability already addressed in the previous version.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\"></a><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">Update your site if you haven’t yet</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Three new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\"><strong>Gutenberg 15.7</strong></a>, released on May 3, 2023, brings a new direct option to upload and replace a site&#8217;s logo from the block settings sidebar. Other enhancements include easier access to duotone filter controls via the style settings sidebar and an update to fluid typography to refine responsiveness.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\"><strong>Gutenberg 15.8</strong></a> shipped on May 17, 2023, and includes a new &#8220;Pages&#8221; item in the Site Editor sidebar to edit pages without leaving the interface. Moreover, this version brings the ability to navigate through revisions in the global styles interface and to preview block themes inside the Site Editor.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\"><strong>Gutenberg 15.9</strong></a> is ready for download as of May 31, 2023. The latest Gutenberg release comes with a new command tool and several enhancements to the Site Editor experience, including a more intuitive drag-and-drop function for moving blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>The latest <a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement post</a> highlights features such as revisions and the ability to preview block themes, and how they enable a smoother site editing experience.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next-generation WordCamps, proposal for a Sustainability Team, and more</h2>\n\n\n\n<ul>\n<li>The Community Team proposed <a href=\"https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">broadening the purpose of WordPress events</a> to &#8220;spark innovation and adoption by way of accessible training and networking.&#8221; This opens the door to organizing a more diverse range of formats focused on specific topics and audiences.</li>\n\n\n\n<li>WordPress contributors suggested <a href=\"https://make.wordpress.org/project/2023/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\">creating an official Sustainability Team</a>.</li>\n\n\n\n<li>The Polyglots Team rebranded the WP Translation Playground tool as Translate Live and <a href=\"https://make.wordpress.org/polyglots/2023/05/08/translate-live-updates-to-the-translation-playground/\">announced improvements</a> that make translating plugins and themes easier.</li>\n\n\n\n<li>The new<strong> </strong><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program pilot</a> aims to provide cohort-based and 1:1 mentorship to prepare new and aspiring contributors for success.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\">Results of the 2022 WordPress Annual Survey</a> were announced last month.</li>\n\n\n\n<li>The Training Team published a new course on <a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a>. See <a href=\"https://make.wordpress.org/updates/2023/06/02/whats-new-on-learn-wordpress-in-may-2023/\">What’s new on Learn WordPress in May 2023</a> for the latest learning resources.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/04/stacks-the-first-community-theme/\">Meet Stacks</a>—the first community theme born from the <a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Community Themes initiative</a>. This theme is designed for creating slide decks that can be used for a presentation.</li>\n\n\n\n<li>This Core proposal explores ways to <a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">reduce the maintenance of older default WordPress themes</a> and retire them.</li>\n\n\n\n<li>The May 2023 issues of <a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\">What’s New for Developers?</a>, the <a href=\"https://make.wordpress.org/polyglots/2023/05/10/polyglots-monthly-newsletter-may-2023/\">Polyglots monthly newsletter</a>, and the&nbsp;<a href=\"https://make.wordpress.org/community/2023/05/18/meetup-organizer-newsletter-may-2023/\">Meetup Organizer newsletter</a>&nbsp;are available for reading.</li>\n\n\n\n<li>Find out how WordPress and its global community of contributors made a difference in Stefano Cassone&#8217;s life in the <a href=\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\">latest edition of People of WordPress</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>What is WordPress Playground, and why it matters? <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing Episode 56</a> discusses the benefits and potential of this tool with special guests Rich Tabor and Adam Zielinski.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core Team members seek <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">feedback on the new command tool</a> introduced in the Gutenberg plugin and its API.</li>\n\n\n\n<li>The latest <a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">call of the Full Site Editing (FSE) Outreach Program</a> invites you to test some features being worked on to upgrade and polish the experience of using the Site Editor. Share your thoughts by June 8, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/31/mobile-team-update-may-31st-2/\">Version 22.5</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Which next generation of WordPress events would you like to see? <a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Share your ideas</a> and <a href=\"https://make.wordpress.org/community/2023/06/01/next-gen-wordcamp-talking-points-share-your-ideas-for-a-new-event-format-and-make-it-happen/\">start exploring</a> new event formats this year.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/\">Get ready for WordCamp Europe 2023</a> from June 8-10 in Athens, Greece! The event will start with <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day</a> on June 8, followed by two days of presentations and workshops. Attendees can join a <a href=\"https://europe.wordcamp.org/2023/welness-track-activities/\">wellness track</a> and a <a href=\"https://europe.wordcamp.org/2023/wp-connect/\">dedicated space</a> to connect, among many other initiatives.</li>\n\n\n\n<li>The WordCamp US organizing team is <a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-call-for-volunteers-open/\">calling for volunteers</a>.</li>\n\n\n\n<li>For another year, the <a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">WordPress Foundation&#8217;s Kim Parsell Memorial Scholarship</a> will award funding for a woman-identifying contributor to attend WordCamp US 2023. Applications are open through June 12, 2023.</li>\n\n\n\n<li><a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet 2023</a>, the second ever WordCamp in Bangladesh, was successfully held on May 19-20 with its first <a href=\"https://make.wordpress.org/design/2023/05/23/wordcamp-sylhet-2023-contributor-day-recap/\">Contributor Day</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-apac-tickets-648295107117\">How to Own Your Expertise &amp; Start Speaking at WordPress Events APAC</a>. The event will take place on July 2, 2023.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cartagena.wordcamp.org/2023/\">WordCamp Cartagena</a>, Spain on June 10-11, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://montclair.wordcamp.org/2023/\">WordCamp Montclair</a>, NJ, USA on June 24, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join WordPress project leadership on June 10 at WordCamp Europe 2023 to hear about the latest developments and what’s next for WordPress. <a href=\"https://europe.wordcamp.org/2023/schedule/\">Check out the schedule for details</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/nahidsharifkomol/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nahidsharifkomol</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/devinmaeztri/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>devinmaeztri</a>, <a href=\'https://profiles.wordpress.org/bsanevans/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bsanevans</a></em></em>, <em><em><a href=\'https://profiles.wordpress.org/ninianepress/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ninianepress</a>.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WP Briefing: Episode 57: The Power of WordPress Mentorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Jun 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15089\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"Join WordPress Executive Director Josepha Haden Chomphosy in the 57th episode of the WordPress Briefing as she discusses the Contributor Mentorship Program to help increase the success of new contributors over time.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/06/WP-Briefing-057.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7743:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 57th episode of the WordPress Briefing as she discusses the Contributor Mentorship Program to help increase the success of new contributors over time.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, Athens, Greece. This event includes a <a href=\"https://europe.wordcamp.org/2023/session/matt-mullenweg/\">special Keynote from Matt Mullenweg, Josepha Haden Chomposy, and Matías Ventura</a>. </li>\n\n\n\n<li>&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\" target=\"_blank\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a>&nbsp;</li>\n\n\n\n<li>Make WordPress Community: <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\" target=\"_blank\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li>WordPress &#8216;Milestones&#8217; volume two book <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/book/\" target=\"_blank\">Building Blocks: The Evolution of WordPress</a> is available in <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/wp20-book/tree/trunk/Formats\" target=\"_blank\">several formats for download on GitHub</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n<a class=\"wp-block-read-more\" href=\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\" target=\"_self\">Read more<span class=\"screen-reader-text\">: Episode 57: The Power of WordPress Mentorship</span></a>\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Joseph Hayden Chomphosy. Here we go!</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]&nbsp;</p>\n\n\n\n<p>Over the course of this year, there has been a lot of research and examination of the contributor funnel in the WordPress community. That research confirms some assumptions about what most contributor stories have in common: the hurdles, the general paths taken, and the way that problem-solving was done. Then in February of this year, Hari Shanker published a proposal for a mentorship program for WordPress.&nbsp;</p>\n\n\n\n<p>And now we&#8217;ve got a pilot program that&#8217;s been defined and is waiting for your feedback. If you&#8217;ve not read the post about the contributor mentorship program, for one do it. But if you would rather hear a synopsis from me, don&#8217;t worry, I&#8217;m about to give you a 10-cent tour.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:22]&nbsp;</p>\n\n\n\n<p>First up, who is doing this? This pilot program has been outlined by a community working group. We often have working groups in WordPress, and they almost always have specific projects around events or programs, or code updates. Since this working group is focused on a project-wide program, there is project-wide representation in it. All the names are at the bottom of the post, which you can find in our show notes. But it&#8217;s got folks who contribute with code or contribute with time or contribute with design folks who are self-sponsored or corporately sponsored, just a nice mix of people. The program as a whole, though, is being stewarded by Hari Shankar, a longtime supporter of and contributor to WordPress. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:06]&nbsp;</p>\n\n\n\n<p>So next, what is this for? There are a few goals for the program. But the overarching goal is to increase the success of new contributors over time. We can all agree that if we were to have 1000s of new contributors every day, but they couldn&#8217;t find their way to impactful contributions or meaningful connections quickly, then we would have done them a disservice. And they probably won&#8217;t continue to be part of the community without a bit more effort.&nbsp;</p>\n\n\n\n<p>The when and the where are essentially “right now and right here,” so that brings us finally to Why. Why are we doing this mentorship program? Apart from to help people who want to contribute have an easier path to success – which frankly is enough of a reason anyway – the why is wrapped up in our overall philosophies in the project. If we believe that good ideas can come from anywhere and that contributions of any size matter. And that open source is an idea that can change our generation and that we are democratizing publishing, then bringing new people brings new ideas, and beginner contributions can grow over time. We can maintain this idea, this concept of open source, into the next generation and to future generations. And always keep our sights on the open web. To learn more about this and other project-wide initiatives, swing by make.wordpress.org/project or check the links in today&#8217;s show notes on wordpress.org/news/podcast.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]&nbsp;</p>\n\n\n\n<p>Which brings us now to our small list of big things.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:56]&nbsp;</p>\n\n\n\n<p>First on the list is WordCamp Europe. That&#8217;s coming up at the end of the week on June 8 through 10th in Athens, Greece. There will be a major update from Matt and friends, so even if you aren&#8217;t there in person, keep an eye out for those recordings. But for those who are there and you&#8217;re curious about the mentorship program or anything else to do with WordPress and contributing to the project, you can come find me or Angela Jin, Hari will also be there, Chloé will be there, Héctor will be there, lots of people, and we want to hear your thoughts and answer your questions.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:27]&nbsp;</p>\n\n\n\n<p>Second is a call for brainpower! A call for your brainstorms! On the subject of the next generation, we&#8217;ve got a discussion going on about the next generation of WordCamps. We&#8217;ve been discussing what new types and varieties might be available, and that might make sense for people as we get back to in-person events. So if you&#8217;ve got a kind of WordCamp that you&#8217;ve been desperately wanting to try, now&#8217;s the time to let folks know about it. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:54]</p>\n\n\n\n<p>And the final thing is the second volume of The WordPress history book called Building Blocks: The Evolution of WordPress is now available for download in several formats as well as on GitHub. Stop buy, give it a read, and relive some of the highlights of the past ten years of the WordPress project.&nbsp;</p>\n\n\n\n<p>&nbsp;[Josepha Haden Chomphosy 00:05:12]</p>\n\n\n\n<p>And that, my friends, is your smallest of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomposy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Stefano Cassone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 May 2023 20:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15030\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"The People of WordPress feature series goes to Italy to interview web designer, photographer and translator Stefano Cassone. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15999:\"\n<p><strong>With <a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a> in June, we feature Stefano Cassone, a web designer, photographer and volunteer translator, who believes his life has been transformed through WordPress and its community.</strong></p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&#038;ssl=1\" alt=\"Stefano with a laptop covered in WordPress event stickers\" class=\"wp-image-15027\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano with a laptop covered in WordPress event stickers</figcaption></figure>\n\n\n\n<p>Stefano has always been fascinated by the internet. His initial learning in the 1990s was through joining friends at a local pub where they could explore how websites were structured and learn to use chat software.</p>\n\n\n\n<p>This led to Stefano creating websites for fun in 1998, and his first paid job was for the shop where he bought comics. He turned to content management systems (CMS) to speed up the creation process for sites, but found he needed more documentation to really understand their capabilities. Then he read a magazine article about WordPress, a CMS which was being used to make incredible blog sites, and was supported by an international community and documentation. Over time, Stefano started using that documentation to work on websites in Italian.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress provides a life-changing turning point&nbsp;</h2>\n\n\n\n<p>Stefano describes himself as an introvert. He found that WordPress helped him to work from home, to develop his skills and the quality of what he could produce, as well as build his self-confidence.&nbsp;</p>\n\n\n\n<p>A catalyst for the turning point in his life and career was the discovery of an area for events on the WordPress dashboard. On this page, he found a forthcoming local meetup in Rome.&nbsp;</p>\n\n\n\n<p>In November 2017, Stefano took the step to go along to this event, led by a curiosity of what he might discover and intrigued by how a software could be supported by a vast community. The topic at the event was on <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>, a command line interface for WordPress. He recalled that he felt outside his comfort zone as he did not regard himself as a developer and at that point, had only used the software for simple jobs. He wondered whether using the software as his only CMS was going to be a long term option and if these meetups were suitable for him.</p>\n\n\n\n<p>At the meetup, people were talking about a forthcoming event, called WordCamp Rome. Through his research, he saw that there was a lot of enthusiasm for this event. This intrigued him and he wondered if it would show him that he could have a career using the software after all.</p>\n\n\n\n<p>Unfamiliar with WordCamps, Stefano found it difficult at first to know what he could go to and how to get involved, but he persevered and attended the event.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;The WordCamp was a great discovery: talks at all levels from basic to those for developers, advanced and very advanced. I was immediately struck by the enthusiasm of the volunteers. It was an environment where I felt very comfortable, so much so, that I asked myself how I could participate in some WordCamps.&#8221;</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<p>From this event, Stefano was encouraged by those he met to consider applying as a volunteer for a future WordCamp.</p>\n\n\n\n<p>There was also much talk at the event about ‘Slack’. It was new to Stefano, but with help from those attending, he signed up for the messaging tool Slack, used by the WordPress community. He was still unsure how he could contribute, and if he would be welcome.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Joining thousands of volunteer translators of WordPress</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=800%2C600&#038;ssl=1\" alt=\"Italian General Translation Editors at WordPress Italia 2022\" class=\"wp-image-15028\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Italian General Translation Editors at WordPress Italia 2022</figcaption></figure>\n\n\n\n<p>Stefano took the plunge and was excited to find there was a team called Polyglots. In this team, people from across the world<a href=\"https://make.wordpress.org/polyglots/\"> translate the WordPress software into many different languages</a>. He started with translating a theme he was using in his work. Little by little he became more interested in plugins and attended meetings with other translators. He offered his skills to translate into Italian themes and plugins in general and as his experience grew, he took on the volunteer role of a General Translation Editor. He also took care of the translation into Italian of the WordPress Core. More recently he has joined the group of translators for the <a href=\"https://make.wordpress.org/docs/handbook/helphub/\">HelpHub</a>, which is part of the <a href=\"https://make.wordpress.org/docs/\">WordPress documentation</a> system.</p>\n\n\n\n<p>He said: “Participating in the WordPress Slack has helped me enormously: I’ve met a lot of people who I now call friends. Moreover, by translating, I learned a lot about how themes and plugins work.</p>\n\n\n\n<p>“It&#8217;s a great way to contribute to WordPress, especially for someone like me who is not a developer. Translating also allows me to fully understand how WordPress works.&#8221; </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I always say that translating themes, plugins, and the Core software is the best way to learn WordPress, better than any course or book.”</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">Sharing skills to support Open Source WordPress</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"667\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=667%2C500&#038;ssl=1\" alt=\"Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\" class=\"wp-image-15026\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?w=667&amp;ssl=1 667w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=300%2C225&amp;ssl=1 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.</figcaption></figure>\n\n\n\n<p>Stefano’s growing commitment to the open source WordPress project was further boosted through his volunteering. He was a volunteer at WordCamp Rome 2018 and participated there in his first Contributor Day where he had the opportunity to translate the software with others.&nbsp;</p>\n\n\n\n<p>He was also able to bring his own hobbies and skills to help the project grow and reach others. One example was his passion for photography, and he volunteered as a photographer for many other events in Italy organized by the WordPress community. He said: “This commitment to the community also allows me to have fun: being a photographer means having the opportunity to walk around the halls and capture moments of the life of a WordCamp.” The more WordCamps he attended, the more he wanted to be part of and keep contributing to the wider WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contribution to WordPress is inspiring</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Stefano at the Support Table at a WordPress Contributor Day\" class=\"wp-image-15025\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano at the Support Table at a WordPress Contributor Day</figcaption></figure>\n\n\n\n<p>When Stefano was asked to become an organizer for the WordPress meetup in Rome in October 2019, he knew he wanted to be part of reaching and supporting more people in his area. He faced challenges with finding venues, but a greater issue was to come: the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>Spurred on by the <a href=\"https://it.wordpress.org/\">Italian WordPress community</a> as a whole, he was determined that the meetup was still needed. The regular event was transformed into an online meeting. He was able to gain help from people he had met as a volunteer to share their expertise with meetup attendees.&nbsp;</p>\n\n\n\n<p>The community in Italy also worked together to put on WordCamp Italia online. It brought together the organizers of previous meetups and WordCamps, and new contributors too. Stefano volunteered in both online editions of this camp, including being part of the social and communication team. He found it to not only be a fun experience but also one that helped him grow professionally and learn from so many others.</p>\n\n\n\n<p>He went onto help restart the <a href=\"https://www.meetup.com/romawordpress/\">Rome WordPress meetup</a> in-person meetings in May 2022, was an organizer for the third WordCamp Italy, and has been volunteering for camps in 2023.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What will WordPress bring you?</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"533\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=533%2C800&#038;ssl=1\" alt=\"Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\" class=\"wp-image-15024\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?w=533&amp;ssl=1 533w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=200%2C300&amp;ssl=1 200w\" sizes=\"(max-width: 533px) 100vw, 533px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano inspired by his journey at WordCamps asks what will WordPress bring you?</figcaption></figure>\n\n\n\n<p>“Persona and professional growth and friendship” are some of the things they have brought Stefano. Contributing boosted his confidence and willingness to try new opportunities in his work.&nbsp;</p>\n\n\n\n<p>He said: “The best thing I got out of joining the WordPress community was the chance to collaborate with some people on a working basis and, I have to say, that was incredible. Being with many of them you have an incredible opportunity to grow in knowledge, you just have to be ready to learn. With WordPress you never stop learning.”</p>\n\n\n\n<p>His top recommendation is: “Join your local meetup or think about organizing one, it will introduce you to an amazing world. Don’t be afraid to meet people at WordCamps and Contributor Days, because you will learn more there than in dozens of courses. Talk to people at those events and don’t worry. The WordPress community is inclusive so you’ll always feel welcome, and you will see enthusiasm like you’ve never seen at other IT events. Sign-up and get involved.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Stefano Cassone (<a href=\'https://profiles.wordpress.org/deadpool76/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>deadpool76</a>)&nbsp;for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), the late Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>) and Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for interviews, writing the feature and collaborating on images, to Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Mark Smallman (<a href=\'https://profiles.wordpress.org/marks99/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marks99</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), and Maja Loncar (<a href=\'https://profiles.wordpress.org/majaloncar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>majaloncar</a>) for help with reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15030\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 11 Jul 2023 12:05:57 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 07 Jul 2023 13:27:51 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20230707232333\";}','no'),
  331. (309,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1689120357','no'),
  332. (310,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1689077157','no'),
  333. (311,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1689120358','no'),
  334. (312,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"Do The Woo Community: Pulling the Curtain Back on WordPress, Woo and AI with Dave Lockie and Dan Walmsley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://dothewoo.io/wordpress-woocommerce-ai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:409:\"<p>Dave and Dan takes you inside of Automattic and their own thoughts around WordPress, WooCommerce and AI.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordpress-woocommerce-ai/\">Pulling the Curtain Back on WordPress, Woo and AI with Dave Lockie and Dan Walmsley</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jul 2023 07:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"WPTavern: MalCare, Blogvault, and WPRemote Plugins Patch Vulnerabilities Allowing Site Takeover Through Stolen API Credentials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146708\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://wptavern.com/malcare-blogvault-and-wpremote-plugins-patch-vulnerabilities-allowing-site-takeover-through-stolen-api-credentials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3105:\"<p> Snicco, a WordPress security services provider, has <a href=\"https://snicco.io/vulnerability-disclosure/malcare/site-takeover-through-stolen-api-credentials-in-combination-with-sqli-malcare-5-09\">published an advisory</a> on a vulnerability in the MalCare plugin, which is active on more than 300,000 sites. </p>\n\n\n\n<p>&#8220;MalCare uses broken cryptography to authenticate API requests from its remote servers to connected WordPress sites,&#8221; WordPress security researcher Calvin Alkan said.</p>\n\n\n\n<p>&#8220;Requests are authentication by comparing a shared secret stored as plaintext in the WordPress database to the one provided by MalCare’s remote application.</p>\n\n\n\n<p>&#8220;This can allow attackers to completely take over the site because they can impersonate MalCare’s remote application and perform any implemented action.&#8221; </p>\n\n\n\n<p>These potential malicious actions include creating rogue admin users, uploading random files to the site, and installing and removing plugins. </p>\n\n\n\n<p>Exploitation requires a pre-condition to be met, such as a site with a SQL injection vulnerability in a plugin, theme, or WordPress core, or a database compromised at the hosting level, or subject to another vulnerability that allows the attacker to read or update WordPress options.</p>\n\n\n\n<p>&#8220;MalCare has received the full details of this vulnerability three months before this public release, and despite us offering (free) help, they subtly dismissed it because &#8216;supposedly&#8217; this is the industry standard for API authentication,&#8221; Alkan said.<br /><br />&#8220;Furthermore, concerns were raised, because the vulnerability requires a pre-condition that on its own, would be a vulnerability.&#8221;</p>\n\n\n\n<p>Two days after Snicco published the security advisory with the proof of concept, <a href=\"https://www.malcare.com/blog/malcare-update-improved-authentication/\">MalCare pushed a patch</a> in version 5.16 on July 8, 2023, along with a notice on the plugin&#8217;s blog:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>In the rare situation, where a site has a pre-existing, high severity SQL injection vulnerability, an attacker might be able to read the MalCare key. To address such issues, we are further strengthening our authentication systems.</p>\n\n\n\n<p>Authentication is a critical system and any improvements must be done in a careful manner. We have reviewed various plugins and best practices in our ecosystem to come up with our solution.</p>\n\n\n\n<p>In light of the current public discourse, we are expediting the update of our plugin. We will initiate a rollout by EOD.</p>\n</blockquote>\n\n\n\n<p>MalCare reports that its users have seen no evidence of the vulnerability being exploited.</p>\n\n\n\n<p>Snicco noted that the same vulnerability also exists in WPRemote (20k installs) and Blogvault (100k installs) plugins, as they share the same code. Users of either of these plugins or the MalCare plugin should update to the latest versions as soon as possible now that the vulnerability advisory and proof of concept have been published.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jul 2023 03:28:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Do The Woo Community: Bring Your Podcast to Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/bring-your-podcast-to-do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"<p>If you have an existing WordPress focused podcast, consider introducing it to our audience at Do the Woo.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/bring-your-podcast-to-do-the-woo/\">Bring Your Podcast to Do the Woo</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jul 2023 08:13:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordCamp Central: WordCamp Dhaka 2023 Has Been Cancelled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166653\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://central.wordcamp.org/news/2023/07/wordcamp-dhaka-2023-has-been-cancelled/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1270:\"<p>WordCamp Dhaka 2023 has been cancelled and the official announcement has been published on <a href=\"https://dhaka.wordcamp.org/2023/\">the event website</a>. There were no tickets or sponsorship packages sold, therefore there are no tickets or sponsorships to be refunded.&nbsp;</p>\n\n\n\n<p>To ensure the success of future WordCamps, we encourage the Dhaka community to participate in collaboration and contribute to creating a more diverse, inclusive and open community. Any members of the community, regardless their gender, company affiliations, and background, can apply and collaborate as co-organizers.<br /></p>\n\n\n\n<p>Here are the basics of our <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/meetup-program-basics/\">Meetup Program </a>and the <a href=\"https://central.wordcamp.org/meetup-organizer-application/\">application</a> to become a Meetup organizer.<br /></p>\n\n\n\n<p>The Community Team believes that the Dhaka WordPress Community can build a stronger community with opportunities for everyone interested in WordPress.&nbsp;</p>\n\n\n\n<p>If you have any questions, you can reach out to us by sending an email to <a href=\"mailto:support@wordcamp.org\">support@wordcamp.org</a>.</p>\n\n\n\n<p>Thank you,</p>\n\n\n\n<p>WordPress Community Team</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jul 2023 07:36:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Devin Maeztri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WordPress to Host 6.3 Live Product Demo on Thursday, July 20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/wordpress-to-host-6-3-live-product-demo-on-thursday-july-20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1639:\"<p>WordPress 6.3 is scheduled to be released one month from today on August 8, 2023. The <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">live product demo</a> date and time has now been set for Thursday, July 20, at at <a href=\"http://time.unitarium.com/utc/1600\">16:00 UTC</a>. Participants can join live via this <a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom</a> link. </p>\n\n\n\n<p>Automattic-sponsored Gutenberg contributors <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/annezazu/\" target=\"_blank\">Anne McCarthy</a> and <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/richtabor/\" target=\"_blank\">Rich Tabor</a> will be hosting the event, moderated by <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/njwrigley/\" target=\"_blank\">Nathan Wrigley</a>. They will highlight upcoming changes and take questions from participants during a Q&amp;A session at the end.</p>\n\n\n\n<p>WordPress 6.3 is set to introduce an exciting array of new features &#8211; the Command Palette, content editing and distraction-free mode in the Site Editor, pattern creation, and much more. There have also been significant <a href=\"https://wptavern.com/wordpress-6-3-beta-3-released-introduces-ui-changes-to-pattern-management\">changes to pattern management UI</a> as late as Beta 3. The live product demo is a good opportunity to get up to speed with a guided tour of everything new that will be landing in 6.3.</p>\n\n\n\n<p>The event will be recorded and those who cannot attend live can catch it later when it is published on WordPress.tv. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Jul 2023 17:41:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"Gutenberg Times: Phase 3: Collaboration – Kick-off, add commands to the palette, server-side filter for theme.json –Weekend Edition #260\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://gutenbergtimes.com/phase-3-collaboration-kick-off-add-commands-to-the-palette-server-side-filter-for-theme-json-weekend-edition-260/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20047:\"<p>Howdy, </p>\n\n\n\n<p>Wow. This weekend edition holds a lot of date/times of upcoming online events for all WordPress users, developers, designers, site builders, and content creators. </p>\n\n\n\n<p>The most important might be the the <strong><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">WordPress 6.3 Product Demo</a> </strong>on July 20th, (16:00 UTC) roughly 14 days before the final release, filled to the brink with new and enhanced features. Watching the Product Demo gets you up to speed quickly. Yes, there will be a recording, too. </p>\n\n\n\n<p>Don&#8217;t forget to consult the <a href=\"https://learn.wordpress.org/online-workshops/\"><strong>workshop schedule of the training team</strong></a> on the Learn WordPress site.</p>\n\n\n\n<p>Have a wonderful weekend! Mine will be dominated by unpacking boxes and eating delicious food and chatting with long-distance friends. </p>\n\n\n\n<p>Be well. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">WordPress 6.3 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-g\">Gutenberg Phase 3: Collaboration starts</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><a href=\"https://us02web.zoom.us/webinar/register/7516879458017/WN_lqwBBSkSR1Wcdf8BUr5udQ\"><strong>Next Live Q &amp; A: Design Systems and Theme.json on July 21, 2023</strong></a></p>\n\n\n\n<p>David Bowman and and Alec Geatches from WordPress VIP will show off how they keep design systems developed in Figma and themes in WordPress in synch and their workflows streamlined. Joni Halabi, senior developer from Georgetown University will join me as co-host. </p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7516879458017/WN_lqwBBSkSR1Wcdf8BUr5udQ\"><img /></a>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Joen Asmussen </strong>published for the WordPress design team the <a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\"><strong>Design Share: Jun 19–Jun&nbsp;30</strong></a>, recounting all the great UI and UX work the design team contributed during the past two weeks. </p>\n\n\n\n<ul>\n<li>Legend Style pictograms for the Site Editor.</li>\n\n\n\n<li>Navigation Focus Mode</li>\n\n\n\n<li>Reusable Blocks, Library, “Patterns”, and </li>\n\n\n\n<li>a small fix to the layout shift when editing </li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\"><img /></a>\n\n\n\n<p>Reminder: <strong>Anne McCarthy</strong> and <strong>Emily Clark</strong> will co-host a <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\"><strong>Hallway Hangout to discussion WordPress 6.3 performance improvements</strong></a> on July 27, 2023, at 15:00 UTC to discuss WordPress 6.3 performance improvements led by performance reps Emily Clark and Felix Arntz and also look ahead to WordPress 6.4.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">WordPress 6.3 </h3>\n\n\n\n<p><strong>Anne McCarthy</strong> and <strong>Rich Tabor</strong> will present at the <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\"><strong>WordPress 6.3 Live Product Demo </strong></a>on July 20th, 2023 at 16:00 UTC (12 pm EDT / 18:00 CEST). &#8220;Join the WordPress community for a first look at 6.3 in action during a live product demonstration.&#8221; Attendees will learn about recent improvements to the Site Editor, Patterns, Command Palette, and Navigation. There will be a Q&amp;A session, and you may submit questions in advance via the #walkthrough channel on WordPress Make <a href=\"https://wordpress.slack.com/archives/C039R2P1ZC1\">Slack</a>.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reports on <a href=\"https://wptavern.com/wordpress-6-3-beta-3-released-introduces-ui-changes-to-pattern-management\"><strong>WordPress 6.3 Beta 3 Released, Introduces UI Changes to Pattern Management</strong>. </a>&#8220;A last-minute PR has&nbsp;renamed Library to Patterns&nbsp;in the Site Editor and was cherry-picked to get it included in Beta 3.&#8221; she wrote, and then continues with the reasons. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Only tangentially related to the Block editor, I still want you to have this overall change on your radar: In his post on the Make Blog, <strong>John Blackburn</strong> informed the WordPress community that the project is <strong><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a> </strong>. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“The minimum supported version was last adjusted in WordPress 5.2 in 2019, and since then, usage of PHP 5.6 has dropped to 3.9% of monitored WordPress installations as of July 2023,” </p>\n<cite>John Blackbourn, WordPress core developer</cite></blockquote>\n\n\n\n<p>Sarah Gooding also has the skinny for you in <a href=\"https://wptavern.com/wordpress-6-3-to-drop-support-for-php-5\"><strong>WordPress 6.3 to Drop Support for PHP 5</strong></a></p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/\">Gutenberg Changelog #85 – Gutenberg 16.1, WordPress 6.3</a> with special guest, Tammie Lister and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-g\">Gutenberg Phase 3: Collaboration starts</h3>\n\n\n\n<p>Following his March 2023 <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Gutenberg Phase 3</a> post, Matias Ventura, architect on the Gutenberg project, published a series of posts to go deeper on all the aspects of the next phase and outline the requirements. </p>\n\n\n\n<ul>\n<li>In <a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\"><strong>Real-time Collaboration</strong></a>, he outlines plans for concurrent collaboration and shared edits. </li>\n\n\n\n<li>In <a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\"><strong>Workflows</strong></a>, Ventura discusses the requirements for the full publishing workflow and the async collaboration needs for a content team. </li>\n\n\n\n<li>In <a href=\"https://make.wordpress.org/core/2023/07/05/revisions/\"><strong>Revisions</strong>, </a>Ventura covers the full overhaul of the current system, by making it aware of Blocks and edits on all data layers at the same time. </li>\n\n\n\n<li>In <a href=\"https://make.wordpress.org/core/2023/07/07/media-library/\"><strong>Media Library</strong></a>, he aims at expanding media management capabilities, unifying the interface with the block editor and improving overall media workflows. </li>\n</ul>\n\n\n\n<p>There might be more posts coming and, of course, I&#8217;ll keep you in the loop. </p>\n\n\n\n<a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\"><img /></a>Screenshot shared on the post about <a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\">Workflows</a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> summarized it all in <a href=\"https://wptavern.com/wordpress-unveils-plans-for-real-time-collaboration-with-major-improvements-to-revisions-and-the-media-library\"><strong>WordPress Unveils Plans for Real-Time Collaboration with Major Improvements to Revisions and the Media Library</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post, <a href=\"https://speckyboy.com/what-collaborative-features-will-bring-to-wordpress/\"><strong>What Collaborative Features Will Bring to WordPress</strong></a>, <strong>Eric Karkovack </strong>explored a few scenarios that demonstrate how new collaborative features can streamline working together in a team responsible for publishing content on a larger site. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Nick Diego</strong> announced a new season of his &#8220;Builder Basics&#8221; series. The next event is scheduled for <strong>July 17th 7pm UTC</strong> ( 3 pm EDT) <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/294550599/\"><strong>Goodbye Reusable Blocks—Hello Synced Patterns (and more)</strong></a>. He&#8217;ll review the updates coming in WordPress 6.3 for reusable blocks and explore the improved editing flows for patterns and template parts. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In another event, <strong>Bud Kraus</strong> will<strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/294340444/\"> demystify the Navigation Block</a></strong> for you on July 11 at 19:00 UTC / 3 pm EDT. You will learn how to set your site&#8217;s navigation using only blocks and not the classic menu system. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter https://twitter.com/Bijayyadavnp\"><strong>Bijay Yadav</strong></a>, long-time contributor to the open-source WordPress project, published his first theme in the Theme directory. <a href=\"https://wordpress.org/themes/geum/\"><strong>Geum</strong></a> is block themes allowing the user to take full advantage of the new site editor to customize their site.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong> posted a tutorial on <strong><a href=\"https://www.pootlepress.com/2023/07/the-best-wordpress-block-themes/\">How to Choose the perfect WordPress Block Theme</a>.</strong> He started out summarizing the advantages of a block theme over a classic theme, and listed all the considerations to take into account when comparing block themes from the repository or other theme directories. He also mentioned his favorites: <a href=\"https://woocommerce.com/products/basti/\">Basti by Ana Segota</a>, Ollie<a href=\"https://olliewp.com/\"> WP by Mike McAlister</a> and <a href=\"https://wpspectra.com/\">Spectra One by the Astra team.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> published the Summary of feedback from the latest <a href=\"https://make.wordpress.org/test/2023/07/04/fse-program-momery-makeover-summary/\"><strong>FSE Program Momery Makeover Summary</strong></a>. &#8220;Since this call for testing took place during the early stages of an iterative process, several aspects of the feedback provided have already been swiftly addressed, thanks to ongoing development for WordPress 6.3. The relatively limited amount of bugs received and feedback aligning with feature development reflects a level of solidness in the direction of recent improvements.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On WPTavern, <strong>Sarah Gooding</strong> reviewed the latest block theme for blogging &#8211; <strong><a href=\"https://wordpress.org/themes/hey/\">Hey</a></strong>, built by Automattic in here article <a href=\"https://wptavern.com/hey-an-elegantly-simple-wordpress-block-theme-for-blogging\"><strong>Hey: An Elegantly Simple WordPress Block Theme for Blogging</strong></a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>In his article for the Torque Magazine, <strong><a href=\"https://torquemag.io/2023/06/modify-wordpress-block-themes/\">How to Modify WordPress Block Themes (JSON Beginner’s Guide)</a></strong>, <strong>Nick Schäferhoff</strong> explored ways on how you can customize a block theme&#8217;s theme.json file for those of us, who are used to tinker around via functions.php and style.css. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> published his series for live streams on <a href=\"https://www.youtube.com/@jon_bossenger\"><strong>Developing Sendig a Block theme</strong></a> on YouTube. The goal is to create a theme following the designs by Emily Rapport. <em>(See <a href=\"https://gutenbergtimes.com/gutenberg-15-7-woocommerce-blocks-10-1-and-299-block-themes-weekend-edition-253/#2-word-press-6-0-1-and-6-1-scheduled\">Weekend Edition 253 for details</a>)</em>.</p>\n\n\n\n<a href=\"https://www.youtube.com/@jon_bossenger\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>You can take <strong>Wes Theron</strong>&#8216;s tutorial on <a href=\"https://learn.wordpress.org/tutorial/designing-with-row-and-stack-blocks/\"><strong>Designing with row and stack blocks</strong></a> on <em>Learn WordPress. </em>&#8220;Using the Group block is one of the cornerstones of mastering the block editor. When you select a Group block, you have the variations of the Group block, the standard group, rows, and stacks. In this video tutorial, you learn how you can use rows and stacks to achieve various designs.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/RonaldHuereca\">Ronald Huereca</a></strong> published a tutorial on <a href=\"https://dlxplugins.com/tutorials/adding-commands-to-the-wordpress-command-palette/\"><strong>Adding Commands to the WordPress Command Palette</strong></a> can be accomplished, ahead of the official WordPress 6.3 Dev Notes. He explained what the Command Palette is, what it can be used for, and step-by-step how you can add your custom commands to it via a plugin. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>A new post on the <em>WordPress Developer Blog</em> covers <a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\"><strong>how to modify theme.json data using server-side filters.</strong></a> Discover, with <strong>Nick Diego</strong> as your guide, the possibilities of theme.json server-side filters. Learn how to modify color palettes dynamically or restrict block controls based on user permissions.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The recording of this week&#8217;s Live Q &amp; A is now available on YouTube: <a href=\"https://www.youtube.com/watch?v=-5IrkgryD6s\"><strong>Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels</strong></a>. Learn how Gutenberg components and scripts can be used outside the block editor to revamp a plugin’s code base in this Case Study of GiveWP 3.0 with J<strong>ason Adams</strong>, Director of Development, <strong>Jon Waldstein</strong>, Lead Developer of GiveWP and co-host <strong>Lena Morita</strong>, JavaScript Developer on the Components team. The list of resources is available in the description of the video. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong> announced the topics for the next Twitch streams: </p>\n\n\n\n<ul>\n<li>Jul 13, 2023 –&nbsp;<a href=\"https://href.li/?https://www.meetup.com/learn-wordpress-online-workshops/events/294583083/\">Reviewing all existing SlotFills</a></li>\n\n\n\n<li>Jul 20, 2023 –&nbsp;<a href=\"https://href.li/?https://www.meetup.com/learn-wordpress-online-workshops/events/294583132/\">Reviewing Gutenberg Features 16.2</a></li>\n\n\n\n<li>Jul 27, 2023 –&nbsp;<a href=\"https://href.li/?https://www.meetup.com/learn-wordpress-online-workshops/events/294583179/\">Using custom SlotFill to extend a codebase</a></li>\n</ul>\n\n\n\n<p>Recordings of previous streams can be viewed on his <a href=\"https://www.youtube.com/ryanwelchercodes\">YouTube Channel.</a></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Victoria Pickering &#8220;Old Type&#8221;, <a href=\"https://openverse.org/image/2b65ee7c-b784-4c06-9c2c-041b25863bad\">found on Openverse.org</a></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Jul 2023 09:45:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"WPTavern: WordPress Unveils Plans for Real-Time Collaboration with Major Improvements to Revisions and the Media Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://wptavern.com/wordpress-unveils-plans-for-real-time-collaboration-with-major-improvements-to-revisions-and-the-media-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6352:\"<p>In a series of four posts, Gutenberg lead architect Matías Ventura has outlined the project&#8217;s phase 3 plans for <a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Real-Time Collaboration</a>, <a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\">Workflows</a>, <a href=\"https://make.wordpress.org/core/2023/07/05/revisions/\">Revisions</a>, and the <a href=\"https://make.wordpress.org/core/2023/07/07/media-library/\">Media Library</a>. WordPress 6.3 is set to be the final major release of Phase 2, which focused on Customization. </p>\n\n\n\n<p>Phase 3 will shift focus from the editors and move into other parts of the admin in an effort to bring seamless collaboration to WordPress.</p>\n\n\n\n<p>&#8220;The primary aim of real-time collaboration is to build functionality into the&nbsp;block&nbsp;editors so that concurrent collaboration, shared edits, and online presence of peers are possible,&#8221; Ventura said. &#8220;Supporting these workflows is not just about concurrency, though, but also about lifting restrictions that have been present in WordPress for a long time, such as locking a post when two people try to edit at the same time.&#8221;</p>\n\n\n\n<p>The technical challenges here are in making this available to all WordPress users, even those on the most economical hosting environments. Ventura shared a quick preview of what that might look like, along with the scope of the tasks that would be part of this effort.</p>\n\n\n\n<img />\n\n\n\n<p>In the <a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\">Workflows</a> document, Ventura details collaborative features that will be part of this phase, including allowing users to add comments, suggest edits, and tag other users for peer review. These enhancements would apply to both content creation and design changes on block themes. </p>\n\n\n\n<p>There are some interesting projects listed within the scope of this section, including a publishing checklist, sharing draft links with permission controls, and exploring hook points for&nbsp;version control&nbsp;systems to take over internal revision systems if desired.</p>\n\n\n\n<img />image credit: <a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\">Workflows</a> &#8211; Matías Ventura\n\n\n\n<p>Users can expect that <a href=\"https://make.wordpress.org/core/2023/07/05/revisions/\">Revisions</a> will also be getting some major improvements as part of the Collaboration phase of the project.</p>\n\n\n\n<p>&#8220;As part of improving the overall experience, we should also go beyond document level history and explore how the interface could let users browse through single block changes and offer the ability to restore them individually rather than requiring full post restores,&#8221; Ventura said. &#8220;For global styles, we should evolve the revisions panel to allow comparing two revisions side by side. For synced patterns, we could allow browsing edit history with side by side and overlay comparison tools.&#8221;</p>\n\n\n\n<p>Long-awaited improvements to WordPress&#8217; <a href=\"https://make.wordpress.org/core/2023/07/07/media-library/\">Media Library</a> are also considered part of this phase.</p>\n\n\n\n<p>&#8220;The main goals are to expand the media management capabilities, unify the block edit and single media interfaces, and improve upon the major media flows,&#8221; Ventura said. He highlighted a few major areas that may get some enhancements, such as categorization and tagging, better handling of attached media, and design improvements to the library view.</p>\n\n\n\n<p>Other Media Library projects may include a revamp of the image editing interface, which remains somewhat unintuitive at this time. Ventura proposes these tools, such as cropping and thumbnail browsing, be updated to align more with the current block editor tools.</p>\n\n\n\n<p>Contributors may also be exploring contribution to the commons from WordPress, along with improvements to attribution.</p>\n\n\n\n<p>&#8220;As we look into expanding the presence and touch points of <a href=\"https://openverse.org/\">Openverse</a>, it’d be interesting to see how contributions to the commons could work directly from a user’s WordPress install,&#8221; Ventura said. &#8220;Another area to look at is improving handling and presentation of other media types (audio, video, files) and their connection with blocks and the block APIs. We should resurface work on a native Playlist block, ideally powered by the <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Interactivity API</a>.&#8221;</p>\n\n\n\n<p>Reactions to the outlined vision and scope for the Collaboration phase have so far been positive, as users and contributors are eager to see a strong focus come to some of the other parts of WordPress that have not had much attention for years. The newer real-time collaboration features that will take WordPress beyond the days of locking posts while another person is editing, have the potential to speed up content creation and editing for groups working on the same website.</p>\n\n\n\n<p>&#8220;Very much looking forward to this phase. I think it will really enable larger teams to work on posts much easier,&#8221; WordPress developer Rich Holman <a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/#comment-45051\">commented</a>. &#8220;I’ve mentioned this before but the ability to continue working on a published draft without the front-end updating seems important especially with more editors working on something, especially if doing more experimental edits.&#8221;</p>\n\n\n\n<p>For more details on the features being considered for this phase, check out the <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3 overview post</a>, along with Ventura&#8217;s more recent write-ups on how contributors will improve and expand WordPress&#8217; collaboration architecture with updates to <a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Real-Time Collaboration</a>, <a href=\"https://make.wordpress.org/core/2023/07/04/workflows/\">Workflows</a>, <a href=\"https://make.wordpress.org/core/2023/07/05/revisions/\">Revisions</a>, and the <a href=\"https://make.wordpress.org/core/2023/07/07/media-library/\">Media Library</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 19:40:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordCamp Central: WordCamp Rochester is Back!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166570\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://central.wordcamp.org/news/2023/07/wordcamp-rochester-is-back/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1772:\"<a href=\"https://central.wordcamp.org/files/2023/07/cropped-14120055196ucu6-scaled-1-1.jpg\"><img /></a>\n\n\n\n<p>On Saturday, September 30, 2023, Rochester will again (for the sixth time) host the region’s WordCamp for bloggers and web designers of all skill levels.</p>\n\n\n\n<p>Registration opens at 8:00am. Sessions begin at 9 a.m. and continue to 5 p.m. This year’s WordCamp will be held at the Rochester School of the Arts, 45 Prince Street, Rochester, NY 146017. Tickets are required in advance.&nbsp;</p>\n\n\n\n<p>The $25 ticket cost covers WordCamp Rochester swag, morning coffee, lunch, and the evenings’s after-party food. Participants are strongly encouraged to bring their laptop or tablet computers. Ticket purchase and program details are available at <a href=\"http://www.rochester.wordcamp.org/2023\">www.rochester.wordcamp.org/2023</a>. The capacity for this event is about 120 people, so getting tickets early is advised.</p>\n\n\n\n<p>WordCamps are held worldwide, locally run and purposely provided at a low cost for accessibility to all. WordCamp Rochester is dedicated to WordPress, blogging and web facility. WordCamps are sponsored by WordPress, the open-source, free platform for individuals, groups and businesses to build their own blogs and websites. WordPress.org began in 2003. Its administrators call it the “largest self-hosted blogging tool in the world, used on millions of sites and seen by tens of millions of people every day.”</p>\n\n\n\n<p>Similar to previous years, Rochester’s 2023 WordCamp will divide its workshops along two tracks, with sessions for every ability and level of use.</p>\n\n\n\n<p>Speakers will include WordPress users from Rochester, Buffalo, and beyond, with experience ranging from user/blogger to advanced developer.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 18:36:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"WordPress.org blog: 6.3 Live Product Demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2911:\"<img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Live-Product-Demo.png?resize=1024%2C576&ssl=1\" alt=\"WordPress 6.3 Live Product Demo Cover Art\" class=\"wp-image-15355\" />\n\n\n\n<p><strong>Want to learn more about WordPress 6.3, planned for release on August 8, 2023? Join the WordPress community for a first look at 6.3 in action during a live product demonstration.</strong></p>\n\n\n\n<p>6.3 release squad members, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/annezazu/\" target=\"_blank\">Anne McCarthy</a> and <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/richtabor/\" target=\"_blank\">Rich Tabor</a>, will team up with moderator, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/njwrigley/\" target=\"_blank\">Nathan Wrigley</a>, to guide attendees through the anticipated highlights of the upcoming release. This event will follow a similar format to the <a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\">live demo for 6.2</a>.</p>\n\n\n\n<p>Attendees will see recent improvements to the Site Editor, Patterns, Command Palette, and more. Following the demo, there will be a Q&amp;A session, and you may submit questions in advance via <a href=\"https://wordpress.slack.com/archives/C039R2P1ZC1\">Slack</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Date, Time, and Location</h2>\n\n\n\n<p>Thursday, July 20, 2023 at <a href=\"http://time.unitarium.com/utc/1600\">16:00 UTC</a><br /><a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom Link</a> | Save this link and use it on July 20 to join the event.</p>\n\n\n\n<p>The event will be recorded, archived for on-demand viewing on <a href=\"https://wordpress.tv/\">WordPress.tv</a>, and shared in a recap post shortly afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">About WordPress 6.3</h2>\n\n\n\n<p>To learn more about WordPress 6.3, please visit the following resources:</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2 Announcement</a></li>\n\n\n\n<li>Overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a></li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> for testing 6.3</li>\n</ul>\n\n\n\n<p>Props to our panelists and moderator, and to <a href=\"https://profiles.wordpress.org/jpantani/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jpantani</a>, <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a>, and <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a> for helping prepare this announcement and supporting event logistics.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 13:27:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordCamp Central: WordCamp San José 2023: Looking For Speakers And Sponsors!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://central.wordcamp.org/news/2023/07/wordcamp-san-jose-2023-looking-for-speakers-and-sponsors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2078:\"<div class=\"wp-block-image\">\n<img src=\"https://i0.wp.com/sanjose.wordcamp.org/2023/files/2023/06/Wapuu.png?resize=266%2C300&ssl=1\" alt=\"\" /></div>\n\n\n<p>WordCamp San José 2023 will take place on November 4-5, 2023 at Fidélitas University. That means we are currently looking for speakers who want to take the stage and share their knowledge, and sponsors who can help make this event unforgettable.</p>\n\n\n\n<p>Costa Rica is known as a country that stands out for its natural beauty, commitment to environmental sustainability, and quality of life, so we are looking for a great and diverse group of speakers to reflect our local community. Both new and experienced WordCamp speakers are welcome. If you would like to propose multiple topics, please submit the form multiple times, once for each topic.</p>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f50a.png\" alt=\"🔊\" class=\"wp-smiley\" /> <strong>Our deadline for submitting proposals is midnight EST on August 26, 2023. </strong></p>\n\n\n\n<p><strong>Apply at </strong><a rel=\"noreferrer noopener\" href=\"https://sanjose.wordcamp.org/2023/llamado-a-ponentes/\" target=\"_blank\">https://sanjose.wordcamp.org/2023/llamado-a-ponentes/</a><br /><strong>WordCamp San Jose is also looking for sponsors who can help with expenses. We are the largest WordCamp in Latin America. Be part of the fun and help us by bringing a great experience in terms of food, networking opportunities, and some fun contests!</strong></p>\n\n\n\n<p><strong><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /> Call for Sponsors: <a rel=\"noreferrer noopener\" href=\"https://sanjose.wordcamp.org/2023/call-for-sponsors/\" target=\"_blank\">https://sanjose.wordcamp.org/2023/call-for-sponsors/</a></strong></p>\n\n\n\n<p><strong><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f39f.png\" alt=\"🎟\" class=\"wp-smiley\" /> Buy your ticket here: <a rel=\"noreferrer noopener\" href=\"https://sanjose.wordcamp.org/2023/tickets/\" target=\"_blank\">https://sanjose.wordcamp.org/2023/tickets/</a></strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 07:17:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"roblesloaiza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: Navigating the WooCommerce and WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75463\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/navigating-the-woocommerce-and-wordpress-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:425:\"<p>If you have just started a business, or moving an existing one into this unique open source community, there is a lot to learn.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/navigating-the-woocommerce-and-wordpress-community/\">Navigating the WooCommerce and WordPress Community</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2023 07:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Hey: An Elegantly Simple WordPress Block Theme for Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=144855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/hey-an-elegantly-simple-wordpress-block-theme-for-blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2261:\"<p><a href=\"https://wordpress.org/themes/hey/\">Hey</a> is a block theme designed by Automattic for users <a href=\"https://wordpress.com/theme/hey\">on WordPress.com</a> and also released for free in the WordPress.org Themes Directory. It&#8217;s the kind of simple theme that enables you to quickly get started writing online, without having to configure a bunch of design elements. The homepage features a profile image (Site Logo), site title, and recent posts with dates.</p>\n\n\n\n<img />\n\n\n\n<p>Single posts display with the feature image at the top of the post, although this template can easily be edited if this is an undesirable feature. Previous and Next post navigation appears under the post. Users can add menu items to display at the top, but clicking the site logo brings the visitor back home in the absence of a navigation menu.</p>\n\n\n\n<img />\n\n\n\n<p>The Hey theme comes in two different styles &#8211; the default and a serif variation. Colors can be adjusted to create a more vibrant palette for the site design.</p>\n\n\n\n<img />\n\n\n\n<p>One major drawback to this theme, which may not be immediately evident by looking at the demo, is that if users want to display more than the three most recent posts, they will need to add the pagination block inside the query loop block. It will also need to be styled to match the theme better. The query loop can be edited to show more posts on the homepage.</p>\n\n\n\n<p>Although Hey is a simple personal blog theme, it also comes packaged with templates for WooCommerce compatibility. This is likely for the benefit of WordPress.com users who may want to quickly fire up a store. Self-hosted users who want to sell products with WooCommerce will be able to easily display things like the mini-cart, customer account block, product archive, product search results, and more.</p>\n\n\n\n<p>Overall, Hey is an elegantly simple block theme with a clean design and plentiful white space. It&#8217;s suitable for the person who wants an almost blank slate to get started, or just a theme that enables writing without any distraction for the reader. Check out the <a href=\"https://wordpress.com/theme/hey\">live demo</a> on WordPress.com and <a href=\"https://wordpress.com/theme/hey\">download Hey from WordPress.org</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jul 2023 21:02:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Do The Woo Community: Building a WooCommerce Point of Sales with Mathias Nielsen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://dothewoo.io/building-a-woocommerce-point-of-sales-with-mathias-nielsen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:434:\"<p>In this Woo DevChat we talk with Mathias from Oliver POS about his journey in building a point of sales for WooCommerce.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-a-woocommerce-point-of-sales-with-mathias-nielsen/\">Building a WooCommerce Point of Sales with Mathias Nielsen</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jul 2023 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WPTavern: WordPress 6.3 to Drop Support for PHP 5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146565\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wptavern.com/wordpress-6-3-to-drop-support-for-php-5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3537:\"<p>WordPress is officially <a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">dropping support for PHP 5</a> in the upcoming 6.3 release, which is expected on August 8. WordPress&#8217; <a href=\"https://wordpress.org/about/requirements/\">minimum supported version</a> has sat at PHP 5.6.20 since 2019, but will be updated to 7.0.0 in the next release. The recommended PHP version will stay the same at 7.4+.</p>\n\n\n\n<p>&#8220;The minimum supported version was last adjusted in WordPress 5.2 in 2019, and since then usage of PHP 5.6 has dropped to 3.9% of monitored WordPress installations <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/about/stats/\" target=\"_blank\">as of July 2023</a>,&#8221; WordPress core developer John Blackbourn said.</p>\n\n\n\n<p>&#8220;There’s no concrete usage percentage that a PHP version must fall below before support in WordPress is dropped, but historically the project maintainers have used 5% as the baseline. Now that usage of PHP 5.6 is well below that at 3.9% and dropping by around 0.1% every few weeks, plans to increase the minimum supported PHP version can move forward.&#8221;</p>\n\n\n\n<p>Blackbourn also emphasized that WordPress&#8217; support for PHP 8.0, 8.1, and 8.2 is &#8220;very good&#8221; and contributors may soon act on <a href=\"https://make.wordpress.org/core/2023/06/20/proposal-criteria-for-removing-beta-support-from-each-php-8-version/\">a proposal for the criteria that would enable them to remove the &#8220;beta&#8221; support label</a> on new PHP versions. Nearly 26% of WordPress users are already running sites on PHP 8.0+. </p>\n\n\n\n<img />\n\n\n\n<p>Prior to this minimum required version boost, some hosts had even taken matters into their own hands in urging users to get on newer versions of PHP. Dreamhost <a href=\"https://twitter.com/idavinder/status/1673948104591122432\">charges additional fees</a> for sites that require <a href=\"https://help.dreamhost.com/hc/en-us/articles/360004672631-PHP-extended-support\">extended support</a> for PHP 7.4 and older. <a href=\"https://www.ionos.com/help/hosting/troubleshooting-for-php/php-extended-support/\">IONOS</a> and <a href=\"https://www.strato-hosting.co.uk/faq/hosting/what-is-strato-php-extended-support/\">Strato</a> have similar policies. </p>\n\n\n\n<p>The decision to bump the minimum supported version is happening after a lengthy seven-month long <a href=\"https://core.trac.wordpress.org/ticket/57345\">discussion</a>, which surprisingly <a href=\"https://core.trac.wordpress.org/ticket/57345#comment:93\">drew a little resistance</a>. Although sites that remain on PHP 5.6 cannot upgrade beyond WordPress 6.2, they will still receive security updates, as the project currently <a href=\"https://make.wordpress.org/security/2022/09/07/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">backports them to versions 4.1+</a>. The bump to 7.0.0 for the minimum supported version will have many benefits for the WordPress ecosystem of themes and plugins, will significantly reduce memory usage for upgraded websites, and provide better security and improvements to core tooling.</p>\n\n\n\n<p>&#8220;There are no plans to bump the minimum supported PHP version on a schedule,&#8221; Blackbourn said. &#8220;The core team will continue to monitor usage of PHP versions and work with the hosting team to encourage users and hosting companies to upgrade their versions of PHP as swiftly as possible. The 5% usage baseline will continue to be used for the foreseeable future.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2023 21:30:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress 6.3 Beta 3 Released, Introduces UI Changes to Pattern Management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/wordpress-6-3-beta-3-released-introduces-ui-changes-to-pattern-management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3172:\"<p>WordPress contributors are onto another round of testing, as <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-3/\">6.3 Beta 3 was released</a> this week. RC 1 is expected on July 18, and a live product demo is anticipated to be broadcast on Thursday, July 20, 2023 at 16:00 UTC. These demos have become a more regular part of the release process and allow viewers to familiarize themselves with important new features and updates coming in the release.</p>\n\n\n\n<p>Beta 3 includes approximately 34 updates to the Site Editor since the previous beta release, and more than 40 updates coming from Trac.</p>\n\n\n\n<p>A last-minute PR has <a href=\"https://github.com/WordPress/gutenberg/pull/52102\">renamed Library to Patterns</a> in the Site Editor and was cherry-picked to get it included in Beta 3. Automattic-sponsored Gutenberg contributor Aaron Robertshaw cited three reasons for the renaming:</p>\n\n\n\n<ul>\n<li>Discovery: this is an opportunity to make patterns front and center as we are introducing the ability to save custom patterns. They should be front and center in the &#8220;Design&#8221; tab.</li>\n\n\n\n<li>Clarity: library can be obscure and overlaps with other terminology (like Media Library). We didn&#8217;t get to add font library management in this round, but it would have made things more confusing (would a user expect to see their font library under &#8220;Styles&#8221; or an item called &#8220;Library&#8221;?). Calling it patterns removes that ambiguity.</li>\n\n\n\n<li>Presence: patterns is a unique name that has been established in the WP branding parlance for a bit and deserves more clear placement.</li>\n</ul>\n\n\n\n<p>This video from the PR gives a quick overview of the changes testers should see in the Patterns UI as of Beta 3:</p>\n\n\n\nGutenberg PR: Patterns: Rename Library to Patterns <a href=\"https://github.com/WordPress/gutenberg/pull/52102\">#52102</a>\n\n\n\n<p>Beta 3 <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">introduces a new lock icon</a> to designate theme patterns as unable to be edited or modified. It also adds a <a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status details section</a> within the pattern sidebar navigation screen. </p>\n\n\n\n<img />image credit: <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">Gutenberg PR #51990</a>\n\n\n\n<p>There are a significant number of new things being introduced after Beta 1, which seems usual. Major features like the pattern creation and the Patterns section made their debut in <a href=\"https://wptavern.com/gutenberg-16-1-introduces-pattern-creation-and-library-adds-distraction-free-mode-to-site-editor\">Gutenberg 16.1</a> but had very little testing before being rolled into the upcoming WordPress 6.3 release. This is likely why UI changes are being introduced after Beta 1 has already shipped. </p>\n\n\n\n<p>Check out the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-3/\">Beta 3 release post</a> for more information on how to test. A Beta 4 is anticipated the week of July 11, followed by RC 1 on July 18. The general release is <a href=\"https://make.wordpress.org/core/6-3/\">scheduled</a> for August 8, 2023.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2023 16:21:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: #82 – Louise Towler on How and Why You Can Make WordPress Sites Sustainable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=146471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/podcast/82-louise-towler-on-how-and-why-you-can-make-wordpress-sites-sustainable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50144:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcastwhich is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how and why you need to be thinking sustainably when building websites.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Louise Towler. She joined me at the recent WordCamp Europe in Athens to talk about websites and making them more sustainable.</p>\n\n\n\n<p>Louise is the founder of Indigo Tree, a UK based agency with deep expertise in WordPress websites. She gave a presentation at WordCamp Europe entitled, Digital sustainability: The benefits for business and the environment, in which she emphasized the impact websites can have on our planet. Her aim was to deliver practical tips for users and developers to help them make informed decisions. This presentation is the focus of today&#8217;s podcast, and we cover quite a lot of ground.</p>\n\n\n\n<p>Louise highlights the significant role which electricity plays in powering data centers and transmitting data to end devices. Even if data centers use renewable energy, there is still a need to address overall electricity consumption. She points out that the internet is the fourth largest polluter globally, surpassing the airline industry.</p>\n\n\n\n<p>We discussed how the continuous and widespread use of the internet has made it difficult to reduce its own impact, while still emphasizing the importance of the steps that we can take to make the internet more energy efficient.</p>\n\n\n\n<p>She suggests ways that we can all make a difference right away. Educating clients about the consequences of certain design choices, such as using large videos or auto-play features that require substantial data to load. Optimizing videos, images, and other website elements, which makes it possible to reduce data consumption and improve performance.</p>\n\n\n\n<p>The conversation then explores other suggestions, such as using modern image formats, using images as placeholders for videos, self hosted fonts, and considering the carbon footprint of email communications.</p>\n\n\n\n<p>Louise acknowledges the challenges of discussing environmental concerns with clients, whilst also explaining that we have to come up with ways to make clients understand that these decisions are beneficial to them as well. After all, an optimized website is one that is looked upon favorably by search engines. Whilst clients ultimately are the decision makers, informing them about the consequences of their choices can help them be more informed.</p>\n\n\n\n<p>Moving onto WordPress, we talk about the responsibility theme authors play. It&#8217;s a crucial role, helping users make sustainable choices. Her agency builds custom themes for clients which allows them to have full control over design decisions.</p>\n\n\n\n<p>We get into the subject of how legislation is certainly coming, and so getting in early and understanding the implications of such legislation will help your endeavors in the future.</p>\n\n\n\n<p>Towards the end of the podcast, we chat about some of the tools which you can use to assess the impact that your websites have, including a tool which Louise and her team have been working on for the last few years.</p>\n\n\n\n<p>If you&#8217;re interested in how your sites can become more sustainable, this podcast is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Louise Towler.</p>\n\n\n\n<p>I am joined on the podcast today by Louise Towler. Hi Louise.</p>\n\n\n\n<p>[00:04:54] <strong>Louise Towler:</strong> Thank you for inviting me. Hello.</p>\n\n\n\n<p>[00:04:56] <strong>Nathan Wrigley:</strong> We&#8217;re going to talk today about, well possibly the most important topic ever, which is the environment and your website compared to the environment. Prior to that Louise, will you just tell us a little bit about you, so that we have some context. Who are you? What&#8217;s your relationship with WordPress and so on?</p>\n\n\n\n<p>[00:05:13] <strong>Louise Towler:</strong> Okay. I am the founder of Indigo Tree. We&#8217;re a small but beautiful WordPress agency based about 30 minutes on the train north of London in the UK. There&#8217;s 15 of us in total at the moment. We have an engineering team, a project management team, and a support team, and we build WordPress websites.</p>\n\n\n\n<p>I started building websites, well my first webpage that I built was built Christmas Day, the year 2000, because my husband was daft enough to buy me a book on html. So he cooked the turkey and I built myself a little webpage. I started freelancing about 20 years ago, and then one of my freelancing clients said to me, we&#8217;ve heard there&#8217;s this thing called WordPress. Would you mind building our website in WordPress? And I was like, okay, I&#8217;ll give it a go. And went off and Googled and found out how to do it, and the rest is history.</p>\n\n\n\n<p>[00:06:09] <strong>Nathan Wrigley:</strong> Nice. You did a talk today entitled The Benefits for Business and the Environment. Just give us a bit of a background about your thoughts on the environment. What I mean by that, is this something that you are concerned about in your normal life? Does the environment figure heavily in your daily life?</p>\n\n\n\n<p>[00:06:27] <strong>Louise Towler:</strong> It does. It&#8217;s really difficult to tread lightly on the planet. It&#8217;s very hard to do things in a sustainable way, but I think I&#8217;m very conscious of it. So I buy a few clothes, but I wear them a lot rather than throw them away, and the fast fashion thing. I use recycled paper. I try to do things in a good way. Turn off lights. Think about my travel. But it is genuinely hard. But then I have children and they&#8217;re going to live a lot longer than me, and global warming is going to affect them a lot more than it&#8217;s going to affect me. But 2050 is not that far away. And we are in trouble, as we can see by the mad world weather that&#8217;s happening at the moment.</p>\n\n\n\n<p>[00:07:16] <strong>Nathan Wrigley:</strong> You work in the website building industry, as do I. Which feels in my daily interaction with my computer, it feels like the cleanest thing ever. I have a shiny laptop. I have a shiny phone. None of them put smoke out of the back when I switched them on. You know, if I worked in the automotive industry, it would be obvious what my footprint was. But I switch on my computer, there&#8217;s no connection between that and the environment. And yet it&#8217;s pretty bad.</p>\n\n\n\n<p>[00:07:49] <strong>Louise Towler:</strong> Yeah.</p>\n\n\n\n<p>[00:07:50] <strong>Nathan Wrigley:</strong> We browse the internet. We&#8217;re probably asking Google and all the other rivals, trivial things all the time. So make the connection for us. What is the environmental impact? What are the things which are happening between me switching on my computer and browsing WordPress websites? What are the things that are going on? What&#8217;s the technology, the bits and pieces that we need to be thinking about?</p>\n\n\n\n<p>[00:08:13] <strong>Louise Towler:</strong> Well, if the internet was a country, it would be the fourth largest polluter. Compared to airlines, you know, that are 1.6%, it&#8217;s massive. It is just massive. And it&#8217;s fundamentally about electricity. Because it&#8217;s electricity that powers the data centers, whether or not they&#8217;re running on renewable energy, the fact is they still need electricity.</p>\n\n\n\n<p>You&#8217;ve got the transmission, the wires between the data centers and the end devices, and then you&#8217;ve got the power to power your device. If you&#8217;re on a phone, you are recharging it. If you&#8217;re on a laptop, you are plugging it in, and that&#8217;s all using electricity. And not all of that electricity is renewable and the electricity that comes through the wires, you don&#8217;t have any control about what proportion of that is renewable.</p>\n\n\n\n<p>On a hot, windy day in the UK, a vast proportion of that electricity is from renewable energy, from solar and wind turbines. But on a dark, gloomy day with no wind, a massive proportion of that is fossil fuel powered electricity.</p>\n\n\n\n<p>[00:09:27] <strong>Nathan Wrigley:</strong> It feels like we&#8217;re completely addicted to the internet. I use the car that I have, a bit. But I use the internet more or less continually. You know, I&#8217;ve got my phone, it&#8217;s constantly charged up. The merest thought in my head can easily lead me to whip out the phone, do some banal scrolling of Facebook or whatever it may be. And that feels like that&#8217;s crept up on us. We&#8217;re all using it all the time. You said what was it, 4%?</p>\n\n\n\n<p>[00:09:57] <strong>Louise Towler:</strong> It&#8217;s the fourth largest polluter.</p>\n\n\n\n<p>[00:09:59] <strong>Nathan Wrigley:</strong> Fourth largest polluter. Can you compare that to another industry? You mentioned airlines. Does the internet as a whole, so every website, all the online services that we can use and so on, does that pollute more than the airline industry? Because the airline industry is the poster child of pollution, isn&#8217;t it?</p>\n\n\n\n<p>[00:10:15] <strong>Louise Towler:</strong> I believe it does. I mean, the problem is finding out, and even measuring it is really hard. So all the estimates are that it is just massive, and it&#8217;s getting worse. With AI, the stat that I&#8217;ve read is that to do a search in ChatGPT takes four times as much energy as to do a search in Google. And to build that AI model takes a massive amount of processing power to suck in all the data and build out that model that then does predict the next word that&#8217;s going to come out in the chat box.</p>\n\n\n\n<p>And so it&#8217;s not getting better. When you are talking about carbon footprints and getting to net zero, you&#8217;ve not just got to change the energy mix so that you&#8217;re running off renewable energy. You need to actually reduce demand. In the UK there&#8217;s a carbon reduction in task force. Their target is by 2030, they will have reduced demand by 15% for electricity in comparison to 2021. You have to reduce the demand as well.</p>\n\n\n\n<p>[00:11:25] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:11:26] <strong>Louise Towler:</strong> And the connection to IT and websites is that if you transmit less data, you are, there&#8217;s not a direct correlation always, but you are essentially using less electricity to transmit that data.</p>\n\n\n\n<p>[00:11:37] <strong>Nathan Wrigley:</strong> So the easiest way to mitigate your use of the internet is just to stop using it. But that&#8217;s completely unrealistic now?</p>\n\n\n\n<p>[00:11:44] <strong>Louise Towler:</strong> Well, a company with zero carbon footprint is probably a company that&#8217;s not in business. You can&#8217;t not use the internet. What you have to do, we have to try and make sure the internet uses less electricity to do what it does.</p>\n\n\n\n<p>[00:11:59] <strong>Nathan Wrigley:</strong> Okay, so given that we&#8217;re not going to be switching our computers off, we&#8217;re not going back to the internet stone age, if you like. We&#8217;ve got to figure out ways to reduce the amount of carbon that we put out. So we&#8217;ve got to become responsible citizens because we&#8217;re using the internet. But also, we&#8217;re in a slightly unique position, you, I, and the people listening to this podcast, because we&#8217;re sitting behind the websites that are causing the pollution. And that&#8217;s, I guess, where the rest of this conversation is going to go. What are the things that we can do to make our websites for our clients, for ourselves, pollute a little bit less?</p>\n\n\n\n<p>[00:12:38] <strong>Louise Towler:</strong> Think about the data and educate your client. So in the first instance, if your client wants that amazing stock video on the banner of their homepage, that auto plays in the background and looks absolutely fab. But actually the amount of data that you are then having to load on the homepage to deliver that video is massive. Well explain to them the consequences of that decision.</p>\n\n\n\n<p>It&#8217;ll probably mean the homepage is a little bit slower, which won&#8217;t be as good for Core Web Vitals and for search. So whether or not they care about the planet, they should be caring about the performance of their website. And the fact is it will use more data and that&#8217;s not good for people or the planet.</p>\n\n\n\n<p>If I&#8217;m on a fixed price data plan, because I&#8217;m on a low income and my children&#8217;s school has a massive video on the homepage of their school website with lots of happy kids running around the playground. And every time I visit that website, I&#8217;m using up my scarce resources of data, auto playing that video, that&#8217;s not very respectful to me when I&#8217;m trying to go about my daily life.</p>\n\n\n\n<p>So there&#8217;s lots of levels you can talk to your clients about why it&#8217;s good to do things. So it&#8217;s things like optimizing videos, optimizing images. If you&#8217;re familiar with Core Web Vitals and trying to speed up websites, these are nothing new. But you know, design your website with two fonts rather than five.</p>\n\n\n\n<p>Think about when you embed videos on the page. The block editor, it&#8217;s really easy to embed a video from YouTube or Vimeo, but use a plugin and put a facade in front of it so that when you actually load the page it loads an image. If it&#8217;s below the fold, you can lazy load the image. If people don&#8217;t scroll down, the image doesn&#8217;t load, and it&#8217;s only when they click on that image that the video plays and actually downloads that extra data.</p>\n\n\n\n<p>So you are being really respectful to your visitors as well as to the planet by consciously thinking about these things. And it doesn&#8217;t cost anymore if you plan it in from the beginning. Talking to your clients and planning it, most clients are really happy to have that conversation because in the end, performance and speed should increase conversions and profit.</p>\n\n\n\n<p>[00:14:56] <strong>Nathan Wrigley:</strong> Actually, that&#8217;s a really good point. You mentioned, just as we were beginning, that you run an agency.</p>\n\n\n\n<p>[00:15:00] <strong>Louise Towler:</strong> Yeah.</p>\n\n\n\n<p>[00:15:01] <strong>Nathan Wrigley:</strong> Do you have this conversation with your clients?</p>\n\n\n\n<p>[00:15:03] <strong>Louise Towler:</strong> I talk about performance and speed.</p>\n\n\n\n<p>[00:15:08] <strong>Nathan Wrigley:</strong> Yeah, so how does that go down?</p>\n\n\n\n<p>[00:15:09] <strong>Louise Towler:</strong> Fine.</p>\n\n\n\n<p>[00:15:10] <strong>Nathan Wrigley:</strong> Have you ever had somebody push back and say, no, we need the video? Or is it generally a conversation of look, okay you could have the video, but here&#8217;s the reason why I think for the planet, you shouldn&#8217;t have the video. How does that conversation normally go?</p>\n\n\n\n<p>[00:15:19] <strong>Louise Towler:</strong> We advise them. It&#8217;s like with banners, with sliders, we advise them. I emailed something to a client last week saying, here&#8217;s the Google stats. About 8% will see banner number two. Do you really think banner number three, as one of your key important messages being viewed by 4% of your home paved visitors, you&#8217;re better off putting that content on the page. It is the client&#8217;s choice in the end, but I will educate them so they&#8217;re conscious of the choice that they&#8217;re making. Rather than not aware and then complain that nobody clicks through from banner number three. And I&#8217;m like, well, we did tell you.</p>\n\n\n\n<p>But there&#8217;s some things I don&#8217;t give clients a choice on, like accessibility. They don&#8217;t get a choice about having an accessible website because you don&#8217;t want to give people a choice where you don&#8217;t want them to make a poor decision.</p>\n\n\n\n<p>[00:16:04] <strong>Nathan Wrigley:</strong> And in terms of your agency, do you advertise your environmental credentials?</p>\n\n\n\n<p>[00:16:09] <strong>Louise Towler:</strong> We don&#8217;t really talk about it at the moment, but we will be dipping our toe in the water and talking more and more about it over the next few months, because we&#8217;ve been doing some interesting stuff in the background.</p>\n\n\n\n<p>[00:16:20] <strong>Nathan Wrigley:</strong> You mentioned that an autoplay video, that seems like the most extreme example. You know, you go to a website, suddenly you&#8217;ve downloaded without your realizing it, I don&#8217;t know, 10 megabytes of data that you really didn&#8217;t need. Just run through the components of a typical webpage. So what have we got? We&#8217;ve got text, we&#8217;ve got images, we&#8217;ve got video, we&#8217;ve got, audio like this.</p>\n\n\n\n<p>What are quick wins? What&#8217;s the order, if you like, that you should go through when in your head you&#8217;re trying to make a page more environmentally friendly?</p>\n\n\n\n<p>[00:16:49] <strong>Louise Towler:</strong> I would start with images because a website typically has more images than videos. And if you&#8217;re doing something with images like you are, I don&#8217;t know, using a CDN, or you&#8217;ve installed the performance plugin and you are delivering things as WebP, then one plugin and one solution might work across all images on your website.</p>\n\n\n\n<p>So I would definitely think about images in terms of making sure you deliver the right sized image for the device as well. So make sure that in your theme, you&#8217;ve got that function which saves it all out at the various different break points.</p>\n\n\n\n<p>[00:17:22] <strong>Nathan Wrigley:</strong> If you&#8217;re on a, mobile website, the image that&#8217;s loaded should be the same size as the device that you&#8217;re looking at. Not a great big image that&#8217;s been squished down, okay.</p>\n\n\n\n<p>[00:17:30] <strong>Louise Towler:</strong> Exactly. And that can be a bit tricky because sometimes on mobile sites for example, we&#8217;ll have a nice banner image, but we&#8217;ll make it cropped and square. Whereas on a desktop site you might have it that letter box shape. And actually it won&#8217;t really work on a mobile. It&#8217;s too sort of narrow and thin.</p>\n\n\n\n<p>So you sometimes need to be a bit careful about, especially with the block editor, do you need to have different versions of images unless the cropping is right in the middle. Doesn&#8217;t work very well with the block editor to just auto crop. It&#8217;s about thinking about it. So I definitely start with images.</p>\n\n\n\n<p>Little things like making sure you are using SVGs where it&#8217;s appropriate. If you&#8217;ve got an animated gif, turn it into a video. I then look at the videos. Just make sure you&#8217;ve got facades or posters on videos and try and persuade your client not to have that large banner video.</p>\n\n\n\n<p>I would then look at fonts and make sure all your fonts are self-hosted. Which is a good thing anyway because certainly from a GDPR perspective, if you are using Google fonts in Europe, then there&#8217;s been some case law around, it&#8217;s leaking data to Google about who&#8217;s using those fonts and you don&#8217;t want to be doing that.</p>\n\n\n\n<p>But that again will speed it up because you can cache the fonts and things like that. And subset the fonts. So I think you can do things where if you are only, if you&#8217;ve got a font set that&#8217;s in multiple languages, but actually your website&#8217;s just in English, only use the bit of the font that you need for the language that you are working in.</p>\n\n\n\n<p>And then I would definitely think about things, other things on the website, like email. If you&#8217;ve got a transactional site and you are sending out lots of confirmation of shipping emails. Do you need a really big logo in the email? Can it be a tiny logo or even just text on a colored background and make those emails have a lower carbon footprint as well.</p>\n\n\n\n<p>[00:19:18] <strong>Nathan Wrigley:</strong> How does WordPress out of the box do with helping you get to some of these targets?</p>\n\n\n\n<p>[00:19:26] <strong>Louise Towler:</strong> It&#8217;s not helpful.</p>\n\n\n\n<p>[00:19:28] <strong>Nathan Wrigley:</strong> So I was going to say, I imagine that most people listening to this podcast have an understanding of everything that you just said, but the typical user of WordPress is not somebody that&#8217;s listening this podcast. Used by millions of people who probably see the media library throwing the biggest image they&#8217;ve got, and that&#8217;s it.</p>\n\n\n\n<p>[00:19:43] <strong>Louise Towler:</strong> I think you&#8217;ve got to be a responsible theme author. As an agency, we build our own custom themes for each client. So we&#8217;re not constrained in any way at the design stage. But if you&#8217;re choosing either a free theme or a paid for theme, you can be quite wise about it. So if you are you&#8217;re building a brochure site for a client, you don&#8217;t need to choose a theme with every possible e-commerce, form plugin, event plugin, all that extra code. If you&#8217;re not using font awesome icons, then don&#8217;t let the theme pull in the complete font awesome icon set.</p>\n\n\n\n<p>Just download a little SVG. So try and think about the theme that you choose. It can be a bit of a pain to actually turn off on some of those very flexible all singing, all dancing dancing themes, the options when you just want something really simple.</p>\n\n\n\n<p>There are some plugins that can help. So for example, we often use a plugin called Perf Matters, which is really good for performance. And one of the things I particularly like about that plugin is, so if we are working with a client where they might have an inquiry form or a landing page with an inquiry form on it. You install a plugin, we use Gravity Forms. Really brilliant plugin. Love it. But of course you get that plugin code in the head of every page, just in case the form&#8217;s required. Well turn it off.</p>\n\n\n\n<p>You can use Perf Matters and go in, and go I only want the Gravity Form code to be embedded on these three pages, on the site that have forms on. Doesn&#8217;t need to be downloaded for any other pages.</p>\n\n\n\n<p>The same with something like Google Maps, the API for Google Maps. Often you&#8217;ll put it in so that you can have a nice map on your contact page. Well actually, number one, could you replace that map with an image, and then just link out to Google Maps? How many people are actually going to be scrolling in and out on the page?</p>\n\n\n\n<p>Think about it from the user&#8217;s perspective, but then actually just have that Google Maps API code in the contact page. Don&#8217;t have it anywhere else on your website. It&#8217;s just not needed. But you see it a lot where all the plugins inject all their stuff into the head on every single page just in case. So go through and turn things off.</p>\n\n\n\n<p>[00:22:02] <strong>Nathan Wrigley:</strong> You mentioned earlier that obviously this is something you&#8217;re trying to embed in your company. You also mentioned that you don&#8217;t have the conversation about accessibility. It&#8217;s just the way it is.</p>\n\n\n\n<p>[00:22:10] <strong>Louise Towler:</strong> Well, we talk about it. The only time we really push back is where clients have got brand colors, which aren&#8217;t AA accessible, and then we discuss with them whether we can change them.</p>\n\n\n\n<p>[00:22:21] <strong>Nathan Wrigley:</strong> But are you going to in the future be having more conversations like this?</p>\n\n\n\n<p>[00:22:26] <strong>Louise Towler:</strong> Yes.</p>\n\n\n\n<p>[00:22:27] <strong>Nathan Wrigley:</strong>And if so, how forceful are you going to be with your clients if they push back? Say, no, no, no, no. There&#8217;s a delicate line here, isn&#8217;t there? You want to do the best for your client and the best for your client may be a bitter pill for them to swallow.</p>\n\n\n\n<p>[00:22:39] <strong>Louise Towler:</strong> There may be a really good a brand reason, depending on the client, as to why they have to use a particular font. But I would be going to the client and saying, I&#8217;m going to tell you why it&#8217;s not a good idea. In the end, it is your choice. It is your website. You own the site once you&#8217;ve paid me for us to build it. So it is yours to do what you want with. But do it consciously, knowing the consequences of the decision that you are making.</p>\n\n\n\n<p>So I will always tell them, in the end it is their choice. But with things like brand and fonts and that, well you know, the consequences of pulling in an Adobe font is 6 to 800 milliseconds of a page load. That can be the difference between a first and second spot on google.</p>\n\n\n\n<p>So sometimes you can argue it really strongly from a commercial reason, and they will listen and go, right, let&#8217;s go back to our brand designer and get them to find some web fonts or some Google fonts that we can use. And elsewhere, yes, you&#8217;ll use that fancy type kit or whatever font, but let&#8217;s use something for the web that actually will work and not impact on the performance of the site. Because if they&#8217;re a commercial client, they&#8217;re going to care about the performance. We need to make them look good to their boss.</p>\n\n\n\n<p>[00:23:59] <strong>Nathan Wrigley:</strong> Given exactly what you just said, is there some accreditation that websites can expose to the world to say, we made an effort here? I&#8217;m trying to think of an example, but there are badges that you can get in all manner of industries to say, okay, we went through this training. We made the effort here, and so we have a badge to prove that we made an effort.</p>\n\n\n\n<p>Is there something that people can do on the internet to say, look, our website is consuming 50%, 30%, whatever, less energy than it might have done. We made an effort. Here&#8217;s our badge to prove it.</p>\n\n\n\n<p>[00:24:32] <strong>Louise Towler:</strong> I&#8217;m not aware of a badge, but there are lots of people doing lots of things out there. So there might be. I think it&#8217;s really hard because what might be a good score for a e-commerce site, might be of a poor score for a different type of site. And I think that in the end, yes, you can measure against other people, but actually you have to have that intrinsic motivation for just wanting to do it. It&#8217;s not about collecting badges.</p>\n\n\n\n<p>Does it matter if your site is AA accessible and you have a badge on your site? Or does it matter that you basically have enabled 40% of the population with disabilities or temporary impairments to actually access your goods and services, and you&#8217;ll increase your profits as a result?</p>\n\n\n\n<p>[00:25:15] <strong>Nathan Wrigley:</strong> So that was the website piece. You know, can you expose this credential to visitors? What about you as an agency? Can you expose your credentials to your clients? Is there anything there?</p>\n\n\n\n<p>[00:25:26] <strong>Louise Towler:</strong> Well, we&#8217;re working, and it is a very much a work in progress, towards something called B Corp, which is an accreditation thing that you can get for being, if you like, a good citizen to the planet. It covers environmental. It also covers governance, and more things to help with inclusivity and diversity. And we are rewriting our staff handbook, and we&#8217;re measuring our carbon footprint as part of that, as an agency. But we&#8217;re also doing other things as well. Making sure that we do things in a way that&#8217;s consciously responsible, and there&#8217;s got to be a business for good. We want to be a good citizen for the planet. And I think that&#8217;s quite a high standard. And there&#8217;s, I think about a thousand companies in the UK who have that. And we are not there yet, but it&#8217;s something that I think we can aspire to be.</p>\n\n\n\n<p>[00:26:12] <strong>Nathan Wrigley:</strong> Do you have any sense that this message that you are preaching here is beginning to catch on? You are definitely in the vanguard. Most people are not talking about this. If we go downstairs, we&#8217;re not really picking up on that message yet. But do you sense some kind of change? Are you communicating with people on a more regular basis about this? Clearly you are interested in it, but are you talking into the void or are people beginning to listen?</p>\n\n\n\n<p>[00:26:37] <strong>Louise Towler:</strong> There&#8217;s a lot of people in communities where the communities are talking about this a lot. I think what&#8217;s really nice is I was given the opportunity to speak at a conference, and this conference, to the entire WebPress community had a session about digital sustainability. I personally think that every conference that anyone puts on should have at least one speaker, or channel, or workshop, or something talking about sustainability in the industry, or sector that the conference is in. Because it is looming.</p>\n\n\n\n<p>The legislation is coming. The governments are legislating now, and at the moment in the UK it&#8217;s only very, very large businesses who have to do reporting. But if you are a large business wanting a government contract with a value of more than 5 million pounds, which you know, even small consultants and agencies can go for big contracts. You have to have your scope one, scope two, and some scope three emissions and a carbon reduction plan will be coming.</p>\n\n\n\n<p>By 2028 The National Health Service in the UK will require every product or service that is supplied to it to have a carbon footprint. So you need to be starting now because for some things that&#8217;s going to be really hard to do and it&#8217;s going to take a while to do.</p>\n\n\n\n<p>So start now with the little things, the quick wins. Start measuring where you are, because your carbon reduction plan has to say how you&#8217;re going to reduce. And then you have to show that you are making those reductions. So start measuring now, so that all the things you start doing now can be part of that reduction that you make and you can report on.</p>\n\n\n\n<p>[00:28:18] <strong>Nathan Wrigley:</strong> So you are describing things in the UK. In the UK in the future, you are literally going to be unable to get certain types of website client work if you cannot prove that you&#8217;ve done the due diligence.</p>\n\n\n\n<p>[00:28:31] <strong>Louise Towler:</strong> Yeah.</p>\n\n\n\n<p>[00:28:31] <strong>Nathan Wrigley:</strong> Okay, that&#8217;s really interesting. But still a way off. We&#8217;re still five years out from that portcullis closing?</p>\n\n\n\n<p>[00:28:37] <strong>Louise Towler:</strong> Yeah. But if you are a large business, very large business, you already have to do mandatory reporting. The government is slowly going to bring that down. It wouldn&#8217;t surprise me in the slightest if by 2030, as well as putting in my annual tax return, on my submission of my company accounts to Companies House, I have to do a carbon accounting report. Every small business.</p>\n\n\n\n<p>The EU, 23 million organizations there are in the EU at the moment, by 2028, all of them are going to be expected to put in some sort of carbon report on what they&#8217;re doing. The legislation is coming.</p>\n\n\n\n<p>But even quicker than that, procurement is starting to change. So I think it was the back end of 2021, Tesco sent out a letter to all of their suppliers saying, we want you to do these four things. You need to have a carbon reduction plan. You need to move to green energy. Otherwise you can&#8217;t be part of a supplier to Tesco. Doesn&#8217;t matter whether or not you are a large business or a small business, they sent it out as part of their procurement. So the government legislation is coming, but larger businesses are doing it quicker because they&#8217;re using procurement as a tool to do that.</p>\n\n\n\n<p>And then on top of that, for some organizations now it&#8217;s affecting their access to finance. So if I&#8217;m a pension fund or I want to invest in a large enterprise or a business, why would I invest in you, if you are not sustainable in 5, 10, 15 years time? They are now beginning to ask for those carbon reduction plans, sustainability report. What are you doing for your ESG as a condition of investment?</p>\n\n\n\n<p>[00:30:22] <strong>Nathan Wrigley:</strong> So the window of opportunity for ignoring this is fast closing?</p>\n\n\n\n<p>[00:30:25] <strong>Louise Towler:</strong> And why not get ahead of it? Why not be that agency that can help your clients with these challenges?</p>\n\n\n\n<p>[00:30:32] <strong>Nathan Wrigley:</strong> Although you described that there&#8217;s no badge necessarily for this. It really does feel that for the right client this is a conversation which will win you work. If you can prove that you are going to do this work now, like you said, who&#8217;s going to say no to a more green website? Would you like your website to be much more environmentally friendly than it could have been? Well, no, actually we&#8217;d like it to pollute more, please. That&#8217;s just not a conversation you&#8217;re going to get into.</p>\n\n\n\n<p>[00:30:56] <strong>Louise Towler:</strong> Exactly. Exactly.</p>\n\n\n\n<p>[00:30:58] <strong>Nathan Wrigley:</strong> That&#8217;s interesting. So the only piece that I can see in this conference where anything is mentioned about the environment is hosting. And even that, it&#8217;s probably I don&#8217;t know, one in fifty, one in a hundred who have that badge. Talk to us about that side. So obviously we build websites, we&#8217;ve got a computer, we know that it&#8217;s stored somewhere, but tell us about hosting, and what people are doing.</p>\n\n\n\n<p>[00:31:22] <strong>Louise Towler:</strong> Actually some of the hosting companies here are very green, but you have to consider the political climate. So if you are a hosting company based in Texas, in the US. And you are being told that you have to support big oil because that&#8217;s what runs Texas. You don&#8217;t talk about the fact that you are running your hosting data centers on green energy. So it&#8217;s not that they&#8217;re not. It&#8217;s just that they&#8217;re not, it&#8217;s not necessarily part of their marketing message at this point, because the political climate isn&#8217;t necessarily conducive to that.</p>\n\n\n\n<p>[00:31:55] <strong>Nathan Wrigley:</strong> So you are saying that the hosting industry broadly are doing a fairly good job of this?</p>\n\n\n\n<p>[00:32:00] <strong>Louise Towler:</strong> Well, some of them are, yeah. I know for a fact a lot of the Google Cloud hosting is green and a lot of the big, they&#8217;re using Google data centers.</p>\n\n\n\n<p>[00:32:09] <strong>Nathan Wrigley:</strong> That feels like one of the most grounded things that you can do. If you&#8217;re having a website, you can actually go out and look for green hosting.</p>\n\n\n\n<p>[00:32:16] <strong>Louise Towler:</strong> And the Green Software Foundation has a little URL. It&#8217;s a little tool. You can literally go and put in your domain name and it will tell you whether it&#8217;s running on a green hosting.</p>\n\n\n\n<p>[00:32:25] <strong>Nathan Wrigley:</strong> What is the Green Software Foundation?</p>\n\n\n\n<p>[00:32:27] <strong>Louise Towler:</strong> It&#8217;s a sort of organization that is talking about green software, green web, green all sorts of things. They&#8217;re doing some really interesting stuff. They work a lot with very large organizations. I think to be a member you have, like have to pay up 10,000 pounds or something. It&#8217;s like out of my league to be a member, but it doesn&#8217;t mean I can&#8217;t see what they&#8217;re doing and listen to what they&#8217;re doing.</p>\n\n\n\n<p>They&#8217;ve also got a really interesting free course that you can do on sustainable software development. And it gives you all the background and all the things you should be considering when you&#8217;re building software and websites basically, and the things that you can do to make them run better in a greener way.</p>\n\n\n\n<p>[00:33:09] <strong>Nathan Wrigley:</strong> If I wanted to make my website more SEOable, I&#8217;ve got a whole suite of tools available to me. And many of them will give me some sort of data saying, okay, this page is, you&#8217;ve done a good job here. Like a traffic light or something you, you know what I&#8217;m saying? </p>\n\n\n\n<p>[00:33:25] <strong>Louise Towler:</strong> Yep.</p>\n\n\n\n<p>[00:33:26] <strong>Nathan Wrigley:</strong> Are there tools similar to that, that we can use in WordPress?</p>\n\n\n\n<p>Maybe it&#8217;s some kind of extension to a browser where we can see what our browsing is doing on the internet. In other words, is there a plugin, something which will show us a dashboard saying, okay this page, based upon the hosting that you&#8217;ve told us you&#8217;re using is consuming or creating this much carbon debt.</p>\n\n\n\n<p>[00:33:51] <strong>Louise Towler:</strong> There&#8217;s individual tools at the moment that I am aware of. You can put in a URL and it will say, oh yes, your page is this many grams of CO2. Actually what we&#8217;ve done is something. We&#8217;ve been doing a thing. I did that thing of having a side project to the agency, and we&#8217;ve been building something for the past couple of years, and we&#8217;re about to launch a piece of software. It&#8217;s an extension to WordPress, which will actually, in the dashboard, show you a daily carbon footprint of your website based on daily visits and page views.</p>\n\n\n\n<p>[00:34:24] <strong>Nathan Wrigley:</strong> How is that working then? So presumably the daily page bit is fairly straightforward. This website has been consumed 25,000 times, we can make the connection there. But presumably it must be figuring out, okay, that page had a video on it. This one had nothing but text, and it&#8217;s based upon upon some hosting.</p>\n\n\n\n<p>[00:34:40] <strong>Louise Towler:</strong> So we&#8217;re basically measuring the page, a measure of the data or page weight for each page. And then we&#8217;re looking at the visitors to the pages as well.</p>\n\n\n\n<p>[00:34:50] <strong>Nathan Wrigley:</strong> And are you giving like a score out at the end?</p>\n\n\n\n<p>[00:34:52] <strong>Louise Towler:</strong> We&#8217;re not giving a score at the moment, but eventually when the software&#8217;s launched and there&#8217;s lots of people using it, we will be able to say, oh, actually, in comparison to other people using our software, you are in the top quarter, or bottom quartile or you are in the middle. So we can give some feedback. But more importantly, if you look at it and you use things like traffic, then you can start to see where you should be optimizing.</p>\n\n\n\n<p>[00:35:17] <strong>Nathan Wrigley:</strong> Okay. And is this tool going to give you helpful advice on how to optimize it?</p>\n\n\n\n<p>[00:35:22] <strong>Louise Towler:</strong> Yes, we&#8217;re building out a knowledge base as well.</p>\n\n\n\n<p>[00:35:23] <strong>Nathan Wrigley:</strong> I was going to say, it&#8217;s all very well saying this page is doing really badly, but, you know, tough luck.</p>\n\n\n\n<p>[00:35:27] <strong>Louise Towler:</strong> Yeah.</p>\n\n\n\n<p>[00:35:28] <strong>Nathan Wrigley:</strong> So, where will it point me? What are the sort of metrics that you&#8217;re going to be helping me with?</p>\n\n\n\n<p>[00:35:31] <strong>Louise Towler:</strong> We&#8217;ll be helping with all the basics. It&#8217;s actually about empowering the content editors. Because as website theme builders and as website developers and designers, we can build the most amazing AA accessible website that&#8217;s really lightweight and fast.</p>\n\n\n\n<p>And then a year later we could audit it and find, oh, content editors added, you know, 30 images and they didn&#8217;t realize they had to add alt text to each one. And they can have loaded that really large video and not realized that it needed a poster attribute to make sure that the page didn&#8217;t take a long time to load.</p>\n\n\n\n<p>So what we are trying to do is give that feedback to editors in the browser when they&#8217;re editing the site, in the backend of the admin. Because that continuous measurement, if they see a little spike, or they see that suddenly something&#8217;s changed, they can go in and fix it. Rather than end up just doing an annual check, or checking every so often and ending up with a list of defects to fix, basically.</p>\n\n\n\n<p>So the whole point is, it&#8217;s about designing out people making those unconscious mistakes in the first place. And making sure the website continues to be at the standard it should be at and potentially improves over time.</p>\n\n\n\n<p>[00:36:44] <strong>Nathan Wrigley:</strong> So slightly off piste a little bit. That&#8217;s lovely. I mean I would hope to be able to see that kind of data and it would be really useful to me as a website builder. What about by just general browsing the internet? Do you know if there&#8217;s any tool which can tell me, right at the end of today Nathan, you&#8217;ve been a poor citizen. Some kind of, I don&#8217;t know, a browser extension or something which tells me.</p>\n\n\n\n<p>[00:37:05] <strong>Louise Towler:</strong> I don&#8217;t know that. Nobody&#8217;s ever asked me that question, so I will have to take that away Nathan and I will have to come back to you, because I genuinely don&#8217;t know the answer to that.</p>\n\n\n\n<p>[00:37:13] <strong>Nathan Wrigley:</strong> I think that would be quite a useful thing to know. At the end of the year, Nathan, your internet use is the equivalent of a 20,000 mile flight or something that would be.</p>\n\n\n\n<p>[00:37:22] <strong>Louise Towler:</strong> You must be online a lot.</p>\n\n\n\n<p>[00:37:23] <strong>Nathan Wrigley:</strong> I really am. Yeah. Okay, when are you hoping to get this tool out?</p>\n\n\n\n<p>[00:37:28] <strong>Louise Towler:</strong> We are doing a soft launch, early adopter, by invitation to Indigo Tree clients mid-July.</p>\n\n\n\n<p>[00:37:33] <strong>Nathan Wrigley:</strong> Okay. So really soon.</p>\n\n\n\n<p>[00:37:35] <strong>Louise Towler:</strong> Yeah. And then from then on we&#8217;ll be building out new features and basically getting it to the point where we can launch it to people as a SaaS product.</p>\n\n\n\n<p>[00:37:45] <strong>Nathan Wrigley:</strong> So going to go beyond WordPress at some point?</p>\n\n\n\n<p>[00:37:47] <strong>Louise Towler:</strong> Couldn&#8217;t possibly say, but yes.</p>\n\n\n\n<p>[00:37:49] <strong>Nathan Wrigley:</strong> Maybe. Maybe, yeah.</p>\n\n\n\n<p>[00:37:50] <strong>Louise Towler:</strong> Well, it depends on the roadmap and it depends what interest we get. And for me it&#8217;s not just about the commercial side of, we to build something that&#8217;s obviously profitable and successful. It&#8217;s actually where can we make the biggest impact? How can we, with what we are doing, make sure that we get the biggest carbon reduction overall.</p>\n\n\n\n<p>And the great thing about when you&#8217;re measuring stuff is we can actually report on global stats that are sort of, you know, a thousand clients and cumulatively this month they have reduced their carbon footprint by this amount. You know, so it is going to be an interesting journey to see how we get on and where the biggest impact can be whilst being commercial as well.</p>\n\n\n\n<p>[00:38:26] <strong>Nathan Wrigley:</strong> Yeah. It really does sound interesting. Okay, so we&#8217;re going to have to wrap it up. We&#8217;re probably at the edge of the amount of time that we&#8217;ve got.</p>\n\n\n\n<p>Where would we go if we are curious about the things that you&#8217;ve talked about? So maybe that&#8217;s a link to your, the product that you&#8217;ve just mentioned. Maybe it&#8217;s just a more general set of resources. What are the two or three top places that you would send people?</p>\n\n\n\n<p>[00:38:45] <strong>Louise Towler:</strong> I&#8217;d definitely have a look at the Green Software Foundation. I would also go to, there&#8217;s a Slack channel in the WordPress. I think they&#8217;re just about to create a team in Core for sustainability. So I&#8217;d be going and talking to them.</p>\n\n\n\n<p>And then I would be keeping an eye on people like Wholegrain Digital. Tom and Vineeta talk about things a lot. Tom&#8217;s got a really great newsletter that you can subscribe to. So there&#8217;s lots of people talking about it, but I think it&#8217;s about figuring out where it fits with your particular clients. And some of our clients are very values based and will immediately go for this. Some people just need that more commercial argument as well.</p>\n\n\n\n<p>[00:39:26] <strong>Nathan Wrigley:</strong> Well, Louise, thank you for telling us all about your efforts regarding sustainability and the environment. It is a genuinely fascinating subject, and my prediction is that this conversation is only going to get louder and louder.</p>\n\n\n\n<p>[00:39:39] <strong>Louise Towler:</strong> I hope so.</p>\n\n\n\n<p>[00:39:39] <strong>Nathan Wrigley:</strong> As the years go on. Yeah, thank you for talking to me.</p>\n\n\n\n<p>[00:39:41] <strong>Louise Towler:</strong> You&#8217;re welcome. Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/louisetowler/\">Louise Towler</a>. She joined me at the recent WordCamp Europe in Athens to talk about websites and making them more sustainable.</p>\n\n\n\n<p>Louise is the founder of <a href=\"https://indigotree.co.uk/\">Indigo Tree</a>, a UK based agency with deep expertise in WordPress websites.</p>\n\n\n\n<p>She gave a presentation at WordCamp Europe entitled, Digital sustainability: The benefits for business and the environment in which she emphasised the impact websites can have on our planet. Her aim was to deliver practical tips for users and developers to help them make informed decisions.</p>\n\n\n\n<p>This presentation is the focus of today&#8217;s podcast, and we cover quite a lot of ground.</p>\n\n\n\n<p>Louise highlights the significant role which electricity plays in powering data centres and transmitting data to end devices. Even if data centres use renewable energy, there is still a need to address overall electricity consumption. She points out that the internet is the fourth largest polluter globally, surpassing the airline industry.</p>\n\n\n\n<p>We discuss how the continuous and widespread use of the internet has made it difficult to reduce its own impact, whilst still emphasising the importance of the steps we can take to make the internet more energy-efficient.&nbsp;</p>\n\n\n\n<p>She suggests ways that we can all make a difference right away; educating clients about the consequences of certain design choices, such as using large videos or autoplay features that require substantial data to load. Optimising videos, images, and other website elements, which makes it possible to reduce data consumption <em>and</em> improve performance.</p>\n\n\n\n<p>The conversation then explores other suggestions such as using modern image formats, using images as placeholders for videos, self-hosted fonts, and considering the carbon footprint of email communications.</p>\n\n\n\n<p>Louise acknowledges the challenges of discussing environmental concerns with clients whilst also explaining that we have to come up with ways to make clients understand that these decisions are beneficial to them as well. After all, an optimised website is one that is looked upon favourably by search engines. Whilst clients ultimately are the decision makers, informing them about the consequences of their choices can help them be more informed.</p>\n\n\n\n<p>Moving onto WordPress, we talk about the responsibility theme authors play. It’s a crucial role, helping users make sustainable choices. Her agency builds custom themes for clients, which allows them to have full control over design decisions.</p>\n\n\n\n<p>We get into the subject of how legislation is certainly coming, and so getting in early and understanding the implications of such legislation will help your own endeavours in the future.</p>\n\n\n\n<p>Towards the end of the podcast we chat about some of the tools which you can use to assess the impact that your websites have, including a tool which Louise and her team have been working on for the last few years.</p>\n\n\n\n<p>If you’re interested in how your sites can become more sustainable, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2023/session/digital-sustainability-the-benefits-for-business-and-the-environment/\">Louise WordCamp Europe presentation &#8211; Digital sustainability: The benefits for business and the environment</a></p>\n\n\n\n<p><a href=\"https://indigotree.co.uk/\">Indigo Tree website</a></p>\n\n\n\n<p><a href=\"https://perfmatters.io/\">Perf Matters plugin</a></p>\n\n\n\n<p><a href=\"https://www.gravityforms.com/\">Gravity Forms website</a></p>\n\n\n\n<p><a href=\"https://greensoftware.foundation/\">Green Software Foundation website</a></p>\n\n\n\n<p><a href=\"https://wordpress.slack.com/archives/C03JNV77Y57\">Sustainability Slack Channel</a></p>\n\n\n\n<p><a href=\"https://www.wholegraindigital.com/\">Wholegrain Digital website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Do The Woo Community: What the Client Thinks They Know\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75453\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/what-the-client-thinks-they-know/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"<p>Clients consider they have learned a lot through GPT or by Googling it. They assume they know what will work best for them.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/what-the-client-thinks-they-know/\">What the Client Thinks They Know</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2023 09:32:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Do The Woo Community: Productizing Your Agency Services with Shadi Manna and Jimmy Rosén\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75426\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://dothewoo.io/productizing-your-agency-services-with-shadi-manna-and-jimmy-rosen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"<p>Listen in on our Woo AgencyChat where Shadi and Jimmy talk about the journey of productizing your services.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/productizing-your-agency-services-with-shadi-manna-and-jimmy-rosen/\">Productizing Your Agency Services with Shadi Manna and Jimmy Rosén</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jul 2023 06:58:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: WordCamp Dhaka 2023 Cancelled Due to Concerns of Corporate Influence on Community Decision-Making\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/wordcamp-dhaka-2023-cancelled-due-to-concerns-of-corporate-influence-on-community-decision-making\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6529:\"<p>WordCamp Dhaka (Bangladesh) 2023 has been <a href=\"https://dhaka.wordcamp.org/2023/\">cancelled</a> by The WordPress Community Team due to concerns of corporate influence on the community decision-making process. The camp was scheduled for August 5, and organizers had already secured a venue and progressed on moving the camp forward. </p>\n\n\n\n<p>The Community Team <a href=\"https://dhaka.wordcamp.org/2023/\">published a statement</a> on the event&#8217;s website, which cited the interference of corporate interests: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The WordPress Community Team’s primary goal is to support and nurture the WordPress community by enabling organizers to create amazing events that celebrate WordPress, its community, and&nbsp;<a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/become-an-organizer/representing-wordpress/\">globally shared values</a>. The Community team cannot support the event if a WordCamp is not aligned with these values.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/meetup-program-basics/#the-five-good-faith-rules\">WordPress events benefit the WordPress community as a whole, not specific businesses or individuals</a>. The Community Team expects that WordCamps decisions should be guided by the community’s collective wisdom and not influenced by any one company’s interests. When companies attempt to exert influence on the planning process, the Community Team must step in to mediate. In this instance, we have decided to cancel WordCamp Dhaka 2023.</p>\n</blockquote>\n\n\n\n<p>The Community Team urged the Dhaka community to focus on collaborative organization, companies uplifting the community, and greater diversity in participation.</p>\n\n\n\n<p>In an equally vague <a href=\"https://make.wordpress.org/community/2023/07/03/incident-report-recent-cancelation-of-a-wordcamp/\">incident report</a> on WordPress.org, which doesn&#8217;t even identify the WordCamp that was cancelled, Community Team contributor Sam Suresh called it &#8220;an unfortunate but necessary decision.&#8221; He summarized the team&#8217;s reasons for the decision:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The decision to cancel the event was not a result of inadequate planning or insufficient effort on the part of the organizing team. Instead, there were observable actions from local community members to influence decisions that would benefit specific individuals or companies. When this influence did not immediately lead to their desired results, the individuals aimed to undermine the organizing process and event success. While the Community Team took steps to mediate, the inappropriate behavior and actions we saw necessitated the cancelation. This is a rare and extreme decision and underscores the severity of the situation.</p>\n</blockquote>\n\n\n\n<p>Suresh said the issues applied to the local meetup group as well, and that all co-organizers and event organizers were removed from their roles and required to repeat their orientation to gain access again. A community deputy and a mentor were also removed from their roles in the project and the companies involved in the infractions were banned from sponsoring WordPress events for a year.</p>\n\n\n\n<p>&#8220;In times of challenges like these, it is important to remember that anyone can organize WordPress events regardless of who they work for and that WordPress community events are for the benefit of everyone, not any one business or individual,&#8221; Suresh said. &#8220;As a community, <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/#our-expectations\">we will not tolerate harassment or influencing unacceptable behaviors</a>.&#8221;</p>\n\n\n\n<p>Shortly after publishing, several community members commented with objections to the level of secrecy around the issues at hand and the people and companies involved. The Community Team&#8217;s nebulous posts on the matter seem to have further scandalized the situation, instead of offering clarity and transparency.</p>\n\n\n\n<p>&#8220;This post definitely abides by the ongoing policy of not letting the community know who is being censured by the Community Services team, even in cases of egregious action,&#8221; WordPress marketing and meta contributor Sé Reed commented.</p>\n\n\n\n<p>&#8220;I’ve seen multiple cases of people filing harassment reports and various Code of Conduct violations, and that person/people have had various consequences, including being removed from organizing teams. However, those people then cite various reasons for leaving the team, often outright lying. But because of the secrecy around these cases, no one says otherwise and those people can and often do continue to operate in the community without any repercussions beyond secretly losing their &#8216;official&#8217; role(s).&#8221;</p>\n\n\n\n<p>Reed highlighted the damaging effects of the secrecy surrounding these incidents, most notably that explaining the situation often falls to those who filed the report, as the Community Team abdicates any further responsibility after validating the report.</p>\n\n\n\n<p>&#8220;This action is damaging to the community as a whole, as we do not have a full picture of who we are working with and we continue to unknowingly support and empower people who have not honored their community commitments,&#8221; Reed said.</p>\n\n\n\n<p>Not all participants in the discussion were in favor of The Community Team identifying the individuals involved, but in this situation they demand to know the companies that were banned from sponsoring WordPress events.</p>\n\n\n\n<p>&#8220;I’m on the fence about knowing peoples’ names here, but I think people definitely need to know the <strong>companies</strong> involved; actively trying to sabotage a WordPress WordCamp is a serious breach of trust for the community,&#8221; WebDevStudios Director of Engineering Mitch Cantor said. &#8220;Especially when they may turn around and then make money from that said community they tried to sabotage.&#8221;</p>\n\n\n\n<p>Dealing with these types of sensitive situations is not an enviable task, but the community, for whom these decisions are designed to serve, is calling for a greater level of transparency regarding those who act in ways that are not aligned with WordPress&#8217; globally shared values.</p>\n\n\n\n<p>&#8220;One way or the other, protecting folks who have violated the Community Code of Conduct is a policy that very clearly needs to be revisited,&#8221; Reed said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 19:11:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15340\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5894:\"<p>WordPress 6.3 Beta 3 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, it is recommended you evaluate Beta 3 on a test server and site. </p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a> in the coming weeks for further details. Also, save the date for a live product demo tentatively scheduled for Thursday, July 20, 2023 at 16:00 UTC (link TBD). This will be a great opportunity to join the WordPress community to celebrate the accomplishments of 6.3 and this final chapter of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 3 highlights</h2>\n\n\n\n<p>Thanks to the many WordPress beta testers, this release contains approximately 34 (Site Editor) and 40+ (Trac) updates since the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 release</a>. Nice work, team!</p>\n\n\n\n<p>Testers should note that the &#8220;Patterns Library&#8221; is <a href=\"https://github.com/WordPress/gutenberg/pull/52102\">now simply called <em>Patterns</em></a> in the UI. Additionally, pattern details now include a <a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status</a> and a <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">lock icon</a> is added for theme patterns.</p>\n\n\n\n<p>Browse the technical details for issues addressed since Beta 2 using these queries:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">GitHub commits for 6.3</a></li>\n\n\n\n<li>Closed <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=06%2F28%2F2023..07%2F03%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> since June 28</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test the new features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not.&nbsp;</p>\n\n\n\n<p>While testing the upgrade process is essential, trying out new features is too. Review the many <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a> and focus your testing efforts on those areas in particular.</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you&#8217;ve never tested a beta release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>Between the Beta 1 release and the final release candidate (RC), the <a href=\"https://make.wordpress.org/security/2023/06/28/doubling-the-bounties-for-wordpress-6-3-beta/\">monetary reward for reporting new, unreleased security vulnerabilities is double</a>. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 Beta 3</h2>\n\n\n\n<p>You can test WordPress 6.3 Beta 3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-beta3.zip\">Beta 3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br /><code>wp core update --version=6.3-beta3</code></li>\n</ul>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, which is about five weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 Haiku for You</h2>\n\n\n\n<p>Beta three, a peek<br />Summer here and winter there<br />A fourth in one week</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>@eidolonnight</em></a><em>, </em><a href=\"https://profiles.wordpress.org/davidbaumwald/\"><em>@davidbaumwald</em></a>, <a href=\"https://profiles.wordpress.org/priethor/\">@priethor</a>, and <a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a> for the Haiku.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 17:10:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Ultimate Member 2.6.7 Patches Privilege Escalation Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/ultimate-member-2-6-7-patches-privilege-escalation-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3293:\"<p>Authors of the Ultimate Member plugin have <a href=\"https://docs.ultimatemember.com/article/1866-security-incident-update-and-recommended-actions\">released version 2.6.7</a> with a patch for a privilege escalation vulnerability. Last week <a href=\"https://wptavern.com/hackers-actively-exploiting-unpatched-privilege-escalation-vulnerability-in-ultimate-member-plugin\">WPScan reported that Ultimate Member had still not fully patched the vulnerability</a> after multiple inadequate attempts. There was evidence that it was being actively exploited in the wild.</p>\n\n\n\n<p>Working through the complexities of this security issue, WPScan researcher Marc Montpas opened a <a href=\"https://core.trac.wordpress.org/ticket/58679#ticket\">ticket</a> on WordPress trac, identifying an issue with the meta key field in the usermeta table using accent insensitive collations:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Looking at the latest string of vulnerability issues that came up related to the Ultimate Member plugin I discovered that the usermeta table has an accent insensitive collation for the <code>meta_key</code> field. This results in queries for <code>wp_cãpăbilitiës</code> to return the actual <code>wp_capabilities</code> row! See <code>update_metadata()</code> function in wp-includes/meta.php</p>\n\n\n\n<p>Imagine the attack surface this brings. In fact, don&#8217;t imagine, just look at the recent attacks in the wild.</p>\n</blockquote>\n\n\n\n<p>This particular issue made it more difficult to fully patch the vulnerability in question. Ultimate Member released version 2.6.7 on July 1, 2023, which whitelists for metakeys the plugin stores while sending forms. The plugin&#8217;s security advisory details a few other changes that may affect third-party developers:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>2.6.7 also separates form settings data and submitted data and operates them in 2 different variables. </p>\n\n\n\n<p>[It] includes some significant changes to how forms submissions are handled. This may cause 3rd-party modifications to stop working. For Third-party developers, please update your customizations to support the new changes in the latest version</p>\n</blockquote>\n\n\n\n<p>Ultimate Member recommends users review and delete any unknown administrator accounts, reset all user passwords including the admin, enable SSL and backups, and send any advisories to site members and/or customers about the incident. The plugin&#8217;s developers are working on releasing a feature inside the plugin that will enable the website admin to reset passwords for all users, but it is still being finalized:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The reason for this is a site using our plugin may have been hacked or injected with malware that sniffs login inputs, because this vulnerability issue is prone to these attacks, we recommend to reset passwords after updating with a security patch. This is to ensure the best protection for your website user’s passwords.</p>\n</blockquote>\n\n\n\n<p>All Ultimate Member users should update to the latest available version, 2.6.7, which has the patch for the vulnerability. The plugin&#8217;s developers are awaiting more feedback from WPScan and are evaluating all their extensions to ensure they are secure. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 16:22:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.org blog: WP Briefing: Episode 59: A Polyglot’s WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/07/episode-59-a-polyglots-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30292:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 59th episode of the WordPress Briefing. Today she invites guest speaker Alex Kirk to discuss Polyglots&#8217; work to continue to help bring translation to WordPress. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Guests: <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a><br />Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a> and <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/\">Polyglots team</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/about/roadmap/\">Gutenberg Project roadmap</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/glotpress/\">GlotPress plugin</a></li>\n\n\n\n<li><a href=\"https://translate.wordpress.org/\">Translating WordPress</a> &#8211; Contribute to WordPress core, themes, and plugins by translating them into your language.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> &#8211; WordPress that runs entirely in your browser.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/08/translate-live-updates-to-the-translation-playground/\">Translate Live: Updates to the Translation Playground</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/handbook/about/roles-and-capabilities/\">Polyglots Roles and Capabilities</a> &#8211; Including the <a href=\"https://make.wordpress.org/polyglots/handbook/about/roles-and-capabilities/#general-translation-editor\">GTE</a> and <a href=\"https://make.wordpress.org/polyglots/handbook/about/roles-and-capabilities/#project-translation-editor\">PTE</a> roles.</li>\n\n\n\n<li><a href=\"https://href.li/?https://2023.wpcampus.org/\">WPCampus 2023</a> &#8211; A hybrid event, July 12th through the 14th, at Tulane University in New Orleans, Louisiana. Topics focus on the growth of higher education, accessibility, WordPress, and anyone who works in higher education.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a> &#8211; A cohort-based onboarding experience with guided courses and live workshops for those interested in contributing to the project but unsure where to begin.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15281\"></span>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:00:10]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:00:39]&nbsp;</strong></p>\n\n\n\n<p>I have with me Alex Kirk, who is a longtime WordPress contributor and who has been instrumental in recent innovations in the Polyglots&#8217; work. Phase four of the Gutenberg project is native multilingual support, and so I see this work that is being done as instrumental, not only for our global community but in support of what&#8217;s to come in that specific roadmap.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:00:59]&nbsp;</strong></p>\n\n\n\n<p>So without further ado, Alex Kirk, welcome to the WordPress Briefing.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:01:03]</strong></p>\n\n\n\n<p>Hello, how are you doing?&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:01:05]</strong></p>\n\n\n\n<p>I&#8217;m good. I&#8217;m good. Can you, let&#8217;s, because I bet that not a lot of people know who you are, can you first start by just telling me a bit about your work with WordPress, and then let us know what GlotPress is, for those of us who don&#8217;t know yet?&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:01:19]</strong></p>\n\n\n\n<p>All right. So, Automattic sponsors me to work in the WordPress project on the Meta team and on the Polyglots team. So I spent time on improving or helping improve the software that powers the translation on WordPress.org. But I also work on the meta team on things like Matrix and evaluating if it would be a good fit for WordPress to switch to Matrix for their chat system.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:01:46]</strong></p>\n\n\n\n<p>So a lot of really big projects that you work on, all of that kind of stuff that has no easy solutions anymore, is where you are right now. Huh?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:01:56]</strong></p>\n\n\n\n<p>Yeah, there&#8217;s no clear path, but it&#8217;s our mission to find it. So that&#8217;s part of what makes things interesting.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:02:05]</strong></p>\n\n\n\n<p>Cool. So for folks who don&#8217;t know too much about the Polyglots team or generally translating WordPress, the software, can you let us know a bit about what GlotPress is?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:02:16]</strong></p>\n\n\n\n<p>Right. So the translation system that powers WordPress.org is called GlotPress. It used to be a standalone software that was developed a couple of years ago, and it was transformed into a WordPress plugin at some point, and now powers the translation that happens on WordPress.org. So we translate WordPress core there from English to other languages, plugins, themes, block patterns, and it all happens through this software called GlotPress. There are a couple GlotPress installations around the world, but I think the WordPress.org one is one of the bigger ones.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:02:55]</strong></p>\n\n\n\n<p>Probably, WordPress.org is pretty, pretty massive. Also, I think it&#8217;s great that you said that GlotPress was created a couple of years ago, like that, that indicates to me that you&#8217;re working on a really different timescale than a lot of folks are in WordPress.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:03:10]</strong></p>\n\n\n\n<p>So Alex, tell me a little bit about what it takes to ship translated WordPress software. So, I mean, for people who don&#8217;t need translated WordPress, like obviously we don&#8217;t have a good idea of what it takes to make sure that WordPress is available in so many languages. So what goes into the work of making sure that that happens?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:03:32]</strong></p>\n\n\n\n<p>All right, so typically the WordPress software and plugins and themes are primarily created in English. And for it to be available in other languages, it needs to be translated. And for that to be able to happen, the programmers need to make the software translatable. Basically, they&#8217;re providing each English string for the translation software to be available to be transformed, so to speak, into another language and to what it&#8217;s being transformed to. This is what the translators do. So they go into the GlotPress software and see the list of texts that need to be translated and translate it to their language that they speak. Typically there is a process around this.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:03:32]</strong></p>\n\n\n\n<p>So, we&#8217;ve got people who have lots of experience in translation. And specifically in translating WordPress or WordPress plugins. And they&#8217;re kind of the, the people who help ensure good quality of translation. So anybody who&#8217;s working the WordPress project, so basically who has a WordPress.org account, can come in and address the translation. And that translation enters the system, so to speak, in a waiting state. And then somebody who we promoted to be a Translation Editor will come along and take a look at your translation and will approve it or will give you suggestions how to do the translation in a better way, or come up with maybe even a better translation.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:03]</strong></p>\n\n\n\n<p>You know, when you have like a small thing that&#8217;s just not right, like a missing full stop or something like that. They might just add it for you. And well, as soon as the plugin or software is translated to a certain level of translations those translations will be shipped out to the WordPress installs.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:20]</strong></p>\n\n\n\n<p>So, for example, for a plugin, you would reach 90% of translated strings. Those translations will then be basically packed up into zip file, a language pack and delivered to each WordPress so that you can have the translations available there.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:05:35]</strong></p>\n\n\n\n<p>And is 90% the threshold for plugins only, or is that also the threshold for like themes and the CMS itself?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:34]</strong></p>\n\n\n\n<p>Well. We strive for 100%, I would say.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:05:47]</strong></p>\n\n\n\n<p>Good. <em>( laughs )</em></p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:05:48]</strong></p>\n\n\n\n<p>And, 90% more of a motivational point. To be actually honest, I&#8217;m not sure if the threshold is 90% for every project or even if it&#8217;s actually 90%. It&#8217;s different between different GlotPress installations and it&#8217;s basically something that is made as a setting that can be changed. There&#8217;s, it&#8217;s an arbitrary number. Typically you&#8217;d actually want to make sure that the most important strings are translated first. So the ones like, if you look at the whole picture, software usually consists of many parts, many of whom are not encountered by people on a regular basis. For example, error messages that could be like obscure error messages, and you could argue that those might be not as important. Or even sometimes you could even say like, do they need to be translated? Because if you encounter an error message and you search the internet, wouldn&#8217;t you probably want everybody to search for the English one to find the solution? But that set-aside, it&#8217;s important to have like the headline of the plugin or like the most important strings translated, and typically translating those most important strings will take you to a pretty high percentage so that we can then say it&#8217;s good enough to be shipped.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:07:02]</strong></p>\n\n\n\n<p>Gotcha. I see, I see. Okay. Well, we talked a bit earlier about GlotPress&#8217;s timeline. It has been around for a bit, I know. But with that kind of in mind, have there been any notable changes to GlotPress recently?&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:07:19]</strong></p>\n\n\n\n<p>Yeah, so I think for GlotPress there&#8217;s been a bit of an up and down over time in terms of engagement and progress on the software. But in, in the recent year, I think we&#8217;ve added a couple of things that have been very helpful for translators. So one of them was adding the commenting functionality, so yeah.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:07:35]</strong></p>\n\n\n\n<p>Super helpful. Shocked it wasn&#8217;t there before. Sorry, translators. Sorry, all of our polyglots.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:07:40]</strong></p>\n\n\n\n<p>Well, it can be like there was when GlotPress was created there, there is like the, a big part of GlotPress are these states, like the waiting state when you enter translation, and then there&#8217;s approved state, which basically a translation we say it&#8217;s set to current, and there&#8217;s all sorts of process around it. So if the software is updated or translation might get fuzzy. But also like, if somebody submits a translation that doesn&#8217;t fully conform to what&#8217;s the translation editors, or like what the standards of the translation community have been set to, then you would have to need to reject it.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:08:16]</strong></p>\n\n\n\n<p>And that has been something that we felt wasn&#8217;t a very good and enticing way of telling people like, we appreciate your work. It wasn&#8217;t just quite right, but it&#8217;s more of a rejection. So this is how we came up with this like, let&#8217;s give people the option to say what was wrong and give them a chance to try again without making them feel rejected.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:08:38]</strong></p>\n\n\n\n<p>Yeah. Sort of a &#8220;No, but&#8230;&#8221; as opposed to a, just refusal to receive it.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:08:45]</strong></p>\n\n\n\n<p>And other things that we&#8217;ve worked on is, like, with the recent search of AI, like getting help from AI on translation and also on reviews. So, there&#8217;s some interesting things that you can do with AI in that regard; that one important aspect of translations, it&#8217;s also that we&#8217;ve got glossaries for each language where people, basically the translation community, identifies certain words they want to translate them the same way every time.&nbsp;And with the AI, you can basically add to the prompt, like, please translate those words to those translations when you give me a translation for that. And as it can change over time, you can always adapt this to the prompt, and that has been proven quite helpful.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:09:25]</strong></p>\n\n\n\n<p>That is great. That&#8217;s one of those things I know that AI has been like a really popular thing to talk about. And AI, specifically for translations, I think has caused some concern that maybe we&#8217;ll just like translate it all and hope that computers get it right when we know pretty certainly that computers don&#8217;t always get the translations right. But that&#8217;s not what you&#8217;re talking about, right? What you&#8217;re suggesting is that AI would suggest what could be translated and what it could be translated to, and then human beings have to confirm that that&#8217;s correct, right?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:09:59]</strong></p>\n\n\n\n<p>That&#8217;s exactly it. So basically, we give suggestions to the translators, and then they can modify a translation before they press save. It&#8217;s more of a, like supporting them in getting the translations, like looking up words more quickly and all of that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:10:16]</strong></p>\n\n\n\n<p>That&#8217;s wonderful. So is that the major sort of next step that is coming for GlotPress, or are there other things that we should keep an eye out for in that software?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:10:27]</strong></p>\n\n\n\n<p>So one direction that we&#8217;ve been taking GlotPress is basically making use of the fact that GlotPress is WordPress plugin now. And you know, typically, you would just use a GlotPress install. So on WordPress.Org, there&#8217;s like GlotPress installed, there&#8217;s translation projects created, something that we call &#8220;translation sets&#8221;. So for languages, you want to translate it to, it&#8217;s all pre-configured, and if you would install GlotPress to plugin on your own WordPress, it would be empty and not very useful. So what we&#8217;ve added is a way for you to basically be able to translate the plugins and themes that you&#8217;ve got installed in your WordPress into the language that you&#8217;re interested in.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:11:07]</strong></p>\n\n\n\n<p>So you might have a non-English website that you want to use certain plugins with, and they might not be fully translated at this point, so obviously, you could go to WordPress.org and help translate them, and that&#8217;s the way to, that&#8217;s preferred. But you could also now go install GlotPress on your own website and translate there. And then you have the translations there right when you enter them. And you can then contribute those translations back to WordPress.org.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:11:35]</strong></p>\n\n\n\n<p>So that&#8217;s with local GlotPress?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:11:37]</strong></p>\n\n\n\n<p>That&#8217;s something that we call local GlotPress. And you know, since we then have all these translations in the local database, it means we can do even more with those translations. So typically, language packs would be delivered to WordPress, but with local GlotPress, you&#8217;ve got like all the GlotPress software there.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:11:56]</strong></p>\n\n\n\n<p>So we can do things like inline translation. So, on your own WordPress and wp-admin, for example, we can highlight all the strings that can be translated, and those strings just have to right-click them and enter your translation, and that way, you can basically go about and translate the whole ui, seeing your progress, as you&#8217;re making, basically turning the screen from red to green.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:12:20]</strong></p>\n\n\n\n<p>Yeah. Yeah. So that&#8217;s something now that you can do in your local WordPress installation.&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:12:26]</strong></p>\n\n\n\n<p>Basically, it&#8217;s completely independent of WordPress.org. We would ask you to contribute the translations back when you have them, but being independent also allows you to translate like premium plugins, which could not be hosted on WordPress.org or doing something like that we call like hyper-local translation. So, for example, I speak Austrian German natively, but even inside Austria, we&#8217;ve got different dialects or like special words that we use. And if I wanted to create a website that&#8217;s targeted at the Viennese market, for example, I might want to use those specific terms. And this is something I would have to argue for those translations to be accepted on WordPress.org because it&#8217;s a, it&#8217;s like a very targeted market. But if I have a local GlotPress, I can do those translations there.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:13:11]</strong></p>\n\n\n\n<p>That seems awfully beneficial, especially as dialects. I&#8217;ve been having these conversations. I have, in my extended family, many children, and they are all learning languages and one of them has been having kind of thoughts about, like, dialects and how dialects are almost another language. And if so, like how do you know what everybody&#8217;s saying when you&#8217;re speaking all the same thing, but it&#8217;s kind of a little bit it sounds a little bit different.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:13:37]</strong></p>\n\n\n\n<p>That&#8217;s certainly a thing in the US, the distinct dialects across our country. And so I imagine that that&#8217;s gonna be a really beneficial sort of implementation for countries that have a lot of different regional variations and certainly smaller countries that have technically the same language as somebody else, but a lot of regional differences, regional specific things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:14:01]</strong></p>\n\n\n\n<p>Is that the same or different as the live translations, Translate Live, that we talked about at the WordCamp Europe a couple weeks back?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:14:12]</strong></p>\n\n\n\n<p>Right. So, Translate Live is kind of the next step after local GlotPress. It&#8217;s like this happy marriage between the WordPress Playground and local GlotPress. So the WordPress Playground is also something that has come up a lot. It&#8217;s basically a way for you to run WordPress inside a browser window, so in JavaScript. And at first, it seems like mildly interesting, I would say. But when you combine it with other things like local GlotPress, it can lead to really interesting opportunities. So with inline translation, for example, on WordPress.org, you would typically find for every plugin, the UI would look the same. You would have a table of strings, and all that makes you realize you&#8217;re translating this certain plugin is that in the header of the page, it says this name of the plugin, but other than that, it can look really all the same.&nbsp;</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:15:07]</strong></p>\n\n\n\n<p>And now, with WordPress Playground, you can put up a WordPress and run this plugin inside that Playground. And now, if you add local GlotPress to the picture, you can also do the inline translation of that plugin inside the WordPress Playground. So you&#8217;ve got inline translation. We add the glossary so they do make sure that you translate things the same way that they&#8217;re expected, and you don&#8217;t have to install the plugin.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:15:33]</strong></p>\n\n\n\n<p>And still, you can see what the translations will look like. You can see the strings next to each other, and what I think is most important, you will start with the strings that you see first, which are the most important ones. When you&#8217;re in the table view, those strings might be somewhere buried in the middle, and yeah, it&#8217;s really hard to see progress if you start with kind of obscure error messages, for example, versus just starting with the things that you see first.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:16:02]</strong></p>\n\n\n\n<p>Yeah. So, moving translations away from table-based translations where you kind of have to know what you&#8217;re looking for. So the Translate Live, along with local GlotPress, along with WP Playground, is going to make it so that it&#8217;s easier to see visually what needs to be translated, where, what&#8217;s most valuable to translate for your mid users and your end users, basically.</p>\n\n\n\n<p>Yeah?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:16:30]</strong></p>\n\n\n\n<p>That, and also like for plug-in authors, it can be really good to see, you know, you can switch the languages in the Playground to another language, and you can quickly see like what&#8217;s the state of the translation in this language or in that language. And even things like, you know, Arabic as an RTL language rights to left language. The sidebar will change to the right, and you can also just switch language and see like, what&#8217;s my plugin like in this environment. I mean, this is not technically something that&#8217;s related to local GlotPress, but in this translation live ui, it&#8217;s very easy to change languages and see your plugin in another language.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:17:06]</strong></p>\n\n\n\n<p>I mean, it&#8217;s not specifically related to, to Translations Live, but also, I think that if we&#8217;re saying that WordPress not necessarily is going to lead the way with translations and native multilingual support in our CMS because, of course, it&#8217;s still a little bit far out on our roadmap. We certainly have an opportunity to have the best implementation of that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:17:27]</strong></p>\n\n\n\n<p>And even if like that specific use case that you&#8217;re talking about isn&#8217;t related directly to what it is that you are working on for Polyglots and inside GlotPress and all of that, I do see that having more streamlined, more easy to see and access opportunities to like test the way that our software looks across varying environments, especially those that change it substantially from what we typically work in day-to-day for any individual developer or any individual WordPress site implementer.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:18:00</strong>]</p>\n\n\n\n<p>Like, I think that that is a big step forward for all of us and certainly for anyone who is having to use WordPress as not a native English speaker. And so you say it&#8217;s not related, but it still is a big, a big benefit for WordPress overall, I think, to have this kind of work happening so that we can have those benefits to the folks who are using our software.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:18:22]</strong></p>\n\n\n\n<p>So there were a couple of different things that you mentioned over the course of our conversation. We&#8217;re gonna put some links to the show notes for all of those. But one thing that you mentioned that just kind of went by, and we never really had an opportunity to talk about it. You talked about the, I think it was GTEs, Global Translation Editors, the folks that are like approved as final approvers of translations. If there is someone who&#8217;s listening to this podcast who wants to become a GTE someday, where would they go to do that?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:18:54]</strong></p>\n\n\n\n<p>So the path to GTE is a PTE.&nbsp;<em>( laughs )</em></p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:18:59]</strong></p>\n\n\n\n<p>So, we&#8217;ve got different levels of translation editors. Basically, you start, you could say you start off as a translator, and this is how you can kind of show that you can do good translations or that you&#8217;re very firm in your language. And this might make you be noticed in the community.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:19:16]</strong></p>\n\n\n\n<p>So we&#8217;re always looking for people who like to help with translations. And you might be then promoted to be a Project Translation Editor. Basically, it means that for a single language in a project, you&#8217;ll be able to approve translations. So, you&#8217;ll be the one who says, like, this translation is a good one and this conforms to the to the rules that we have stated as a translation community.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:19:42]</strong></p>\n\n\n\n<p>And further down the path then is the GTE, where you basically are allowed to approve translations across any project on translate.WordPress.org in your language. And that&#8217;s, usually you&#8217;ll be in, in that position with other GTEs.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:20:04]</strong></p>\n\n\n\n<p>So there is, like, in each community, there is like, we&#8217;re people based. We talk about what might be a good translation. We talk to each other, try to find rules that maybe prevent common mistranslations, or set the standards for how we want the software to be translated. And this is something where you get a voice as a translator, but as a GTE, you get into a position where you can actually make the changes or find consensus on how the software should be translated in your language.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:20:35]</strong></p>\n\n\n\n<p>And if folks are not familiar where the Polyglots team works and meets, where would they find you all?</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:20:41]</strong></p>\n\n\n\n<p>At make.WordPress.org/polyglots.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:20:45]</strong></p>\n\n\n\n<p>Perfect. Alex, this has been such a fascinating conversation. Thank you so much for joining me today.</p>\n\n\n\n<p><strong>[Alex Kirk&nbsp; 00:20:50]</strong></p>\n\n\n\n<p>Thank you very much.&nbsp;</p>\n\n\n\n<p><em>( Intermission music )</em></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:20:59]</strong></p>\n\n\n\n<p>So that brings us now to our small list of big things. First, WP Campus 2023 is taking place July 12th through the 14th. That&#8217;s a nonprofit three-day conference with topics that focus on the growth of higher education, accessibility, WordPress, and anyone who works in higher education.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:17]</strong></p>\n\n\n\n<p>It&#8217;s a hybrid event. There is an in-person component on the beautiful campus of Tulane University in New Orleans, Louisiana. I&#8217;ll add information about that in our show notes for anyone who would like to join in person or online.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:32]</strong></p>\n\n\n\n<p>The second thing is that the mentorship program pilot that I have been talking about a little bit over the last few months has been formally launched.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:39]</strong></p>\n\n\n\n<p>If you are interested in contributing more to the project but not sure where to begin, take a look at this comprehensive onboarding experience. It&#8217;s cohort-based. It has some personalized one-to-one mentorship. There are guided courses, live workshops, all of that. So read more about it in our show notes and sign up for one-on-one team mentorship.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:21:59]</strong></p>\n\n\n\n<p>And then, finally, Matt mentioned at WordCamp Europe an idea that he had been thinking of for some time a Make team dashboard that would sort of help define team metrics and help identify for individual contributors what should indicate team health and where they can find the most impactful projects to work on.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:22:20]</strong></p>\n\n\n\n<p>A post has since been published on make.WordPress.org/meta calling for additional feedback on that idea, so that we have an understanding of what this could be, how the dashboard can kind of come to be. And so stop by and add your thoughts there in the comments.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:22:38]</strong></p>\n\n\n\n<p>And that, my friends, is your small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy&nbsp; 00:22:42]</strong></p>\n\n\n\n<p>Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><em>( Outro music )</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Do The Woo Community: Opportunities on Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/opportunities-on-do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"<p>There are many ways to be a guest or host on the podcast. Or maybe you have an idea you would like to pitch.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/opportunities-on-do-the-woo/\">Opportunities on Do the Woo</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2023 08:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Gutenberg Times: Extending Gutenberg and the block editor, testing WordPress 6.3 – Weekend Edition 259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24561\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://gutenbergtimes.com/extending-gutenberg-and-the-block-editor-testing-wordpress-6-3-weekend-edition-259/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14380:\"<p>Howdy, </p>\n\n\n\n<p>I am sending this while traveling back from WordCamp Leipzig, where I had great conversations with people from the German WordPress community. I published a few photos on Twitter: <a href=\"https://twitter.com/bph/status/1675157669479366657\">here</a>, <a href=\"https://twitter.com/bph/status/1675123509117288448\">here</a>, <a href=\"https://twitter.com/bph/status/1675106732823965696\">here</a>, and on <a href=\"https://www.linkedin.com/feed/update/urn:li:activity:7080834770032586754/\">LinkedIN</a>. Language switching is as difficult as context switching. </p>\n\n\n\n<p>WordPress 6.3 Beta 1 is released, as well as Gutenberg 16.1. More below. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">WordPress 6.3 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-16-1\">Gutenberg 16.1 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>If you haven&#8217;t yet, it&#8217;s time to reseaver your seat! for <a href=\"https://us02web.zoom.us/webinar/register/7516851799317/WN_AFgYtmyaRviAY3b2oGP2pg\">next week&#8217;s Gutenberg Live Q &amp; A on July 6th, 2023, at 17:00 UTC</a> </strong></p>\n\n\n\n<p class=\"has-accent-color has-text-color has-large-font-size\"><strong>Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels.</strong></p>\n\n\n\n<p>Learn how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base in this Case Study of GiveWP 3.0 with Jason Adams, Director of Development, Jon Waldstein, Lead Developer of GiveWP and co-host Lena Morita, JavaScript Developer on the Components team. </p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7516851799317/WN_AFgYtmyaRviAY3b2oGP2pg\"><img /></a>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">WordPress 6.3 </h3>\n\n\n\n<p>On Tuesday, <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a> was released, after Beta 1 wasn&#8217;t quite finished the day before. The release team is also preparing a Walk-through for later this month, to introduced many of the new features coming to a WordPress instance near you on August 8, 2023. </p>\n\n\n\n<p>Please, <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">help test WordPress 6.3</a>, and report issue you encounter. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-gutenberg-16-1\">Gutenberg 16.1 </h3>\n\n\n\n<p>Gutenberg 16.1 was released led by Isabel Brison and Ramon Dodd. In their release post, <a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">What’s new in Gutenberg 16.1? (29 June)</a>, they highlight the following functionality: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#your-templates-and-patterns-your-library\">Your templates and patterns, your library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#create-your-site-without-distraction\">Create your site without distraction</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#text-blocks-now-with-footnotes\">Text blocks: now with footnotes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#achieve-more-with-the-site-editor-sidebar\">Achieve more with the Site editor sidebar</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>It was great fun to catch up with Tammie Lister as my guest on the Gutenberg Changelog. I hope you also have fun listening to us discussing the milelong Changelog for this Gutenberg release. <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/\">The episode and the show notes are already available</a>. The transcript is still in the works.</p>\n\n\n\n<img />To book cases, two developers having fun and a podcast episode \n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/\">Gutenberg Changelog #85 – Gutenberg 16.1, WordPress 6.3</a> with special guest, Tammie Lister and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p><strong>Sarah Gooding</strong> also reported on the Gutenberg 16.1 in her article: <strong><a href=\"https://wptavern.com/gutenberg-16-1-introduces-pattern-creation-and-library-adds-distraction-free-mode-to-site-editor\">Gutenberg 16.1 Introduces Pattern Creation and Library, Adds Distraction Free&nbsp;Mode to Site Editor</a>, </strong>highlighting additional functionality found in this mamooth release.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest video, <a href=\"https://www.youtube.com/watch?v=s1L28GuA-y0\"><strong>Unlocking the Power of Navigation in WORDPRESS 6.3: What YOU Need to Know</strong></a>, <strong>Dave Smith</strong>, JavaScript developer at Automattic and core contributor, walked us through the updates to the Navigation handling in the Site Editor. It helped me wrap my head around all the different aspects of creating mulitple menus, style them and add them to templates and template parts in the site editor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Anne McCarthy and Emily Clark will co-host a <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\"><strong>Hallway Hangout to discussion WordPress 6.3 performance improvement</strong></a> on July 27, 2023 at 15:00 UTC to discuss WordPress 6.3 performance improvements led by performance reps Emily Clark and Felix Arnzt and also look ahead to WordPress 6.4. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Mike McAlister</strong> advocates for <a href=\"https://olliewp.com/dont-call-it-gutenberg-anymore/\"><strong>Don’t call it Gutenberg anymore (unless you actually mean to)</strong></a>. &#8220;<strong>it’s time to drop the Gutenberg vocabulary</strong>&nbsp;from our day to day usage, unless we’re&nbsp;<em>actually</em>&nbsp;talking about the Gutenberg project or development plugin.&#8221; he wrote. In the post he gives a quick overview of the history of Gutenberg development and how the block editor made it into the WordPress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor </strong>published a new Pattern in the directory on WordPress.org: <a href=\"https://wordpress.org/patterns/pattern/two-column-matted-gallery-images/\"><strong>Two Column, Matted Gallery Images</strong></a>. &#8220;I really want to keep pushing whats possible with all this new design tooling in WordPress.&#8221; Tabor <a href=\"https://twitter.com/richard_tabor/status/1674877679084994561\">tweeted.</a> With WordPress 6.3 you will have a way to create patterns for your site via the site editor. It used the same interface that allows you to create reusable blocks, now called &#8220;synched patterns&#8221;. </p>\n\n\n\n<img />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>In his, <strong>Benjamín Pérez Sout</strong> at Yotako,vannounces the new plugin release that allows users to <a href=\"https://blog.yotako.io/new-release-figma-adobexd-editon-as-gutenberg-blocks/\"><strong> Edit your Figma &amp; Adobe XD designs as WordPress Gutenberg blocks</strong></a>. The toolset of Yotaku provides some amazing synergies between AI and various design tools to Gutenberg Blocks. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher continued his series <em>Creating a block theme for developers</em> with <a href=\"https://www.twitch.tv/videos/1846930916\">Part 4</a> and <a href=\"https://www.twitch.tv/videos/1858860550\">Part 5 </a></strong>on Twitch. If you want to catch up on Parts 1 through 3, they are available on <a href=\"https://www.youtube.com/ryanwelchercodes\"><strong>Welcher&#8217;s YouTube Channel</strong></a></p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>The recording of this week&#8217;s <a href=\"https://wordpress.tv/2023/06/30/developer-hours-exploring-editor-extensibility/\"><strong>Developer Hours: Exploring Editor Extensibility</strong></a> is now online with <strong>Michael Burridge</strong>, <strong>Nick Diego</strong>, and <strong>Ryan Welcher</strong> giving demos on various ways developer can already extend blocks and the editor experience. They also shared lots of resources and examples. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Igor Benic</strong> explained in his blog post <a href=\"https://www.ibenic.com/how-to-programmatically-add-a-block-in-the-wordpress-block-editor/\"><strong>How to Programmatically add a block in the WordPress Block Editor</strong></a>. &#8220;When working with custom blocks or custom solutions to enhance the WordPress Block Editor, you might need to have a way to add blocks programmatically to the editor.&#8221; he wrote and showed how to use &#8211; <code>wp.blocks.createBlock</code> &#8211;<code> wp.data.dispatch(\'core/block-editor\').insertBlocks</code> to accomplish the task. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Working with Blocks also means getting data via the Rest API. The team of <em>Learn WordPress </em>just published the new course on <a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\"><strong>Introduction to developing with the WordPress REST API</strong></a>. &#8220;This course presents a developer-oriented introduction to using and developing with the WP REST API. If you want to learn to use the WP REST API to power your next site build, plugin, or theme, or you just want to understand how it works, then this course is for you.&#8221; they wrote. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Train Station at Leipzig, Germany. Photo by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Jul 2023 06:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Gutenberg Times: Gutenberg Changelog #85 – Gutenberg 16.1, WordPress 6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=24618\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63883:\"<p>Tammie Lister and Birgit Pauli-Haack discuss Gutenberg 16.1 and WordPress 6.3 and what’s coming to 6.3<br /></p>\n\n\n\n<p>Add a summary/excerpt here</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><a href=\"https://www.hostinger.com/blog/tammie-lister-podcast\">Podcast With Tammie Lister: How Gutenberg Evolves and the Future of WordPress</a> with Emma Young at Hostinger</p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=X8Op-q_8s6M\">Creating Gutenberg &#8211; Live Q &amp; A w/ leads Tammie Lister, Joen Asmussen and Matias Ventura</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Upcoming Live Q &amp; As</h2>\n\n\n\n<p>July 6th, 2023 &#8211; 17:00 UTC <strong><a href=\"https://us02web.zoom.us/webinar/register/9616879430415/WN_AFgYtmyaRviAY3b2oGP2pg\">Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels</a></strong></p>\n\n\n\n<p>July 21, 2023-17:00 UTC <a href=\"https://us02web.zoom.us/webinar/register/7516879458017/WN_lqwBBSkSR1Wcdf8BUr5udQ\"><strong>Live Q &amp; A with designers and developers for WordPress VIP. </strong></a>They created a bridge between Figma Design themes and the theme.json file for classic and block themes</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg 16.1</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">What’s new in Gutenberg 16.1? (29 June)</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/gutenberg-16-1-introduces-pattern-creation-and-library-adds-distraction-free-mode-to-site-editor\">Gutenberg 16.1 Introduces Pattern Creation and Library, Adds Distraction Free&nbsp;Mode to Site Editor</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Interactivity API</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></p>\n\n\n\n<p>WordPress.TV: <a href=\"https://wordpress.tv/2023/04/18/developer-hours-introduction-to-the-interactivity-api/\">Developer Hours: Introduction to the Interactivity API</a></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So hello and welcome to our 85th episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about Gutenberg 6.1, WordPress 6.3 and that&#8217;s pretty much it. We have a full program alone with that. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and full-time core contributor for WordPress open source project sponsored by Automattic. And I&#8217;m so happy that Tammie Lister joins me today. She&#8217;s one of the Gutenberg design leads of phase one and design lead of WordPress 6.3 release squad and will be the editor tech co-lead on the all underrepresented gender squad for 6.4. In her day job Tammie works at the global agency Inpsyde from Germany as a developer. Good afternoon, Tammie. So happy to see you again. Thank you so much for making the time to be on the show. How are you?</p>\n\n\n\n<p><em>Tammie Lister</em>: I am great. Thank you so much for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, it&#8217;s so wonderful. And for our longtime listeners, you are no stranger. You&#8217;ve been on the Gutenberg Live Q&amp;A few years ago, and you were part of the last year&#8217;s developer hours, and it&#8217;s actually the first time that you&#8217;re on the podcast. How did that happen? For those of you listening for the first time, tell me a little bit about your WordPress work and what you&#8217;re doing now.</p>\n\n\n\n<p><em>Tammie Lister</em>: So my WordPress journey has been a long one and an awesome one. Like a lot of people, I started out by blogging and poking around themes and then I worked for a long time on the problems with themes, went via core through BuddyPress and then for a long time I worked as creating themes and working through that. And that&#8217;s where I started really my contribution journey through the theme review team and a little bit in core. And then Gutenberg, I guess it was my adventure by Gutenberg. The seed of Gutenberg is rooted in a lot of people from the theming background. It&#8217;s one of those not so hidden facts about Gutenberg, that a lot of people who worked on it had that background as well. And I&#8217;ve been really lucky since I worked on that project, to have quite an adventure working in various roles from design.</p>\n\n\n\n<p>And at the moment, I&#8217;m really lucky to be balancing back my developer skills. I&#8217;ve always done both, but at the moment I&#8217;m really focusing on how can I raise back up those skills, and I&#8217;m really lucky to be doing that in an agency role. So I am now getting to work with this amazing thing that we&#8217;ve created in the editor and getting to implement it within the agency at a development level so that I&#8217;m having all sorts of fun now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I can imagine that. That&#8217;s awesome. Well, thank you so much and yes, so you will have opinions about the extensibility of Gutenberg, which is one of the top…</p>\n\n\n\n<p><em>Tammie Lister</em>: Only a few.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That will come or that has been in the background or in the other current of all the new features, where&#8217;s the extensibility or how can we extend this?&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Announcements</strong></h3>\n\n\n\n<p>So before we dive into the recent releases, I want to tell you dear listeners all about the two live Q&amp;As that are coming up in July. So next week, we have on July 6, 2023 at 17:00 UTC and I&#8217;m not going to convert this to any other time right now. Time zones are the bane of my existence at the moment. So we have the topic, leveraging Gutenberg&#8217;s architecture to take plugin development to new levels, and we learn about how Gutenberg components and scripts can be used outside the block editor to revamp a plugins code base.</p>\n\n\n\n<p>So this is a case study of GiveWP 3.0, how that&#8217;s come about and we will have a guest, Jason Adams, who&#8217;s the director of development and Jon Waldstein, who&#8217;s the lead developer on the show. And my co-host will be Lena Morita who is a JavaScript developer on the components team. So she has some really geeky questions for the two and she&#8217;s quite excited about it, and I&#8217;m really looking forward to it because I find it fascinating when developers discover all the ways to use existing components and script to build on top of Gutenberg. And it saves so much development time and it opens up new synergies between the core and the added functionality in a plugin.</p>\n\n\n\n<p>So if you&#8217;re interested to dive in, the next one, two weeks later on July 21st, also at 17:00 UTC, we will hold the next live Q&amp;A with designers and developers of WordPress VIP, and they created a bridge plugin between Figma design themes and the theme JSON file for the classic and block themes. And it&#8217;s a fascinating way to keep faithful to the existing design systems and start spinning up new sites that mirror that design system without a whole lot of friction in between us. My co-host will be Joni Halabe from the web team at Georgetown University, also a very interesting live Q&amp;A. I&#8217;m really happy that we&#8217;re putting it together.</p>\n\n\n\n<p>The last one, you have to just subscribe to the newsletter so you get early access to it, newsletter at the Gutenberg Times and should you listen to this episode, I know a lot of people binge listen to it. If you listen to this episode after July 22nd, check out the Gutenberg Times YouTube channel for the recordings of that. We always record them, we have them transcribed, we have a post on the Gutenberg Times with the resources shared and all that. So even if you miss it, but the live Q&amp;A is really interesting because all of a sudden from the demos that are there, there comes these very quick questions from the audience and I really like having that a live show. So that&#8217;s that.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released &#8211; WordPress 6.3</strong></h3>\n\n\n\n<p>We are coming to the what&#8217;s released section and we come to what happened last night. So today, we are recording it on Thursday, June 28th and this morning in I think 1:30, WordPress 6.3 beta two was released. And were you up at that time?</p>\n\n\n\n<p><em>Tammie Lister</em>: No, I got up as far as about just hitting 11:00 UK time at night and I could see it wasn&#8217;t going to be the 11:00, so I left the amazing people that were doing and I&#8217;d kept going that far, and I bowed out and got some sleep because it was the second night running.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, there was a second shift coming in from Australia.</p>\n\n\n\n<p><em>Tammie Lister</em>: Which is amazing. That&#8217;s part of the global project. We all get to open doors and close doors after each other, leave post-it notes virtually up for each other. There was a lot of that going on for the past two days and I think that&#8217;s the important thing. It&#8217;s been two days we&#8217;ve been working to get this out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, the make blog has one was the delay for one day and then also the explanation why it&#8217;s now called beta two instead of beta one.</p>\n\n\n\n<p><em>Tammie Lister</em>: Systems are hard.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Systems are hard, releases are hard. I have switched my role for this release from doing for three releases, dev notes wrangling to actually be editor triage, co-lead with four other people. And this has been quite an interesting experience because all of a sudden, I&#8217;m looking behind the scenes and how timely a lot of PRs are to getting into the beta. And then it&#8217;s not only that there&#8217;s in the plugin, but you also need to sync the core data, the PHP code with the Gutenberg code and that is another big adventure for the tech leads. And you get to do this, when is it? In September before beta 6.4.</p>\n\n\n\n<p><em>Tammie Lister</em>: Yeah. And I think you never know the unknowns until you know them and then you document, and then you try and that&#8217;s the important part of this amazing journey that is these big projects. You can predict most things but it&#8217;s always going to be the thing that you don&#8217;t predict. Honestly, we are doing incredible. Everyone is doing incredible. We just have to remember humans’ need to sleep sometimes and I think that is the beauty we learn. One of the amazing things we do now, which we didn&#8217;t do before is we have the use of the time zones. We use that. We have multiple leads. I think back even a few years ago, we didn&#8217;t have that for these roles and by having that, we can take advantage of time zones and lives and different people, but just documenting and writing, I think there&#8217;s going to be some like, &#8220;Okay, so that could happen.&#8221; Okay, now we document this, now we learn this and that&#8217;s great.</p>\n\n\n\n<p>There&#8217;s stuff I now want to learn about. My curious brain is like, &#8220;Okay, well this went wrong. Okay, so how do we learn?&#8221; And that&#8217;s great because our documentation gets better. That&#8217;s generally what happens in between releases where people debrief and then take everything that happened in a release and then the next release gets better each time. We rise on the past release each time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right, yeah. As you know, this big project, nobody really knows everything. So the collaborative effort is…</p>\n\n\n\n<p><em>Tammie Lister</em>: And if they claim to, I really think they need to go for a little walk in the countryside and think about themselves because nobody does and that&#8217;s amazing. You&#8217;ve just got to be very humble and just go, &#8220;Okay, on we go.&#8221; I just wanted to say shout out to everyone that was working so hard the past 48 hours and then some. You saw some beautiful handovers of patches, people just teleporting in on their phones and doing things and just some amazing open source hearts. You saw a lot of that going on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I saw a lot of also the humbleness stuff. I don&#8217;t know, does somebody else is able to help me?</p>\n\n\n\n<p><em>Tammie Lister</em>: I don&#8217;t know, but I might know someone who does in their mental Rolodex going through a list of people, and that&#8217;s amazing to do. It&#8217;s not like I might know, I&#8217;m going to struggle with it for a while and then I&#8217;m not going to come up with a good solution. That does not help anybody.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No, no, no. At that moment, you need somebody who knows. But it&#8217;s also…</p>\n\n\n\n<p>Tammie Lister: It would help otherwise you make it worse. It&#8217;s like the I will fix this and make it worse. Nobody needs that at 10:00 at night.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Not on a software that&#8217;s used by millions of people.</p>\n\n\n\n<p><em>Tammie Lister</em>: But a beta is a beta. And I think that&#8217;s the amazing thing we all have to&#8230; Now, let&#8217;s test it now let&#8217;s poke it and do things and nothing is ever going to be bug free. We always want that, but we do our best every time. I am so excited about how big this changelog is.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we&#8217;re getting to that. But I just wanted to do a shout-out for Brian Alexander who&#8217;s heading the test team. He has put together some amazing instructions on how you can make really impactful contributions to this open source project and we will share the link in the show notes. So when you go to the test <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">make.webpress.org/test</a>, that&#8217;s the first post that will come up is help test WordPress 6.3. There are quite a few features coming in and they all need testing and they all need hitting the real life scenarios. Have plugins that use some of that, themes, just poke it from all the ends and it&#8217;s really necessary. And like every beta, it&#8217;s beta, but the bugs that we find now in the beta two, three and four, we don&#8217;t have to fix later when the release is done. So yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 16.1</strong></h3>\n\n\n\n<p>What also was released was Gutenberg 16.1 and that&#8217;s when 255 PRs merged with this release by 69 contributors and it&#8217;s just amazing what all went in there. It&#8217;s also understandable because if it went for the last minute, nothing really gets done in life, I found. And everybody wanted to get their work merged, so it will be in the next WordPress release and with the beta this week, it&#8217;s the last plugin release for enhancements and new features to come in. After that, it&#8217;s all bug fixing. So that made it for a mile long changelog. And Tammie and I will do our best to pick the stars amongst the 255, the bright shining stars and the highlights for you and talk them through. So do you want to hit us off with the first thing or do you have any other comments to add?</p>\n\n\n\n<p><em>Tammie Lister</em>: Wow, the amount. I guess the first one would be the navigation menu sidebar, the renaming, duplication, and deleting of navigation menus from browse mode sidebar. Navigation menu sidebar, the maturity of that in general, it feels such a long adventure the navigation menu has come on and I think that&#8217;s also maybe this point is why there was so much as well. It&#8217;s not the final-final release, it&#8217;s like Photoshop when you name a final-final 01 file or something, but it&#8217;s a closure and I think having a navigation block, having things changed, all these things, it&#8217;s a closure for a lot of these features. So I think navigation, it feels like quite a closure on some of these things as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it now made real sense. I think it really needed to gruel it and often and throw out concepts and get new ones there. So there&#8217;s navigation and then there is the sidebar menu in the site editor that also has a navigation piece to it.</p>\n\n\n\n<p><em>Tammie Lister</em>: But bringing that functionality means that you then&#8230; There&#8217;s this weird separation, but it allows that to feel more cohesive and native. That&#8217;s the best words I can think of it. I think navigation&#8217;s going to take a little while to get a lot of people using because navigation&#8217;s over here and all these kinds of things. It&#8217;s that maturity of that feature and the dependability of that feature and the work there. I&#8217;ve definitely started feeling that it feels more robust to use with these changes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s pretty exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I finally feel the same way. I was always a little hesitant to touch the navigation because I knew it wasn&#8217;t finished. So I didn&#8217;t want…</p>\n\n\n\n<p><em>Tammie Lister</em>: You sneeze near it, it&#8217;ll fall over, bless it. And I say that having worked on it myself, but it&#8217;s just a really hard problem. Turns out navigation&#8230; Linking alone is a hard problem, but navigation is linking plus plus plus. It&#8217;s a really difficult problem. If you just write code, it felt easier. But if soon as you add any interface, it&#8217;s really difficult.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it&#8217;s also such a prominent piece of a website that you build, that it really needs to…</p>\n\n\n\n<p><em>Tammie Lister</em>: And people are very bonded to a particular way of using navigation in WordPress as well. So we&#8217;ve got to retrain that mindset.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that definitely is true. And so we have the navigation and the sidebar and the site editor as a navigation menu where you can do certain things and from that menu, from that sidebar, you already can rename, duplicate menus, or delete them. You cannot create them. That&#8217;s what you do when you create, you add a navigation block to a template part to the header or to the footer and then on the right hand sidebar on the white sidebar, that&#8217;s where you assemble your menu or the many menus.</p>\n\n\n\n<p><em>Tammie Lister</em>: I like that consciousness of creating them somewhere else. There there&#8217;s so many opinions on separation and workflows. I feel like&#8230; This is a complete personal opinion, but making navigation too easy, I think that you end up with too many navigation everywhere. That&#8217;s always been one of our problems, that you end up with people drowning in menus. So I think that there&#8217;s a balance that there&#8217;s a maturity of navigation. I think that&#8217;s where the overlap of this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely. And I like that in the site editor left side navigation, you just touch on the overall website, but you always go into the canvas to actually make changes.</p>\n\n\n\n<p><em>Tammie Lister</em>: The best words I can use is assembly there. I don&#8217;t know if that&#8217;s a good word, but it feels like assembly there, functionality doing here. And then that&#8217;s what it feels like. The different mental models that I&#8217;m moving in between when I&#8217;m doing things and I&#8217;m for that, different areas having very distinct different mental models when I&#8217;m doing it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I like that too because I can&#8217;t have two different thoughts in my head at the same time and be productive.</p>\n\n\n\n<p><em>Tammie Lister</em>: Life&#8217;s too short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So that&#8217;s why I like the next item, that the footnotes block is now coming to text blocks and that&#8217;s really something that we have all been waiting for a long time. And I know that Ella van Durpe has also tried multiple ways to get this done and I think she has such great ideas that she all pursued them all. And in the GitHub, you can have the history of all the footnotes, but I think this version is really hitting it out of the park. It works well. You put the cursor where you need the footnote, you get it from the menu from the inside menu bar menu dropdown on the block toolbar, and then you say footnote, and then it gets you right into the place where the content of the footnote, you can add that and it does the numbering itself.</p>\n\n\n\n<p>So if you say, &#8220;Oh, I put a footnote in the middle of a paragraph, but also I need another one on top of it,&#8221; it recounts them so automatically. So that&#8217;s a really good feature. And it has color controls, but it also follows whatever your paragraph or your link color is. I just see that when you change the background of a paragraph, you get what you always get with links is if you change the text, you also need to change the link color. But that is something that&#8217;s the nature of the beast and there is no automation for that. But I&#8217;m really happy that this block comes and it will be in 6.3.</p>\n\n\n\n<p><em>Tammie Lister</em>: Footnotes has an adventure for many years. I think footnotes is one of those, to me, it&#8217;s a sign of maturity for an editor. Quite a few see it as extra functionality or features. But it really is something that if you are in a particular field or you are particularly using, that you will not use an editor unless it has the footnotes functionality. It&#8217;s whether you choose to use or not. There&#8217;s no doubt whether you would want, you wouldn&#8217;t even have a plugin. It would be base functionality. So I think I am very glad to see it. Also, it&#8217;s a really strong indicator of things like collaboration. It sets that. It may not feel like it, but it is. It sets those using that canvas in a little bit of a different way as well. So I&#8217;m really pleased to see it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Tammie Lister</em>: And that experimenting outside to then bring in, I think is a real good way forward to start seeing the interface as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely. Definitely. And then you could actually move the footnotes block where all the footnotes are to the end of things or put them a little bit further. So it&#8217;s also quite versatile.</p>\n\n\n\n<p><em>Tammie Lister</em>: That&#8217;s really important depending on what article you&#8217;re writing as well. I do not claim to know any different medical whatever articles, but I&#8217;m sure that there are certain rules and regulations around where things go and depending on articles and what order things go. So having that functionality that you can determine yourself is better for everybody.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Absolutely, yeah.</p>\n\n\n\n<p><em>Tammie Lister</em>: The next big one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yep, go ahead.</p>\n\n\n\n<p><em>Tammie Lister</em>: I feel like there&#8217;s a whole episode here on patterns and I guess the big one here is the naming and language to me is&#8230; Again, we talk about maturity, well renaming reusable blocks, rename to my patterns and add option to also add a non-synced pattern. This is big, it&#8217;s a small big thing I guess because it&#8217;s a big thing, but it&#8217;s not a massive feature, is it? But it also is a massive feature. Reusable blocks are quite limited but really quite bonded for some people. So I think that we got to respect that. But patterns to me are what everyone always wanted with reasonable blocks. When everyone describes what they want from a reusable block, it&#8217;s a mature functional pattern that has all the things that patterns are getting like syncing, all these things. And that&#8217;s what patterns are getting now.</p>\n\n\n\n<p>So I don&#8217;t know what you feel, but that to me it&#8217;s just maturity of patterns, you have blocks, patterns, template parts, templates. It makes sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, yeah. They&#8217;re pretty much cut from the same cloth and all had different names and also different models. So you had to get here for template parts, you need to go there for a reusable block and you had a pattern here, but they all had different updates kind of thing. So if you update a reusable block, it updates on all instances. A pattern doesn&#8217;t have any updates, so every time you put them into a canvas, they are all disintegrating. They don&#8217;t know about itself anymore. But what I like is that you now can create your own patterns and that is something that a lot of people were missing, that you were dependent on the pattern directory or you were dependent on the theme to provide your patterns or some third-party directory where you can copy paste it over, but you are not able to say, &#8220;Oh, this is a marvelous pattern. Can I store that on my site?&#8221; And now you can.</p>\n\n\n\n<p>And it&#8217;s the same interface or same workflow that you are accustomed to when you create a reusable block and there&#8217;s only one change there&#8230; Well, one attribute, it&#8217;s called sync this over all the instances, yes or no, it&#8217;s a toggle switch. So if you switch it on, you get a reusable block that if you change it, it changes all the instances. And if you switch it not on, it&#8217;s a pattern which does not update. But this is also, and you say, &#8220;Okay, but I want, when I change the style of my pattern, I want it to be replicated over all the instances.&#8221; It&#8217;s coming. This is the first step. This is the first step to unify the wording, unify the interface. And then also, you don&#8217;t have this duplicate mental model anymore. You find them and you can edit them at the same spaces. It&#8217;s called my custom patterns. That&#8217;s how you find them in the pattern list. And then in the block when you highlight them, there is manage your patterns. So it&#8217;s a great step and it&#8217;s one that we have been really all waiting for.</p>\n\n\n\n<p><em>Tammie Lister</em>: And putting my agency hat on, really trying to explain all this language. People, they work in design systems, they work in simple language and been able to sell this easier by simpler language that it behaves more like a design system as they expect. This all is that. You don&#8217;t have to then build a system on top because then the system will be easily done within, you don&#8217;t then have to bring the system. So I am very excited about this. It is the start. It is something that I would&#8217;ve liked a couple of years ago, but we had so much to do. We&#8217;ll get there. And I think that is the thing of there&#8217;s so much changing to do. Patterns are really getting strong. When they first came out, it felt like, &#8220;Oh, you can do patterns.&#8221; But they are so powerful. People get patterns way more than blocks as well. If you explain a block, people are like, &#8220;You don&#8217;t need to make blocks.&#8221; And I think we&#8217;re going to see less blocks people making and more patterns with this because patterns are just more useful then.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s what I have been seeing as well is also that people say, &#8220;Okay, I don&#8217;t have to create a custom block just because I want a group of blocks in my site.&#8221;</p>\n\n\n\n<p><em>Tammie Lister</em>: As much as I love block variations, I love all these things that you can do because blocks were amazing. I&#8217;d like to see less because then it means that patterns are doing what they&#8217;re meant to do because that&#8217;s what humans see. The interface that we&#8217;re having for pattern browsing and all that, we&#8217;re getting onto the management stuff that&#8217;s also part of this, that is just better as a human. Those human interfaces, once humans are using that, that&#8217;s way better than the tiny little pickers that we have for blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But I wanted to go back to what you said, while I would love to have it two years ago, but I think sometimes waiting helps you really to see the big picture, the whole picture. So two years ago, we didn&#8217;t have template parts, yeah?</p>\n\n\n\n<p><em>Tammie Lister</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Or we didn&#8217;t know yet how they&#8217;re going to fit in into the block themes and in pattern, we&#8217;re just at the beginning, but we didn&#8217;t know how to lock them. How to lock certain pieces of it.</p>\n\n\n\n<p><em>Tammie Lister</em>: When I say that, that&#8217;s just eagerness and that&#8217;s also…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, impatience. I see it, I want it.</p>\n\n\n\n<p><em>Tammie Lister</em>: Way too many people in the agency just want it tomorrow because honestly, those are the people who are trying to solve it with design systems who are trying to work around the problem today. Absolutely, these toys are amazing. And that then means these bigger systems can start using. They don&#8217;t have to build on top or around. They can build a lot more natively and the more native you can build, the easier upgrades, the easier components, everything. And it&#8217;s just a better experience for everybody.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right, right. Or you see the power now and you say, &#8220;Oh, wouldn&#8217;t it be great? And then you have to wait.</p>\n\n\n\n<p><em>Tammie Lister</em>: If no one ever has to go through a load of patterns and I&#8217;ve actually had to do this, go through someone makes a change in patterns, but this was quite a while ago. If you use patterns and then you had to make a change in patterns at scale, that was hard to do before. Not having to do that, that&#8217;s going to be amazing. So getting all the amazing benefits of all these things, but having the amazing benefits of things like reusable blocks, but with these visual benefits that humans have. Yeah, it&#8217;s amazing. We have all the toys.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And there&#8217;s one more toy coming, which is now you can get a preview of block themes in your site. We all remember the customizer where you install a theme on your website and then you use the customizer and you were able to preview your site with the theme. And that hasn&#8217;t happened yet, but now it&#8217;s here for block themes as well. You see where you have all your themes, you see a live preview button and that gets you into a similar interface as the site editor. And then you can navigate your site with the theme that is installed but not activated yet. So you can see how your blocks behave, you see how your posts behave, and in advance you don&#8217;t have this what Helen Hou-Sandí always calls the save and pray feature there.</p>\n\n\n\n<p><em>Tammie Lister</em>: What you see might maybe what you get, but possibly not.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Probably different, yes. And it&#8217;s amazing to see this in block themes. You also see all the style variations and how they would change your website and it&#8217;s really amazing. And it&#8217;s in 16.1 and it will come to 6.3 soon.</p>\n\n\n\n<p><em>Tammie Lister:</em> And moving on to the site editor, the distraction free. We&#8217;ve had distraction free, so it&#8217;s like ta-da. But having that with the site editor, been able to create and just go get away. I remember&#8230; Age, that Dreamweaver full screen mode. And you now got that. The day where you could suddenly do visual in Dreamweaver, we&#8217;ve now got that in WordPress. Wow. It&#8217;s incredible to think that we can do that and you&#8217;ve got that without some of the ickiness. Bless it. Without tables. But we&#8217;ve now got that and that means that you can really focus on what you&#8217;re creating. And sometimes like if you&#8217;re doing some of these three-column query or whatever when you&#8217;re trying to do, you do not need those side panels and everything in the way. So distraction free is really, really nice to be able to do that and create.</p>\n\n\n\n<p>We talked earlier about modes when you&#8217;re doing things that really helps you with that creation mode, there&#8217;s a reason why when you are writing, you have those zen modes and that really works for people. Or you have that get away from my desktop all the apps. I don&#8217;t know what you feel, but I think this is just a small improvement to life.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely.</p>\n\n\n\n<p><em>Tammie Lister</em>: Quality of life improvement.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely. And it&#8217;s a good one, when you can do an almost one-to-one preview of your site for that particular page, it opens up so much or it takes away so much worry. It&#8217;s really a better life there.</p>\n\n\n\n<p><em>Tammie Lister</em>: Know what you&#8217;re getting rather than guessing what you&#8217;re getting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And test this, please test this so much.</p>\n\n\n\n<p><em>Tammie Lister</em>: Yeah. And again, that&#8217;s the part of this. A lot of these things, they&#8217;re going in and they&#8217;ve been tested by the people that are creating them and they&#8217;re amazing humans, but they are not the people that are going to be poking it. It&#8217;s now up to people that are listening to this, the people that are going to be testing, who are the people that should be poking it and using it. And I think that is exactly what this is about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely, absolutely. And what is now coming back to the site editor is editing templates as well as content. At the beginning of when the site editor was introduced, it was already there, but people got confused. Am I editing a page? Or they were not confused. They didn&#8217;t have that concept of a template part like this is just the template that drives all the pages and they made changes, and then were surprised that the changes were duplicated on all the pages. So it was taken out of the editor, and now it comes back with some guidance for the content creator of, &#8220;Okay, you can edit that now and when you&#8217;re in the template, you get all this whole title kind of thing.&#8221; It names the things that are in there. And when you&#8217;re on a page, it gives you the page title exactly how you put it in and then you can edit it. But when you go into the places where the template is, it tells you this is a template piece, do you want to edit now? And then gets you out of the editing mode into a template editing mode.</p>\n\n\n\n<p>And I think that the guardrails there really help with the mental image as well. This is a template, I don&#8217;t want to screw that up. I just want this on my page. I want that content done. And you can do it in the site editor. Do you have to go back to the WP admin? Once in a while when you create pages, yes, yeah. But sometimes you want to edit things and you want to see it with&#8230; that&#8217;s the good part in this section now when you have the edit the page content as well as the template, is you see the page and it&#8217;s all in its context. How will it show up on the site? There is no, &#8220;Oh, okay. There is something on the sidebar that&#8217;s interfering with my page.&#8221; And it&#8217;s the same thing that we talked about before where as long as you see the full context of your page, all the worry goes away.</p>\n\n\n\n<p><em>Tammie Lister:</em> I love what you said as well about having something in and then taking it away. I think that&#8217;s really, really important because sometimes when something&#8217;s completely new, it doesn&#8217;t work because it&#8217;s new, it&#8217;s not because it&#8217;s a bad idea and this is showing, it just needed to be delivered in a certain way. And I think not everything, but quite a few things that have been added a little bit recently are that. They are re-adding a slightly different variation once we&#8217;ve got things together. So sometimes you&#8217;ve got to find the combination of the puzzle to put these pieces in or the order to put them in. And this is exactly one of those, it needed to come in a certain order.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I had some interesting conversations at WordCamp Europe. I had a lot of conversations at WordCamp Europe, but some of them were really interesting because I think if you&#8217;re not a developer, it&#8217;s really hard to understand that you have a vision for what people want to do. But unless you start programming and putting it in, you don&#8217;t know yet how it&#8217;s going, how it&#8217;s going to work. So let&#8217;s put it with the features in and then see what other people think about it and then reiterate on it.</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s part of the freedom of creating in the open and part of what we&#8217;ve learned with this whole project is by creating in a plugin, we get to experiment. I want to use the word play because experiment sometimes feels a little bit harsh, it feels serious, but we get to play and see if this goes here, what did someone feel about it? This goes here. Testing things was really, really hard to do in core and it has been really, really hard. But by having it in this and been able to backtrack quicker, and that has been something that has happened time and time again of, &#8220;Oops, nope, let&#8217;s try this.&#8221; Or, &#8220;Okay, well this idea didn&#8217;t work this time.&#8221; We&#8217;ve still got it in the code base. It&#8217;s just back now. We haven&#8217;t completely lost it.</p>\n\n\n\n<p>In core, ideas go and get lost because it&#8217;s a big space, sadly. So having that flexibility, I think we are doing it a lot more as a project and having that healthier macro experimentation. But it&#8217;s seeing those mature ideas come. I love seeing things that was talked about, like you said footnotes, but things that were said years and years ago and it&#8217;s like, &#8220;Yay, they finally shipped.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s not because they couldn&#8217;t ship it earlier. It&#8217;s also you didn&#8217;t know yet how other pieces that needed to fit.</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s like baking a cake. It needs to be the right time and the right ingredients need to be available, and the right people to taste the cake. I don&#8217;t know, that metaphor went really weird, but right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, only chocolate lovers love chocolate cake, right?</p>\n\n\n\n<p><em>Tammie Lister</em>: Yeah. And sometimes you are not delivering chocolate cake, you are delivering a Victorian sponge and to the wrong crowd. I don&#8217;t know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Those metaphors are really…</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s not working. Backtrack, what&#8217;s the next thing?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Let&#8217;s try it again. We all have experiences, but it&#8217;s not in WordPress. So creating something really, really new in WordPress with a lot of backwards compatibility promises, it&#8217;s really hard.&nbsp;</p>\n\n\n\n<p><em>Tammie Lister</em>: I always describe it as the difference between moving a little rowing boat to moving an ocean liner. One of them big Disney cruises or these giant things and then moving a little rowing boat. It is really easy, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s not the same.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. But this editing piece, I think it&#8217;s really so much better now and I think it meets the vision now. So what&#8217;s also in the site editor bar is some template details. You might have already seen that, but now it also respects the settings and there is some language going on as well. Some language changes. You see the home template details, but that only tells you, okay, how many blog posts are on it? So it&#8217;s the blog home and not only just the homepage. So if you switch it to a static page, you will see that in the pages and not in the template pages. But it&#8217;s really good to have those template details in the site editor on the sidebar, it gives you a little bit more context.</p>\n\n\n\n<p><em>Tammie Lister</em>: With components, I guess one of them to call out is the button has a size prop, which is a small little thing, but it&#8217;s maturity of the burn block, how many sites have burned every one of them? And having something like that is really big. It&#8217;s going back to one of my favorite topics of design systems. If we are building off core as a basis, you need to have these foundational things as part of it. So I&#8217;m really excited to see. Anytime I see that or any of the blocks getting different attributes, I am giddy with excitement about all those things. Basically because it means I can then use them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You can use them, you can create styles with them. You can have different variations on the buttons and you don&#8217;t have to create a new block for the buttons.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Another block that got some nice features, an additional feature in there is the list block. It now has a different numbering type for the ordered list. So you could have alphabetical numbering or numbered numbering or Roman lit numbering and then capitals and then small cases. So now you have quite some options in there. I really like that. It&#8217;s catching up with other documentation or writing tools where you have that. But yeah, it&#8217;s good to have it in there.</p>\n\n\n\n<p><em>Tammie Lister</em>: And image block has as aspect ratio control. For some reason, I wanted to say radio control. That was exciting. I think that&#8217;s a whole different thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Multimedia, an image has radio.</p>\n\n\n\n<p><em>Tammie Lister</em>: Which again is maturity, right? You mentioned parity with tools. It is, right? We need to have the best of these tools so that people use them natively. So that&#8217;s really what a lot of this is maturity of these tools, I think.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And that was particularly important because you want your patterns when you switch out the images, you have them in a certain aspect ratio and when you switch them out and somebody puts in another image, you want it in the same aspect ratio and not blow up the whole pattern.</p>\n\n\n\n<p><em>Tammie Lister</em>: Could ruin a party, that really can.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I&#8217;m scrolling past it, but there is just stop to say that the interactivity API will not be in 6.3. It has been merged for the Gutenberg plugin, but it will only be available&#8230; they&#8217;re aiming for 6.4, which is not so far away, actually. September is the next beta. So it&#8217;s really going forward. There were some questions in the community about the interactivity API. A lot of people are very excited about it.</p>\n\n\n\n<p><em>Tammie Lister</em>: We&#8217;re going to have some really nice toys for Christmas.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And November 8th is I think the release of 6.4. So let&#8217;s get those toys wrapped up for Christmas.</p>\n\n\n\n<p><em>Tammie Lister</em>: That&#8217;s actually going to be some really interesting testing, I think. Some difference in testing because yes, we&#8217;ve done, but how you test some of that stuff is going to be a little bit different, I think.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And we need a lot more examples.</p>\n\n\n\n<p><em>Tammie Lister</em>: That&#8217;s where I&#8217;m going. How do you push some of that stuff?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And definitely there&#8217;s some documentation. I think they started with the documentation now. There were quite a few insights already in the make blog on core. I think two of them, and I can certainly add them to the show notes. So people who are all interested in that and want to help with the rollout, definitely can get a headstart on it, but not in 6.3.</p>\n\n\n\n<p><em>Tammie Lister</em>: The next one, I&#8217;m going past so much, this is such a long list. It&#8217;s amazing. It is in the design tool section and that&#8217;s a sticky position. That&#8217;s not a phrase. Try re-enabling non-root sticky position. So actually, I think any improvements to things like this is really nice. The fact that we have this shows maturity of design tools. So I think that&#8217;s part of calling this out. Design tools as a whole are a concept that is still relatively new to us, but design tools means again, that people are going to build using it. And so I&#8217;m really excited anytime that any of our refinement happens to any of our design tools.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I think in 6.2, the sticky position was already introduced for the header and the footer, but it was not for the sidebar because somehow it was really, really hard.</p>\n\n\n\n<p><em>Tammie Lister</em>: Sticky is hard. Sticky is hard to stick.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You never get it to stick. And it needed to be a root wrapper or root block to make it sticky. You couldn&#8217;t do it in a column block where you have a sidebar and make that sticky.</p>\n\n\n\n<p><em>Tammie Lister</em>: Because CSS.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Because of CSS, yes. Yeah. So there is another attempt to make this work and needs definitely testing.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yes, I was about to say that if anything needs testing, any time you see something listed in design tools, I would point anyone who is building themes or building anything to please test around those things because these are what really you will be building with. Having native sticky positions is much better than having to call on libraries or add things. And again, it means that people who want to build and create in the editor themselves have that capability to create some incredible, powerful, beautiful designs without having lack of access to them. It all sets us up to what amazing things could be done with the default themes, and that&#8217;s super exciting, what Christmas is going to bring there with all these tools.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the next one is actually for media and we need to set this up a bit. So when you copy paste something from Google or from another website and there&#8217;s images in there, when you paste them into your canvas, the image will always go back to the original. So when the original site goes away, especially when you migrate from one domain to the other, the image goes away. And now there was a little button on every image where you could say and if it was allowed from the source site, that you could add that image to your library with a button. But of course when you have 15 images, it&#8217;s a little harder to do that. So now in the pre-publish screen, there is a section that suggests that you upload the external images and gives you a button and you can do it all at once. You also can click on the images and see how they show up in the post or in the page. So I think that&#8217;s a great addition to…</p>\n\n\n\n<p><em>Tammie Lister</em>: Just what people expect. Again, and I do not belittle it by saying that. It&#8217;s more just, it just raises it up. It&#8217;s what people expect, it&#8217;s what people want. So it&#8217;s amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It really raises the quality of the tools that you use, that it actually helps you also with the little things. Images are important.</p>\n\n\n\n<p><em>Tammie Lister</em>: Quality of life. Really, the release is quality of life and completion, which is a beautiful summer thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And refinement.</p>\n\n\n\n<p><em>Tammie Lister</em>: Yeah. So I think we&#8217;re going to talk maybe a little bit later about the command section, but we&#8217;re into commands.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: We&#8217;re good?</p>\n\n\n\n<p><em>Tammie Lister</em>: Going down the list, there&#8217;s two things about the commands and that is add commands to templates, template parts and styles, and to related commands as well. I don&#8217;t know if you want to talk about commands right now or later?</p>\n\n\n\n<p>Birgit Pauli-Haack: We could. So we have a name now for it.</p>\n\n\n\n<p><em>Tammie Lister</em>: We do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: In the development, it was always called the command center, but now it&#8217;s command palette and it tries to convey that&#8217;s the tool when you hit control K in the site editor, it gives you quick access to various commands, context-sensitive. And so you can say go to library or go to templates or go to template parts or delete template parts. All this you can do, and it&#8217;s also extensible. So you can create commands for your plugins, you can create commands for your themes as well. But the API is very, very new. So there are commands and with this release, there are commands with template, template parts, styles, how to manage the custom patterns, which custom patterns are the former reusable blocks. Sync patterns. So now you can say to your command palette, manage patterns or you also get UI commands for your post editor. So where you can say, add new post or something like that. So it&#8217;s not the center of it because it&#8217;s not a mission control palette or something like that. Or dashboard, it&#8217;s just you have a thought that you wanted…</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s your friendly helper there and there. And I think what these are doing is giving you examples. As you said, this is the start and it&#8217;s new. So by having these there, and this is just to start again, I think it&#8217;s worth of saying these are an example that someone could look at and be like, &#8220;Oh, that&#8217;s how you write one,&#8221; as well. So I am super curious to do that myself and be like, &#8220;Oh, okay, that&#8217;s how you write one. Okay.&#8221; And I am really excited to see what people create with this. Now we have decided the name, I was going to call it Bob, but it didn&#8217;t catch on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I always call him Fred.</p>\n\n\n\n<p><em>Tammie Lister</em>: I call everyone Bob. No idea. Everyone picks a name that they call things repetitively, I think. And now that it has a name, which is amazing. And I think one of the good things is its translatable. And I think that was key in all of it. Personally, as long as it&#8217;s translatable, as long as we agree to something, we get it in, things can change. But let&#8217;s get it in and iterate. So these are great examples to then copy, rehash, and learn from. So I think 6.4, we&#8217;ll probably see more. And then I imagine there&#8217;s going to be a flowy of plugins, some nice little iterations and people exploring what it means to have these things as well. So it&#8217;s going to be very exciting to see what people create.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I&#8217;m really happy about that. I would&#8217;ve never thought that my website tool would have these quick commands that I can just call up and then do stuff.</p>\n\n\n\n<p><em>Tammie Lister</em>: So the way that I think of it is a combination of&#8230; Because initially, I was Alfred was where my mind went because it&#8217;s searchy, I think of it now like Alfred. And if this, then that, and those two things combined is where I go because it is that, but it&#8217;s also workflow. So it&#8217;s that but in WordPress for me, and I am very excited about extending that and then where people take it, because people always take it in a way that you would never expect it to go. So I think the next year or so, we&#8217;re going to see some really exciting things come from that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I totally agree with that.</p>\n\n\n\n<p><em>Tammie Lister</em>: New toys.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: New toys for everybody when the biggest toy is probably creating those commands and find, &#8220;Yeah, oh I can do this. It&#8217;s not that hard.&#8221;</p>\n\n\n\n<p><em>Tammie Lister</em>: And then even vigilant spaces to be able to create those commands ourselves. That becoming easier and easier I think is something that will happen over time as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I totally get it. I want to get into programming so much and lock myself away for two weeks and do all this.</p>\n\n\n\n<p><em>Tammie Lister</em>: You don&#8217;t have to lock yourself away for it, but that&#8217;s all right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So I&#8217;m scrolling and scrolling and scrolling. I don&#8217;t see anything anymore.</p>\n\n\n\n<p><em>Tammie Lister</em>: So much. And I think that&#8217;s the thing. If we are going through the bug fixes and the enhancements and there&#8217;s just so much, I like the repetitive word flaky because when I see the fix flaky, that means that all the things which flaky is a bug report for, it kind of works and it kind of didn&#8217;t. I love that we&#8217;re down to that end of polishing, is my reflection on that. So I think that is really, really exciting that there&#8217;s so much polishing here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and I think that was actually the outlook for 6.3, that most of the features get in and then we&#8217;re almost already…</p>\n\n\n\n<p><em>Tammie Lister</em>: This is a giant section of those, which I love.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are we done? I think we&#8217;re done. Oh yeah.</p>\n\n\n\n<p><em>Tammie Lister</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: There are a lot of documentation fixes. Code quality fixes, code quality in block library, code quality in site editor. No, this is cool. Yes. Tooling. Yeah, the whole testing thing was kind of, whoa.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s what you were talking about.</p>\n\n\n\n<p><em>Tammie Lister</em>: And I think that&#8217;s the thing that&#8217;s there. It&#8217;s probably testing coming in for command as well, but it&#8217;s all maturity of that. As I&#8217;m scrolling down, I&#8217;m seeing improving, improving, improving, improving.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. No, I think we made it. Yay.</p>\n\n\n\n<p><em>Tammie Lister</em>: Yay.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>WordPress 6.3 Beta</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we want to bring it back to the WordPress 6.3 beta and talk a little bit about what this means plus tickets for 6.3.</p>\n\n\n\n<p><em>Tammie Lister</em>: I think one of the big things to think about is yes, there are things in now, but things that are in are going to have to respond to feedback. So whilst you might think, &#8220;Oh, that burden is perfectly placed,&#8221; I am really paraphrasing here, &#8220;That burden might not be perfectly placed.&#8221; So during beaters, you might see that burden moves because that burden needs to be in a better place. And there are a couple of tickets out there at the moment, which one of them particularly has things could be done in a better way. That&#8217;s where I&#8217;m going with this. So we are going to see that. We are going to see, &#8220;Oh dear, this breaks this under this circumstance when we actually tested it under this load or we tested it under this situation.&#8221; Because you can test under all the situations you think, but you don&#8217;t have that until you are real world testing or you&#8217;re testing. And as the betas get towards the higher numbers, we&#8217;re on two now. So we&#8217;re probably going to go at least four I would say, I don&#8217;t know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I agree, I agree.</p>\n\n\n\n<p><em>Tammie Lister</em>: I want to be optimistic. But realism kicks in here a little bit. You&#8217;re going to see fixes. So people need to bug report. People need to test or poke it, prod it, and use it. If you find something, see something, report something is the biggest thing because if you see something at release candidate, it&#8217;s a little bit late. It&#8217;s like shouting after the sheep have left the field. But if you say something now, it can be fixed. So if something doesn&#8217;t work with the plugin that is the only reason your client&#8217;s site works, now&#8217;s the reason to say basically.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely. And there will be. So I also wanted to caution some of the more eager WordPress news people or that want to grab screenshots and that kind of thing. There might be changes there.&nbsp;</p>\n\n\n\n<p><em>Tammie Lister</em>: Going back to my button moving.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: For instance, one change is from 6.0 to beta or to 16.2, so plugin releases 6.0 to 6.2, which will probably have some of the things that will get into 6.3 WordPress. But there was one menu item in the site editor on the bottom that was called library. And that has been renamed to patterns because that&#8217;s what&#8217;s in there. It&#8217;s the reusable block that are patterns now, template parts that are patterns now, and your custom patterns that are patterns now. And one was thinking about the library part for a long time because also there will be a fonts library, something like that. But then there were quite a few smart people who said, &#8220;Well, if I&#8217;m looking for fonts, I won&#8217;t go to library. I go to my styles and that&#8217;s a separate place.&#8221;</p>\n\n\n\n<p>So while we were using it, it was rethought what would make it a better idea or better metaphor for that. And pattern is something that&#8217;s WordPress branded and that a lot of people are really responding to. So library was not, it removes cognitive load when you have to think about, &#8220;I need to think of library.&#8221; When you see patterns, that&#8217;s where you want to go. So that&#8217;s just one example. There might be others. So when you do a screenshot for your video, make sure you have the latest beta or the latest…</p>\n\n\n\n<p><em>Tammie Lister</em>: Really, screenshots is release candidate as much as it feels late, it&#8217;s not. There&#8217;s several weeks and that&#8217;s when you&#8217;ll find a lot of documentation takes it as well. I&#8217;ll working on the about page and we&#8217;re going to be doing the graphics around there as much as possible. But honestly, the final-final 01 PSD graphics&#8230; I don&#8217;t have to deal with PSDs, that&#8217;s when you take them because things rightly about translation.</p>\n\n\n\n<p>This language though, I think so many of these language refinements happening, whether you agree with it or not, because language is so subjective and everyone has feelings about Bob or Fred, what things should be called, is a sign of maturity of the product, is that we&#8217;re working our own language system and we&#8217;re saying these things are called this because it makes sense in our ecosystem. So I welcome that we&#8217;re finally clarifying some language and not just confusing everybody because it&#8217;s always been very confusing. We&#8217;re finally settling on some terms and we are then documenting what they are called because one of the problems we&#8217;ve always done is called something and then not written it down. So actually doing that is really helpful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Release candidate is scheduled for the 27th of July, so it&#8217;s another four weeks to go. So caution.</p>\n\n\n\n<p><em>Tammie Lister</em>: So you got to let the dust settle, you got to let stuff go. If everything is amazing and unicorns walk and everything, then nothing will change, but something&#8217;s going to change because humans in software.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s going to change. And computers, right? Computers are involved, all bets are off, right?</p>\n\n\n\n<p><em>Tammie Lister</em>: Yeah. And that&#8217;s okay, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Tammie Lister</em>: That&#8217;s totally okay. Just if you&#8217;re going on holiday, maybe have a friend do your screenshot for your blog post.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So before we all come to an end, just a reminder, the two live Q&amp;As on July 6th and July 21st. Hit the registration button so we can all see you also on the live show and with some great demos. Before we end this show, do you have anything that you want to&#8230; How can people get in touch with you, Tammie?</p>\n\n\n\n<p><em>Tammie Lister</em>: I&#8217;m karma Toast on all the things and I&#8217;m still around core, I&#8217;m around everywhere and I would love to speak to people. I will be at WordCamp U.S. as well if someone else is going. So I&#8217;d love to say hi, but reaching out, I&#8217;m always welcome.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome, awesome. Thank you so much for being on the show. And as always, dear listeners, the show notes will be published on gutenbergtimes.com/podcast. This is episode 85, and if you have questions or suggestions or news you want us to cover, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. So thank you so much Tammie. It has been a great pleasure geeking out with you over Gutenberg.</p>\n\n\n\n<p><em>Tammie Lister</em>: It&#8217;s been a pleasure. It&#8217;s always great talking to you. Thank you so much for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you so much, and you all have a good weekend and a good week and I&#8217;ll see you all or hear you all in the next two weeks. Take care, bye-bye.</p>\n\n\n\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Jul 2023 20:43:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: WordPress Plugin Review Team Adds 6 New Sponsored Volunteers, Opens Applications \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2286:\"<p>A new era has begun for WordPress.org&#8217;s Plugin Review Team. Mika Epstein, who has served for the past decade, is stepping down, but not before<a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\"> launching a new crew of volunteers</a>.</p>\n\n\n\n<p>The team is responsible for approving newly submitted plugins, maintaining the Plugin Reviewer Handbook, as well as investigating any reported security issues and guideline violations.</p>\n\n\n\n<p>Historically, the Plugin Review team has had very little turnover, but a new crop of six sponsored volunteers will be contributing an estimated 50+ hours per week. The new members include <a href=\"https://profiles.wordpress.org/davidperez/\">David Pérez</a>, <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/frantorres/\">Francisco Torres</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a>, and <a href=\"https://profiles.wordpress.org/pacomarchante/\">Paco Marchante</a>. Their efforts are already in demand as they work to tackle a large backlog of plugins. </p>\n\n\n\n<p>&#8220;Given the nature of the work the team does, joining this team is a little different than some of the others: each new member will go through a vetting process by current team members before being selected,&#8221; Epstein said. &#8220;Some of the things the team is looking for are: a solid track record as a plugin developer; the ability to communicate clearly, kindly and constructively – both with other developers and users; interest in improving tools and processes; and excellent collaborative and conflict-management skills.&#8221; </p>\n\n\n\n<p>Epstein is encouraging more volunteers to apply, if they have at least five hours per week to devote to the team, as they could still use more help. Prospective team members can <a href=\"https://make.wordpress.org/plugins/handbook/apply/\">submit an application</a>, which will be evaluated by current team members. Applicants will be required to send examples of plugins they have coded to demonstrate their experience, provide references, and detail some of their contributions to the project.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Jul 2023 02:52:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"Post Status: WordPress 6.3 Beta 2 • Help Test • WPDiversity • Plugin Team Next Phase • Mentorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://poststatus.com/wordpress-6-3-beta-2-help-test-wpdiversity-plugin-team-next-phase-mentorship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21961:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (June 26, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Release season is upon us as we approach WordPress 6.3&#8217;s August 8th release. Your help is needed testing the latest changes. <br /><br />Do you run or attend WordPress events and notice only one type of person is attending? What can you do to be a good ally to foster, promote, and support diversity and an inclusive space? Sign up now for the July 20th WPDiversity workshop. <br /><br />Stop by the Plugin team to wish Mika a happy retirement as she hands over the work to the 6 new Plugin Review teammembers. <br /><br />Applications to be mentored as a contributor in the inaugural Mentorship Program have now closed. The team is selecting both mentors and mentees at this time and will kick off the first cohort on July 12. <br /> </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_rocket kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP6.3b2 • Test • WPDiversity • Mentorship • Plugin Team Next Steps</h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fd-200d-1f4bb.png\" alt=\"🧑🏽‍💻\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d5-1f3ff.png\" alt=\"🧕🏿\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">Attention WordPress event organizers: This important workshop on July 20, 2023 is for you!</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f50c.png\" alt=\"🔌\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fb-200d-1f3eb.png\" alt=\"🧑🏻‍🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\">People of WordPress: Allison Dye</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/episode-58-a-new-wave-for-wordpress-events/\">WP Briefing: Episode 58: A New Wave for WordPress Events</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-5\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-3\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/06/16/accessibility-team-meeting-notes-june-16-2023/\">Accessibility Team Meeting Notes: June 16, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/29/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-june-28-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on June 28, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">Attention WordPress event organizers: This important workshop on July 20, 2023 is for you!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/21/meetup-organizer-newsletter-june-2023/\">Meetup Organizer Newsletter: June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/21/wceu-2023-community-table-recap/\">WCEU 2023 Community Table Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/19/next-generation-of-wordpress-events-updates/\">Next Generation of WordPress Events: Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">What’s new in Gutenberg 16.1? (29 June)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/a-week-in-core-june-26-2023/\">A Week in Core – June 26, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/06/the-style-book-a-one-stop-shop-for-styling-block-themes/\">The Style Book: a one-stop shop for styling block themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/navigating-the-block-editor-handbook/\">Navigating the Block Editor Handbook</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/upgrading-the-site-editing-experience-with-custom-template-part-areas/\">Upgrading the site-editing experience with custom template part areas</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/dev-chat-summary-june-21-2023/\">Dev Chat Summary: June 21, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/26/editor-chat-agenda-june-28th-2023/\">Editor Chat Agenda: June 28th, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/06/06/design-share-may-22-jun-2/\">Design Share: May 22–Jun 2</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/06/23/online-monthly-docs-team-contributor-day-june-27-2023/\">Online monthly Docs Team Contributor Day June 27, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/06/23/summary-for-docs-team-meeting-june-20-2023/\">Summary for Docs Team meeting, June 20, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/06/28/hosting-team-meeting-agenda-2023-06-28/\">Hosting Team meeting agenda 2023-06-28</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/30/catalog-performance-testing-results/\">Catalog Performance Testing Results</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/27/community-meeting-recap-2023-06-27/\">Community Meeting Recap (2023-06-27)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/26/last-week-openverse-2023-06-19-2023-06-26/\">A week in Openverse: 2023-06-19 – 2023-06-26</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/performance-chat-summary-27-june-2023/\">Performance Chat Summary: 27 June 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/28/agenda-weekly-polyglots-chat-june-28-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – June 28, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/06/30/sustainability-chat-summary-june-30-2023/\">Sustainability Chat Summary, June 30, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/07/fse-program-testing-call-24-momery-makeover/\">FSE Program Testing Call #24: Momery Makeover</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/06/28/themes-team-meeting-notes-june-27-2023/\">Themes Team Meeting Notes – June 27, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/06/24/proposal-lets-actively-promote-the-learn-wordpress-platform-in-learn-wordpress-content/\">Proposal: Let’s actively promote the Learn WordPress platform in Learn WordPress content</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/22/training-team-meeting-recap-20th-june-2023/\">Training Team Meeting Recap – 20th June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/20/proposal-new-contributor-guide-program/\">Proposal: New Contributor Guide Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/19/brainstorm-table-lead-wordcamp-us-2023-contributor-day/\">Brainstorm &amp; Table Lead – WordCamp US 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/developing-for-multisite/\">Developing for Multisite</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wpphotos-moderator-training/\">WPPhotos Moderator Training</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-the-block-editor-tips-and-shortcuts-for-efficiency/\">Using the block editor: Tips and shortcuts for efficiency</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-headings-for-accessibility-and-seo/\">How to use headings for accessibility and&nbsp;SEO</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/advanced-multisite-management/\">Advanced Multisite Management</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/fr-the-difference-between-reusable-blocks-block-patterns-templates-and-template-parts/\">Différences entre blocs réutilisables, compositions de blocs, modèles et éléments de modèle</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-dashboard-widgets\">Common WordPress APIs: Dashboard Widgets</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-8\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=introducing-domains-4\">Introducing… Domains!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=introducing-domains-3\">Introducing… Domains!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=tips-and-shortcuts-for-using-the-block-editor-streamlining-content-creation-apac\">Tips and shortcuts for using the block editor &amp; streamlining content creation (APAC)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=tips-and-shortcuts-for-using-the-block-editor-streamlining-content-creation\">Tips and shortcuts for using the block editor &amp; streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-row-and-stack-blocks-apac\">Using the row and stack blocks (APAC)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-7\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=custom-tables-in-wordpress\">Custom tables in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-exploring-editor-extensibility\">Developer Hours: Exploring Editor Extensibility</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-lets-chat-about-wordpress-6-3-and-block-theming\">Hallway Hangout: Let’s chat about WordPress 6.3 and block theming</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wordpress-developer-quiz\">The WordPress developer Quiz</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-can-chat-gpt-help-wordpress-developers-and-designers\">How can Chat GPT help WordPress developers and designers?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-set-up-a-free-wordpress-test-website-and-explore-code-2\">How to set up a free WordPress test website (and explore code!)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Jul 2023 02:36:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: People of WordPress: Allison Dye\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12498:\"<p><strong>A way to escape chronic pain and give a sense of independence, is what using WordPress means for Italian-American Allison Dye. Now as a project manager and social media content manager living in North Carolina, USA, she uses the software in her work and in disability-advocacy.</strong></p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<img width=\"1024\" height=\"537\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/fi-allison-dye.jpg?resize=1024%2C537&ssl=1\" alt=\"Allison Dye\" class=\"wp-image-15292\" />\n\n\n\n<p>Allison was first introduced to WordPress when she was 13 years old. Her parents gave her own WordPress website to use, play, test, and try whatever she wanted with it. Her health issues had started when she was eight years old, and being able to express who she was and learn new skills provided an escape she needed. </p>\n\n\n\n<h2 class=\"wp-block-heading\">My first encounter with WordPress</h2>\n\n\n\n<p>Allison said: &#8220;While the technical aspects of my new WordPress website intrigued me, I was more interested in the space it made for me to write. All throughout my childhood I had struggled with chronic pain, fatigue, and other unexplained symptoms. Having a private world I could call my own, I was able to write my story.&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;There is something truly amazing about having a place to tell your story.&#8221;</p>\n<cite>Allison Dye</cite></blockquote>\n\n\n\n<p>Her family faced many doctors, nurse, specialists and hospital visits, but could not get an answer to the difficulties faced by Allison. She said: &#8220;I felt like my life and world were out of control. But logging onto my little website and typing away on the computer keys gave me a sense of control. I couldn’t always do things that other kids had the energy to do. But I could get lost in writing for hours. I couldn’t control my life story, but I could write about it.&#8221;</p>\n\n\n\n<p>She felt it was like writing letters to her future self and would act as a reminder of how strong she had become. Even now when Allison writes on her website, she feels it is writing letters to her past self, expressing reassurance and pride. The practice of writing online continues to help her reflect on how she coped and made it through the difficulties.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress in the real world</h2>\n\n\n\n<p>Allison hoped her early experiences with hospitals and being unwell was just part of being a child, and that in adulthood she would be healthy. She longed for this time.</p>\n\n\n\n<p>Growing up did not bring her this dream of a healthier life and an end to chronic pain. In fact, her condition worsened as she went through her teens and at 18 she finally received a diagnosis of Multiple Sclerosis.</p>\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/allison-2.jpg?resize=768%2C1024&ssl=1\" alt=\"Allison stood in front of trees\" class=\"wp-image-15290\" />Allison enjoying time with nature and trees\n\n\n\n<p>This changed what had been conventional job choices, as she was not able to handle a 9 to 5 work schedule. She could not drive herself to work on some days and relied on her mother to help with transport. She knew that she would have to find another way to work and she was determined to find it.</p>\n\n\n\n<p>She began writing music and book reviews online, and then moved onto writing blog posts. As they were published she started to receive payment and a sense of power over her life. She said: &#8220;WordPress felt familiar, typing on the computer keys felt comfortable, and sharing my words with the world felt surreal.&#8221;</p>\n\n\n\n<p>Allison&#8217;s sense of ownership of the software became part of her strength. &#8220;I think I believed WordPress was mine somehow. I was learning that WordPress is something that belongs to everyone in some way. And I loved it.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Finding work with WordPress</h2>\n\n\n\n<p>The confidence using the platform gave Allison led her to find more about what it could do and meet other people who used it. She said: &#8220;The thing I love about WordPress is that it’s not just for developers or bloggers or SEO experts. I began to meet more people in the community and was delighted to find people like me, who didn’t know the technical stuff, but were a part of WordPress.&#8221;</p>\n\n\n\n<p>This global community orbiting around the software gave her an opportunity to meet social media managers, designers, and people from many different areas. She found that &#8216;there was a place for everyone&#8217;. The guiding strength and fascination Allison found and still finds today is in that community. Allison said: &#8220;The community felt as important as the rest of everything that makes WordPress what it is. It felt like it was about people and relationships as well as codes and databases.&#8221;</p>\n\n\n\n<p>In 2020, she was hired by a WordPress company. She said: &#8220;I like being a part of a WordPress company, and I love that I contribute to a team that helps people with their websites. I understand the importance of having a space that’s yours. Whether it’s a business or personal site, having a website gives you the power of telling your own story.&#8221;</p>\n\n\n\n<p>WordPress gave Allison a freedom and an independence. She did not have to work a 9 to 5 job, rely on others to drive her on bad days with her MS, nor worry about days when she wanted to stay in her sweatshirts rather than go into an office to work. She said: &#8220;I have a 100% remote job which I can do despite the plot twists in my story, thanks to WordPress and the people in it.&#8221;</p>\n\n\n\n<p>WordPress took Allison into the world of project management for a small agency, and this experience was to help guide her path, skills and confidence into the future. She went on to work in content management in WordPress, building pages for awareness campaigns for non profit organizations and small businesses as a contractor. She helps people update their websites, add and edit content, perform basic updates and help them to learn how to use their sites. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I tell all my clients to use WordPress because there is really no other solution that can scale as easily for growing organizations and small businesses. I love how WordPress allows them to tell their stories, share their passion, and have a place to call their own on the internet.&#8221;</p>\n<cite>Allison Dye</cite></blockquote>\n\n\n\n<p>As a fluent English and Italian speaker, Allison is able to support clients in different countries from where she lives. &#8220;I love that with WordPress I&#8217;m able to support clients remotely. This is thanks to all of the many WordPress contributors, developers, project managers, content writers, and many, many volunteers that work tirelessly to enable people around the world to use WordPress.&#8221;</p>\n\n\n\n<p>Allison also became a certified as an English As A Second Language (ESL) teacher. &#8220;My affinity for words and languages allows me to teach passionately and creatively. I’m Italian-American and am fluent in English and Italian. Teaching English allows me to share my passion for communication with others.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcomed into the WordPress community</h2>\n\n\n\n<img width=\"1024\" height=\"562\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/WPCoffeeTalk-Allie-Dye.png?resize=1024%2C562&ssl=1\" alt=\"Allie interviewed for a podcast on her use of WordPress\" class=\"wp-image-15293\" />Allie interviewed for a podcast on her use of WordPress\n\n\n\n<p>Allison attributes mentors and supporters in the WordPress community for helping her appreciate she really is part of it. Allison recalled: &#8220;It felt unreal. I wasn’t a dev, I don’t know how to code, and yet I got to be a part of it all? I felt like I was a fake. But Kimberly continues to remind me that I’m real, I get to be here, I get to stay, I have a place.&#8221;</p>\n\n\n\n<p>She was later encouraged to contribute by a WordPress community member to the Big Orange Heart, which aims to support and promote positive well-being and mental health within remote working communities. She said she felt &#8216;honored typing my words, pieces of my story, and sharing them with a community of people&#8217;.</p>\n\n\n\n<p>She also joined the <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a> online organizing team. </p>\n\n\n\n<p>Allison enjoys the fact that in the WordPress community, &#8216;everyone here is constantly working to be better and do better&#8217;.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Facing the future with strength from her friends and colleagues in WordPress</h2>\n\n\n\n<img width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/allison-1.jpg?resize=675%2C900&ssl=1\" alt=\"\" class=\"wp-image-15289\" />\n\n\n\n<p>Allison was later diagnosed with two additional neurological conditions: Functional Neurological Disorder and Migraine. She said: &#8220;If it were not for WordPress I would really be unable to work. But WordPress and its community continue to be a part of my life and I am grateful to everyone who&#8217;s helped me along my way. I don&#8217;t know where I would even be without it.&#8221;</p>\n\n\n\n<p>She strives to raise awareness of dynamic disabilities and invisible illnesses like her own through podcasts and social media. She feels that her WordPress friends have helped her both in her professional life and in her wish to be an advocate for others with disabilities too.<br /><br />Allison hopes reading of her experience will help others who are worried about not progressing in a WordPress career due to health concerns.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I hope that it will remind anyone reading this that WordPress is a space for everyone. Healthy or not, developer or not, blogger or not — WordPress belongs to you too.&#8221;</p>\n<cite>Allison Dye</cite></blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Allie Dye (<a href=\"https://profiles.wordpress.org/allisondye/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>allisondye</a>)&nbsp;for sharing about her adventures in WordPress.</p>\n\n\n\n<p>Props to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>) and the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>) for interviews and writing the feature, Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>) for work on images, and to Meher, Maja Loncan (@mloncar) and Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>) for reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jun 2023 21:23:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"WPTavern: WP Feature Notifications Contributors Seek Feedback on Admin Notices with Community Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146339\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/wp-feature-notifications-contributors-seek-feedback-on-admin-notices-with-community-survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2075:\"<p>The WP Feature Notifications project has <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">launched a community survey</a> to get feedback on the current system of notices in the WordPress admin. The project aims to create a better way to manage and deliver notifications in the admin, and the survey is intended to further refine this work.</p>\n\n\n\n<p>A few months ago, <a href=\"https://wptavern.com/wp-feature-notifications-project-progresses-towards-mvp-for-standardizing-admin-notifications\">the project released version 0.2.0 of the feature plugin</a> in which contributors implemented a more robust JavaScript-based system for standardizing how notifications appear in the admin. This is a <a href=\"https://github.com/WordPress/wp-feature-notifications/releases/tag/0.2.0\">proof of concept plugin</a> that uses demo data only. They are working towards an MVP for 0.3.0, which will remove the demo content and provide a functional notification system. Contributors have also put together <a href=\"https://www.figma.com/file/sC0QzxbY1Azm6wtc2X6bXV/WP-Notify-design-blueprints-i6-(by-Nick-Heurter)?type=design&node-id=158-105&mode=design\">an updated design</a> based on the idea of <a href=\"https://github.com/WordPress/wp-feature-notifications/issues/253\">working within WordPress&#8217; existing design system</a>.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;The team has recently made some solid progress on things like database storage and REST API endpoints,&#8221; WordPress core contributor Joe Bailey-Roberts said. &#8220;However this is slightly paused for now so we can revise things if necessary, based on the survey results. We also have an updated design for the admin notices UI that we’ll shortly be showcasing, which came out of the WCEU Contributor Day.&#8221;</p>\n\n\n\n<p>Anyone who uses WordPress is welcome to <a href=\"https://forms.gle/XBh1U53MYLni4hsHA\">take the survey</a> &#8211; it&#8217;s for developers and users alike. It takes just a few minutes and may help shape the direction of the WP Feature Notifications project in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jun 2023 21:18:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WordCamp Central: WordCamp Finland: back to Tampere with educational, insightful and thought-provoking talks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166382\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://central.wordcamp.org/news/2023/06/wordcamp-finland-back-to-tampere-with-educational-insightful-and-thought-provoking-talks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3153:\"<p>The first-ever Finnish WordCamp gathered a few hundred fellow WordPress enthusiasts to Tampere back in 2015. This September, on 14.-15., our community will return to the city where everything started.</p>\n\n\n\n<p>Content has been planned with all skill levels, employment types and interests in mind. We do not discriminate, and WordPress users, developers, designers, people working in agencies or as a freelancer and other enthusiasts are all welcome, regardless of the experience level.</p>\n\n\n\n<p>We are more than thrilled about the upcoming lineup of talks and speakers. The best and most exciting part is that many of the topics do come outside of the WordPress world! WordCamp Finland will truly have educational, insightful and thought-provoking talks for everyone.&nbsp;</p>\n\n\n\n<p>Here’s a sneak peak of some of the topics:</p>\n\n\n\n<ul>\n<li>Analytics in GDPR era</li>\n\n\n\n<li>Climate change and WordPress, things to consider</li>\n\n\n\n<li>Optimizing e-commerce</li>\n\n\n\n<li>Work fatigue, how to prevent it and cope from it</li>\n\n\n\n<li>Open source and WordPress communities, how do those benefit you?</li>\n\n\n\n<li>Web Platform API’s and Gutenberg, modern Javascript development with WordPress</li>\n\n\n\n<li>Terminal and WP-CLI</li>\n\n\n\n<li>Designing more accessible websites and accessibility testing</li>\n\n\n\n<li>Achieving better and more inclusive web design, content and UX</li>\n\n\n\n<li>Security and hacked websites</li>\n\n\n\n<li>…and much more!</li>\n</ul>\n\n\n\n<p><a href=\"https://finland.wordcamp.org/2023/\">WordCamp Finland 2023</a> sessions will take place in Tampere on Friday 15. September. Most of the sessions will be held in English, although there are a handful of sessions held in Finnish as well.</p>\n\n\n\n<p>The day before, on Thursday 14. September, a contributing evening will take place starting at 16:00. The contributing evening will feature workshops where you can contribute and learn about various WordPress-related topics in a hands-on setting. No coding skills required!</p>\n\n\n\n<p>During the whole event, there will also be ample time for networking and meeting other WordPress enthusiasts. Getting to meet and learn from other WordPress users face-to-face is one of the main reasons people attend WordCamps. In addition to learning from each other, attendees often make new friends and find employees/employers from the WordCamp crowd.&nbsp;</p>\n\n\n\n<p><a href=\"https://finland.wordcamp.org/2023/tickets/\">Secure your tickets</a> now and ensure you’ll get to experience all of the insightful talks and activities with a welcoming community!</p>\n\n\n\n<p>The full list of speakers, session descriptions and schedule will be published in early August, so make sure to follow us on <a href=\"https://twitter.com/wordcampfinland\">Twitter</a>, <a href=\"https://www.facebook.com/WordCampFinland\">Facebook</a> and <a href=\"https://www.linkedin.com/company/wordcamp-finland\">Linkedin</a> to get the latest updates. Naturally the WordPress Finland Slack has <a href=\"https://fi.wordpress.org/chat/\">#events-wcfi</a> channel and discussion is ongoing on <a href=\"https://m.facebook.com/groups/597228300478293/\">WPWoofi</a> Facebook group.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jun 2023 13:51:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Timi Wahalahti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Gutenberg 16.1 Introduces Pattern Creation and Library, Adds Distraction Free Mode to Site Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146374\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/gutenberg-16-1-introduces-pattern-creation-and-library-adds-distraction-free-mode-to-site-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3391:\"<p><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">Gutenberg 16.1</a> was released this week, debuting of the Pattern Library, which coincides with <a href=\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\">reusable blocks getting renamed to synced patterns</a>. Users can now create and manage their own patterns that will also show up in the block inserter. Custom patterns are saved to the new Library alongside custom template parts.</p>\n\n\n\n<img />\n\n\n\n<p>This release also adds a new Distraction Free mode to the Site Editor, which removes all controls and menus, functioning in a similar way to the mode added to the content editor in October 2022. The mode can be accessed under the more menu of the Site Editor.</p>\n\n\n\n<p>Automattic-sponsored engineer Andrei Draganescu <a href=\"https://github.com/WordPress/gutenberg/pull/51173\">submitted the PR</a> for the feature and cited three reasons why the Site Editor could benefit from a Distraction Free mode:</p>\n\n\n\n<ul>\n<li>Because distraction free work is a good environment to cultivate</li>\n\n\n\n<li>Because the command center makes full chrome UI useless for power users</li>\n\n\n\n<li>Because it enables a really 1:1 preview &#8211; while maintaining everything editable</li>\n</ul>\n\n\n\n<p>Draganescu published a video of the Distraction Free mode working in concert with the new Command Palette:</p>\n\n\n\n\n\n\n\n<p>Another new feature in this release is automated footnotes.<a id=\"d213a119-9478-49c0-b53c-1ceba4b8b5a0-link\" href=\"https://wptavern.com/feed#d213a119-9478-49c0-b53c-1ceba4b8b5a0\" class=\"fn\">*</a> Users can add them by highlighting the text and selecting Footnote from the formatting menu. This will automatically insert the note and create a Footnote block at the bottom of the content. (This block can be moved.)</p>\n\n\n<ol class=\"wp-block-footnotes\"><li id=\"d213a119-9478-49c0-b53c-1ceba4b8b5a0\">This is an example of a footnote. <a href=\"https://wptavern.com/feed#d213a119-9478-49c0-b53c-1ceba4b8b5a0-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" />︎</a></li></ol>\n\n\n<p>Footnotes can be added inside paragraph, heading, and list blocks, and are saved as post meta. The Footnote block doesn&#8217;t seem to be accessible in the block inserter. It is automatically created and inserted with the first footnote. </p>\n\n\n\n<img />\n\n\n\n<p>A few other notable features in this release include the following:</p>\n\n\n\n<p></p>\n\n\n\n<ul>\n<li>Live block theme previewing in the Site Editor moved out of experimental stage, available for block themes under <em>Appearance > Themes</em></li>\n\n\n\n<li>Site Editor sidebar now displays template and settings configuration details for the home and index templates</li>\n\n\n\n<li>Aspect ratio controls added to Image block</li>\n</ul>\n\n\n\n<p>Gutenberg 16.1 is included in the upcoming WordPress 6.3 release, but if you want to take advantage of these features before August, you will need to be using the plugin or <a href=\"https://wptavern.com/wordpress-6-3-beta-2-released-ready-for-testing\">test 6.3 Beta 2</a>. Check out the <a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">release post</a> for the full changelog that includes all the latest enhancements, bug fixes, and performance and accessibility improvements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jun 2023 03:04:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Hackers Actively Exploiting Unpatched Privilege Escalation Vulnerability in Ultimate Member Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146380\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/hackers-actively-exploiting-unpatched-privilege-escalation-vulnerability-in-ultimate-member-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2446:\"<p>WPScan is reporting a hacking campaign <a href=\"https://blog.wpscan.com/hacking-campaign-actively-exploiting-ultimate-member-plugin/\">actively exploiting an unpatched vulnerability in the Ultimate Member plugin</a>, which allows unauthenticated attackers to create new user accounts with administrative privileges and take over the site. The vulnerability has been assigned a CVSSv3.1 (Common Vulnerability Scoring System) score of 9.8 (Critical).</p>\n\n\n\n<p>Automattic&#8217;s <a href=\"https://wp.cloud/\">WP.cloud</a> and <a href=\"https://pressable.com/\">Pressable.com</a> hosting platforms picked up on a trend in compromised sites where each had rogue new administrators popping up. After further investigation they found a discussion on the WordPress.org support forums about a potential <a href=\"http://wordpress.org/support/topic/possible-priv-esc-vulnerability/\">Privilege Escalation vulnerability</a> in the plugin, as well as indications that it was already being <a href=\"https://wordpress.org/support/topic/register-role-ignored-and-user-became-an-admin/\">actively exploited</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/ultimate-member/\">Ultimate Member</a>, which is active on more than 200,000 WordPress sites, patched the plugin, but WPScan reports that it wasn&#8217;t sufficient.</p>\n\n\n\n<p>&#8220;In response to the vulnerability report, the creators of the plugin promptly released a new version, 2.6.4, intending to fix the problem,&#8221; WPScan security researcher Marc Montpas said. &#8220;However, upon investigating this update, we found numerous methods to circumvent the proposed patch, implying the issue is still fully exploitable.</p>\n\n\n\n<p>&#8220;Adding to the urgency of the situation, a look at our monitoring systems also confirmed attacks using this vulnerability were indeed happening in the wild.&#8221;</p>\n\n\n\n<p>WPScan has identified more than a dozen IP addresses from which exploits are originating, common usernames for malicious accounts, and other indicators of compromise, such as malicious plugins, themes, and code. Check the <a href=\"https://blog.wpscan.com/hacking-campaign-actively-exploiting-ultimate-member-plugin/\">security advisory</a> if you believe you have been compromised.</p>\n\n\n\n<p>Version 2.6.6 is the latest release from the Ultimate Member plugin but it is still believed to be vulnerable. WPScan recommends users disable the plugin until it has been adequately patched.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Jun 2023 01:35:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WordPress Foundation: 2023 Kim Parsell Memorial Scholarship Recipient: Yumi Nishioka (mimi)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=569710\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wordpressfoundation.org/news/2023/2023-kim-parsell-memorial-scholarship-recipient-mimi/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1692:\"<p><a href=\"https://us.wordcamp.org/2023/announcing-the-2023-kim-parsell-memorial-scholarship-winner-yumi-nishioka/\">This year’s Kim Parsell Memorial Scholarship recipient</a> is <a href=\"https://profiles.wordpress.org/mimitips/\">Yumi Nishioka (mimi)</a>. mimi is a passionate WordPress contributor who embodies the values that Kim would have appreciated.</p>\n\n\n\n<p>mimi is a Web/UI Designer and Developer based in Tokyo, and has been a WordPress contributor since 2018. She was lead organizer of WordCamp Tokyo 2019. That year she also began hosting a personal study group on the Gutenberg Project, which meets twice a month. Then in 2021, she started co-organizing monthly&nbsp;small study sessions&nbsp;about Design and WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>While there have been numerous contributions I’m proud of, one that stands out is my commitment to the core code. Although it was a small code change, the experience of being actively involved in the open-source software that I use daily was incredibly rewarding.</em></p>\n<cite>&#8211; mimi</cite></blockquote>\n\n\n\n<p>The WordPress Foundation created this memorial scholarship in 2015, to honor the memory of longtime WordPress contributor Kim Parsell and ensure that Kim’s values would continue to be infused into the WordPress community.</p>\n\n\n\n<p>This scholarship provides travel to WordCamp US for a woman who contributes to the WordPress open source project, and who would not otherwise be able to attend WordCamp US.&nbsp;<a href=\"http://wordpressfoundation.org/projects/kim-parsell-memorial-scholarship/\">More information on the scholarship, including past recipients, is available here</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Jun 2023 15:43:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Julia Golomb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Do The Woo Community: Reflecting Back on WordCamp Europe 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75373\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://dothewoo.io/reflection-on-wordcamp-europe-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"<p>In this episode, nothing goes untouched. A lot of great reflection on WordCamp EU 2023 in Athens.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/reflection-on-wordcamp-europe-2023/\">Reflecting Back on WordCamp Europe 2023</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Jun 2023 12:28:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: WordPress 6.3 Beta 2 Released, Ready for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146291\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wordpress-6-3-beta-2-released-ready-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4422:\"<p>WordPress 6.3 hit a major milestone today with the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">release of Beta 2</a>. The release leads opted to skip Beta 1, which was delayed yesterday after some technical issues with packaging the release, and have moved straight on to Beta 2. </p>\n\n\n\n<p>As WordPress 6.3 is set to be the last major release of the Gutenberg project&#8217;s Phase 2 focus on customization, it ties up many loose ends related to the Site Editor and usability in general. It rolls in the ten most recent releases of the Gutenberg plugin &#8211; versions 15.2 through 16.1. </p>\n\n\n\n<p>Major interface enhancements in this release, as outlined by the comprehensive <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">6.3 testing guide</a>, include the following: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#command-palette\">Command Palette</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#improved-page-management\">Improved Page Management</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#content-editing-in-site-editor\">Content Editing in Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#distraction-free-mode-in-site-editor\">Distraction Free Mode in Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#block-theme-preview\">Block Theme Preview</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#using-the-style-book-in-the-styles-site-view\">Using the Style Book in the Styles’ Site View</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#styles-revisions\">Styles Revisions</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/#top-toolbar-improvements\">Top Toolbar Improvements</a></li>\n</ul>\n\n\n\n<p>Patterns are also getting a big boost in this release, as reusable blocks have been <a href=\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\">renamed to &#8220;synced patterns.&#8221;</a> Pattern creation is now available to users and a new pattern library will be located inside the editor for saving and managing both synced and unsynced patterns. Theme authors now have the capability to register custom patterns to templates, so they appear in the start modal to speed up page building.</p>\n\n\n\n<p>WordPress 6.3 will introduce three new blocks, including <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#details-block-experimental\">details</a>, <a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/#new-time-to-read-block\">time-to-read</a>, and <a href=\"https://github.com/WordPress/gutenberg/pull/49797\">footnotes</a>, along with many improvements to existing blocks.</p>\n\n\n\n<p>This release comes with significant performance updates, most notably the addition of <a href=\"https://core.trac.wordpress.org/ticket/12009\">defer and async support to the WP Scripts API</a> and <a href=\"https://core.trac.wordpress.org/ticket/58235\">fetchpriority support for images</a>. Support for PHP versions 8.0+ has been improved, along with block template resolution, image lazy loading, and the emoji loader. </p>\n\n\n\n<p>In the rare event that the manual update of a theme or plugin fails, <a href=\"https://core.trac.wordpress.org/ticket/51857\">auto-rollback</a> is available as of WordPress 6.3.</p>\n\n\n\n<p>Beta 2 testers are encouraged to <a href=\"https://core.trac.wordpress.org/newticket\">file bug reports on WordPress Trac</a>. During beta testing until the last RC, the WordPress project will also be <a href=\"https://make.wordpress.org/security/2023/06/28/doubling-the-bounties-for-wordpress-6-3-beta/\">doubling its monetary reward</a> for any new, unreleased security issues that are uncovered. The vulnerabilities must be found in new code in order to qualify for the doubled reward.</p>\n\n\n\n<p>Check out the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 release post</a> for more information on new features, accessibility improvements, and instructions on how to test. WordPress 6.3 is scheduled for release on August 8, 2023.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Jun 2023 03:28:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WordCamp Asia 2024 Scheduled for March 7-9 in Taipei\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146336\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordcamp-asia-2024-scheduled-for-march-7-9-in-taipei\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1883:\"<p>WordCamp Asia has announced its dates for 2024. The flagship event is now officially scheduled for March 7-9, in Taipei, Taiwan. Organizers have secured the <a rel=\"noreferrer noopener\" href=\"https://www.ticc.com.tw/wSite/mp?mp=2\" target=\"_blank\">Taipei International Convention Center (TICC)</a> venue to host the event, which is located in the business district not far from Taipei 101, formerly known as the Taipei World Financial Center, a skyscraper that is the city&#8217;s most visible landmark. TICC has a capacity of more than 3,000 people.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>&#8220;The local community is massive and I’ve been told that WordCamp Taiwan (this October) alone would boast of at least 500 attendees,&#8221; organizer John Ang said after visiting Taipei with his team to sign the venue. &#8220;While we were on the same trip, we were lucky to be able to celebrate  the 20th Anniversary of WordPress with the Taiwanese community.</p>\n\n\n\n<p>&#8220;There’s also active work bringing in government support and other open source communities across the region (e.g. Hong Kong) to WordCamp Asia next year.&#8221; </p>\n\n\n\n<img />photo credit: <a href=\"https://asia.wordcamp.org/2024/preparations-has-started-for-wordcamp-asia-2024/\">Preparations have started for WordCamp Asia 2024</a>\n\n\n\n<p>WordCamp Asia attendees can expect 3-5 tracks of sessions featuring diverse presentations across a range of topics for beginners and seasoned WordPress professionals alike. The venue also offers ample common areas for networking.</p>\n\n\n\n<p>More details on the event and calls for speakers and sponsors should be coming soon. Those who are hopeful to attend can subscribe to updates on <a href=\"https://asia.wordcamp.org/2024/\">the event&#8217;s website</a> or follow <a href=\"https://twitter.com/WordCampAsia\">@WordCampAsia</a> on Twitter.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Jun 2023 00:31:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15161:\"<p>WordPress 6.3 Beta 2 is ready for download and testing. This is the first release of the 6.3 cycle, as there was no Beta 1 due to technical issues with packaging the release. Rather than further delaying a beta release, the release squad has decided to package and ship Beta 2.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, the release squad recommends you evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p>WordPress 6.3 demonstrates incredible progress toward achieving the goals outlined in the <a href=\"https://wordpress.org/about/roadmap/\">WordPress roadmap</a> and is the <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">final major release of Phase 2</a>. Phase 2 has focused mainly on the Site Editor, enabling site creators to build websites, design compelling layouts, and manage content without toggling between multiple configuration areas or editing code.</p>\n\n\n\n<p>Learn more about Gutenberg updates debuting since WordPress 6.2 by reviewing prior editions of <em>What’s New in Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2023/02/24/whats-new-in-gutenberg-15-2-22-february/\">15.2</a>, <a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/\">15.3</a>, <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/\">15.4</a>, <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">15.5</a>, <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/\">15.6</a>, <a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\">15.7</a>, <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">15.8</a>, <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\">15.9</a>, <a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">16.0</a>, and <a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">16.1</a>.</p>\n\n\n\n<p>WordPress is the result of contributions by users, developers, and extenders across the globe. As this community seeks new features, the platform will continue to evolve, including the site editing features and beyond. Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A first look at 6.3</h2>\n\n\n\n<p>This latest WordPress release includes many updates spanning all platform areas, emphasizing the editing experience and polishing usability.&nbsp;This release contains more than 500 new features and enhancements and 400+ bug fixes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p>Following the incredible <a href=\"https://make.wordpress.org/core/2023/04/05/wordpress-6-2-performance-improvements-for-all-themes/\">performance improvements introduced in 6.2</a>, the release includes more than 170 performance-related updates, including adding <a href=\"https://core.trac.wordpress.org/ticket/12009\">defer and async support to the WP Scripts API</a> and <a href=\"https://core.trac.wordpress.org/ticket/58235\">fetchpriority support for images</a>. Optimizations were made to <a href=\"https://github.com/WordPress/wordpress-develop/pull/4097\">block template resolution</a>, <a href=\"https://core.trac.wordpress.org/ticket/58211\">image lazy-loading</a>, and the <a href=\"https://core.trac.wordpress.org/ticket/58472\">emoji loader</a>, all of which benefit LCP performance. Support for PHP versions <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=new&status=reopened&status=reviewing&keywords=~php8+-php81+-php82&milestone=6.3&order=priority\">8.0</a>, <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=new&status=reopened&status=reviewing&keywords=~php81&milestone=6.3&order=priority\">8.1</a>, and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=new&status=reopened&status=reviewing&keywords=~php82&milestone=6.3&order=priority\">8.2</a> has been improved.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Site Editor</h3>\n\n\n\n<p>The Site Editor expands to include navigating and editing <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/#add-the-pages-menu-to-the-site-editor-50463\">pages</a>, <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#style-variations-in-browse-mode\">styles</a>, <a href=\"https://github.com/WordPress/gutenberg/issues/50418#top\">templates</a>, and <a href=\"https://github.com/WordPress/gutenberg/issues/44461\">content</a>. The unified site editing experience will include a <a href=\"https://github.com/WordPress/gutenberg/issues/49175\">distraction-free mode</a>, enhanced <a href=\"https://make.wordpress.org/core/2023/02/24/whats-new-in-gutenberg-15-2-22-february/#enhancements-to-navigation-in-the-site-editor\">navigation</a>, and an <a href=\"https://github.com/WordPress/gutenberg/issues/35503\">improved loading experience</a>. Additionally, you can use the Site Editor to <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/#add-theme-previews-for-block-themes-50030\">preview a block theme</a> and adjust your site before activating the new theme. This release includes <a href=\"https://github.com/WordPress/gutenberg/pull/50089\">style revisions</a> so you can toggle between and preview different saved styles. Rounding out the changes, 6.3 ushers in a new <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/#command-tool\">Command Palette</a>, enabling users to context switch and perform actions quickly across different sections of the site editing experience.</p>\n\n\n\nPrototype of the Command Palette in action\n\n\n\n<h3 class=\"wp-block-heading\">Blocks</h3>\n\n\n\n<p>New blocks for <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#details-block-experimental\">details</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/51201\">footnotes</a> debut in this release, along with updates for better handling of <a href=\"https://github.com/WordPress/gutenberg/issues/51138\">image aspect ratios</a> and improved fallback states. <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/#spacer-block-gets-spacing-presets\">Spacer blocks</a> now include presets, and the cover block gets updates for managing <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/#color-and-layout-support-for-cover-block\">text colors and layout support</a>.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Spacing-Presets.png?ssl=1\" alt=\"\" />The new height control for the Spacer block\n\n\n\n<h3 class=\"wp-block-heading\">Patterns and Design</h3>\n\n\n\n<p>Reusable blocks have been renamed to <a href=\"https://github.com/WordPress/gutenberg/pull/51144\"><em>synced patterns</em></a>. This change reflects the unification of reusable blocks and traditional block patterns (unsynced patterns) within the Editor. A <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#patterns-as-template-starters\">new option</a> allows you to assign patterns to templates, adding the ability to have starter patterns to speed up the creation process. Site creators can now easily create, save, and manage custom synced and unsynced patterns, as well as browse a <a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">directory of curated patterns</a>. Additionally, the <a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/#leveling-up-duotone\">duotone filter</a> and <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#style-captions-via-the-styles-interface\">captions</a> can now be edited in the Styles interface.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Styling-Captions.png?ssl=1\" alt=\"\" />Style your captions in the new Styles interface\n\n\n\n<h3 class=\"wp-block-heading\">Usability<strong> </strong></h3>\n\n\n\n<p>Some key usability highlights include <a href=\"https://github.com/WordPress/gutenberg/issues/40450\">toolbar updates</a>, <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/#updated-template-descriptions\">updated template descriptions</a>, enhanced <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/#enhancements-site-editor\">list view drag-and-drop</a>, improved <a href=\"https://github.com/WordPress/gutenberg/issues/49264#top\">padding and margin controls</a>, and a new area for <a href=\"https://github.com/WordPress/gutenberg/issues/50397#top\">managing patterns</a> (including reusable blocks, now called <em>synced patterns</em>.) <a href=\"https://github.com/WordPress/gutenberg/issues/50891\">Link control</a> receives some updates, rounding out high-level usability enhancements in 6.3.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/Add-and-modify-descriptions-for-templates.png?ssl=1\" alt=\"\" />Add and modify descriptions for templates\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility</h3>\n\n\n\n<p>WordPress remains steadfast in making the site-building experience accessible to everyone. 6.3 incorporates over 50 accessibility improvements across the platform. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and <a href=\"https://core.trac.wordpress.org/ticket/50523\">new controls in the admin image editor</a> allow those using screen readers, keyboard navigation, and other assistive technology to navigate more easily. The <a href=\"https://core.trac.wordpress.org/ticket/32510\">login form</a>, <a href=\"https://core.trac.wordpress.org/ticket/40470\">installation steps</a>, and list tables (for <a href=\"https://core.trac.wordpress.org/ticket/32170\">sorting</a> and <a href=\"https://core.trac.wordpress.org/ticket/21516\">selection</a>) have all been updated. Additional accessibility tickets are viewable in <a href=\"https://core.trac.wordpress.org/query?status=closed&focuses=~accessibility&milestone=6.3&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">the WordPress Trac</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other notes</h3>\n\n\n\n<p>This release includes <a href=\"https://core.trac.wordpress.org/ticket/51857\">auto-rollback</a> for failed manual updates of themes and plugins.</p>\n\n\n\n<p><em>Please note that the features in this list may change before the final release.</em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Testing makes WordPress stronger!</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not.&nbsp;</p>\n\n\n\n<p>While testing the upgrade process is essential, testing new features is too. Review the many new features listed above and focus your testing efforts on those areas in particular.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you&#8217;ve never tested a beta release.</p>\n\n\n\n<p>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta 2</h3>\n\n\n\n<p>Between the Beta 2 release and the final release candidate (RC) for each new WordPress version, the <a href=\"https://make.wordpress.org/security/2023/06/28/doubling-the-bounties-for-wordpress-6-3-beta/\">monetary reward for reporting new, unreleased security vulnerabilities is doubled</a>. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get WordPress 6.3 Beta 2</h3>\n\n\n\n<p>You can test WordPress 6.3 Beta 2 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-beta2.zip\">Beta 2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.3-beta2</code></p>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, which is about six weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The first haiku for 6.3</h3>\n\n\n\n<p>A chapter closes<br />Excitement yet much newness<br />Phase 2 finale</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a>, <a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@CBringmann</em></a>, <a href=\"https://profiles.wordpress.org/audrasjb/\"><em>@AudrasJB</em></a>, <a href=\"https://profiles.wordpress.org/annezazu/\"><em>@annezazu</em></a>, <a href=\"https://profiles.wordpress.org/ndiego/\"><em>@ndiego</em></a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\"><em>@davidbaumwald</em></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><em>@desrosj</em></a>, <a href=\"https://profiles.wordpress.org/priethor/\"><em>@priethor</em></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><em>@flixos90</em></a>,<a href=\"https://profiles.wordpress.org/wildworks\"> @wildworks</a>, <em>and </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a><em> for authoring the haiku</em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jun 2023 23:30:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: #81 – James Dominy on Why AI Is to Be Embraced, Not Feared\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=146283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/podcast/81-james-dominy-on-why-ai-is-to-be-embraced-not-feared\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52362:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how AI and WordPress can work together.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for. WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you. And hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have James Dominy. James is a computer scientist with a master&#8217;s degree in bioinformatics. He lives in Ireland working at the WP engine Limerick office.</p>\n\n\n\n<p>This is the second podcast recorded at WordCamp Europe, 2023 in Athens. James gave a talk at the event about the influence of AI on the WordPress community and how it&#8217;s going to disrupt so many of the roles which WordPressers currently occupy.</p>\n\n\n\n<p>We talk about the recent rise of ChatGPT, and the fact that it&#8217;s made AI available to almost anyone. In less than 12 months, many of us have gone from never touching AI technologies to using them on a daily basis to speed up some aspect of our work.</p>\n\n\n\n<p>The discussion moves on to the rate at which AI systems might evolve, and whether or not they&#8217;re truly intelligent or just a suite of technologies which masquerade is intelligent. Are they merely good at predicting the next word or phrase in any given sentence? Is there a scenario in which we can expect our machines to stop simply regurgitating texts and images based upon what they&#8217;ve consumed; a future in which they can set their own agendas and learn based upon their own goals?</p>\n\n\n\n<p>This gets into the subject of whether or not AI is in any meaningful way innately intelligent, or just good at making us think that it is, and whether or not the famous Turing test is a worthwhile measure of the abilities of an AI.</p>\n\n\n\n<p>James&#8217; his background in biochemistry comes in handy as we turn our attention to whether or not there&#8217;s something unique about the brains that we all possess. Or if intelligence is merely a matter of the amount of compute power that an AI can consume. It&#8217;s more or less certain that given time machines will be more capable than they are now. So when if ever does the intelligence Rubicon get crossed?</p>\n\n\n\n<p>The current AI systems can be broadly classified as Large Language Models or LLMs for short, and James explains what these are and how they work. How can they create a sentence word by word if they don&#8217;t have an understanding of where each sentence is going to end up?</p>\n\n\n\n<p>James explains that LLMs are a little more complex than just handling one word at a time, always moving backwards and forwards within their predictions to ensure that they&#8217;re creating content which makes sense, even if it&#8217;s not always factually accurate.</p>\n\n\n\n<p>We then move on from the conceptual understanding of AI to more concrete ways it can be implemented. What ways can WordPress users implement AI right now? And what innovations might we reasonably expect to be available in the future? Will we be able to get AI to make intelligent decisions about our websites SEO or design, and therefore be able to focus our time on other more pressing matters?</p>\n\n\n\n<p>It&#8217;s a fascinating conversation, whether or not you&#8217;ve used AI tools in the past.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you James Dominy.</p>\n\n\n\n<p>I am joined on the podcast today by James Dominy. How are you doing James?</p>\n\n\n\n<p>[00:04:51] <strong>James Dominy:</strong> I&#8217;m well, thanks. Hi Nathan. How are you doing?</p>\n\n\n\n<p>[00:04:53] <strong>Nathan Wrigley:</strong> Yeah, good, thanks. We&#8217;re at WordCamp Europe. We&#8217;re upstairs somewhere. I&#8217;m not entirely sure where we are in all honesty. The principle idea of today&#8217;s conversation with James is he&#8217;s done a presentation at WordCamp Europe all about AI. Now, I literally can&#8217;t think of a topic which is getting more interest at the moment. It seems the general press is talking about AI all the time.</p>\n\n\n\n<p>[00:05:17] <strong>James Dominy:</strong> Yeah.</p>\n\n\n\n<p>[00:05:17] <strong>Nathan Wrigley:</strong> It&#8217;s consuming absolutely everything. So it&#8217;s the perfect time to have this conversation. What was your talk about today? What did you actually talk about in front of those people?</p>\n\n\n\n<p>[00:05:24] <strong>James Dominy:</strong> Right. So my talk was about the influence of AI on the WordPress community. The WordPress community involving, in my mind, roughly three groups. You&#8217;ve got your freelancer, single content generator, blogger. You have someone who does the same job but in a business as in an agency or a marketing or a brand context. And then on the other side, you&#8217;ve got software developers who are developing plugins or working on the actual WordPress Core.</p>\n\n\n\n<p>And AI is going to be changing the way all of those people work. Mostly I focused on the first and the third groups. I don&#8217;t know enough about the business aspects to really talk about the agency and the marketing side of things.</p>\n\n\n\n<p>I personally, I&#8217;m a software developer, so I suppose I really skewed towards that in the end. But, my wife has been a WordPresser for 15, 20 years, which is how I ended up doing this. And a lot of the things that she&#8217;s been using ChatGPT quite actively recently.</p>\n\n\n\n<p>And she&#8217;s been chatting to me after work going, you know, I was trying to use ChatGPT to do X Y Z. And I thought, well, you know, that&#8217;s interesting. I know some bit about machine learning and the way these things work. I&#8217;ve read some stuff on the internals and I have opinions.</p>\n\n\n\n<p>[00:06:33] <strong>Nathan Wrigley:</strong> Perfect.</p>\n\n\n\n<p>[00:06:34] <strong>James Dominy:</strong> So that&#8217;s how I got here.</p>\n\n\n\n<p>[00:06:35] <strong>Nathan Wrigley:</strong> Yeah. Well, that&#8217;s perfect. Thank you. It seems like at the moment the word ChatGPT could be easily interchanged with AI . Everybody is using that as the pseudonym for AI and it&#8217;s not really, is it? It really is a much bigger subject. But that is, it feels at the moment, the most useful implementation in the WordPress space. You know, you lock it into the block editor in some way shape and you create some content in that way.</p>\n\n\n\n<p>[00:07:00] <strong>James Dominy:</strong> And I mean, I am absolutely guilty of that. I think the number of times I&#8217;ve said ChatGPT, I mean AI generative systems, or something during my workshop this morning is well beyond count.</p>\n\n\n\n<p>it is likely to fall victim of a trademark thing at some point. Like Google desperately tries to claim that Google is a trademark and shouldn&#8217;t be used as a generic term for search. I expect the same thing will happen with ChatGPT at some point.</p>\n\n\n\n<p>[00:07:25] <strong>Nathan Wrigley:</strong> This is going to sound a little bit, well, maybe snarky is the wrong word, but I hope you don&#8217;t take it this way, but it feels to me that the pace of change in AI is so remarkably rapid. I mean, like nothing I can think of. So, is there a way that we can even know what AI could look like in a year&#8217;s time, two years&#8217; time, five years&#8217; time? So in other words, if we speculate on what it could be to WordPress, is that a serious enterprise? Is it serious endeavor? Or are we just hoping that we get the right guess? Because I don&#8217;t know what it&#8217;s going to be like.</p>\n\n\n\n<p>[00:07:59] <strong>James Dominy:</strong> I think if we rephrase the question a bit, we might get a better answer. So AIs are human design systems. And there is a thing called the alignment problem where there is an element of design to AIs, and we give it a direction, but it doesn&#8217;t always go the direction we want and I think that is the unanswerable part of this question.</p>\n\n\n\n<p>Yes, there are going to be emergent surprises from the capabilities of AIs. But for the most part, AIs are developed with a specific goal in mind. Large language models were developed, okay I&#8217;m taking a wild educated guess here perhaps, but they were developed with the idea of producing text that sounded like a human. And I mean, we&#8217;ve had the Turing test for nearly a hundred years, more than a hundred years? 21, yeah, more than a hundred years now.</p>\n\n\n\n<p>So I mean, that&#8217;s been a goal for a hundred years. Everyone says that AI has advanced rapidly and it has, but the core mathematical principles that are involved, those haven&#8217;t advanced. I don&#8217;t want to take away from the people who&#8217;ve done the work here. There has been work that&#8217;s been put into it, but I think what&#8217;s really given us the quantum leap here is the amount of computational power that we can throw at the problem.</p>\n\n\n\n<p>And as long as that is increasing exponentially, I think we can expect that the models themselves will get exponentially better at roughly the same rate as the amount of hardware we throw at it.</p>\n\n\n\n<p>[00:09:28] <strong>Nathan Wrigley:</strong> So we can stare into the future and imagine that it&#8217;s going to get exponentially, logarithmically it&#8217;s going to, it&#8217;s just going to get better and better and better. But we can&#8217;t predict the ways that it might output that betterness. Who knows what kind of interface there&#8217;ll be, or.</p>\n\n\n\n<p>[00:09:41] <strong>James Dominy:</strong> Yeah. I think better&#8217;s a very evasive term perhaps, on my part. I think there are specific ways that it is going to get better. For example, we are going to see less confused AIs, because they are able to process more tokens. They have deeper models. Deeper statistical trees for outputs. They&#8217;re able to take more context in and apply it to whatever comes out. So in that sense we&#8217;re going to see a better output from an AI. Is it going to ever be able to innovate? Ooh, that&#8217;s a deep philosophical question, and I mean we can get into that, but I don&#8217;t know that we have time.</p>\n\n\n\n<p>[00:10:20] <strong>Nathan Wrigley:</strong> I think I would like to get into that.</p>\n\n\n\n<p>[00:10:22] <strong>James Dominy:</strong> Okay.</p>\n\n\n\n<p>[00:10:22] <strong>Nathan Wrigley:</strong> Because when we begin talking about AI, I think the word which sticks is intelligence. The artificial bit gets quickly forgotten and we imagine that there is some kind of intelligence behind this, because we ask it a fairly straightforward, or even indeed quite complicated question.</p>\n\n\n\n<p>And we get something which appears to pass the Turing test. Just for those people who are listening, the Turing test is a fairly blunt measure of whether you are talking to something which is a human or not human, masquerading as a human. And if something is deemed to have passed the Turing test, it&#8217;s indistinguishable from a human.</p>\n\n\n\n<p>And so, I have an intuition that really what we&#8217;re getting back, it&#8217;s not intelligent in any meaningful sense of the word. It&#8217;s kind of like a regurgitation machine. It&#8217;s sucking in information and then it&#8217;s just giving us a best approximation of what it thinks we want to hear. But it&#8217;s not truly intelligent. If you asked it something utterly tangential, that it had no capacity, it had no data storage on, it would be unable to cope with that, right?</p>\n\n\n\n<p>[00:11:22] <strong>James Dominy:</strong> I think yes. If you can clearly delineate the idea of, we have no data on this, which is very difficult considering the amounts of information that, you know, give something access to Wikipedia and that AI generative system might well be able to produce an opinion on practically anything these days.</p>\n\n\n\n<p>But if it hasn&#8217;t read the latest paper on advanced quantum mechanic theory, it&#8217;s not going to know it. That text isn&#8217;t going to be there. Could it reproduce that paper? That&#8217;s a subtely different question, because then it comes down to, well, when a human produces that paper, what are they really doing?</p>\n\n\n\n<p>They&#8217;re synthesizing their knowledge from a bunch of different things that they&#8217;ve learned, and they&#8217;re producing text in a language, in a grammar, that they have learned in a very similar way, that statistically speaking this sentence follows this grammatical form. Because I have learned that as a child through hearing it several thousand times from the people around me and my parents. What&#8217;s different?</p>\n\n\n\n<p>A more practical example here, I was having this discussion earlier today, and someone said yes, but they&#8217;re not truly intelligent. But if you consider it, even now, we can ask Chat GPT something, and I&#8217;m going to be abstract cause I don&#8217;t have a concrete example here, I&#8217;m sorry. But we can say to ChatGPT, I want you to produce a poem in the style of Shakespeare, a sonnet or something. But I want you to use a plot from Goethe.</p>\n\n\n\n<p>Okay, fine. Now it can do that. It can give you a response. I&#8217;m not sure that it&#8217;ll be a good response. I haven&#8217;t tried that particular one. But in that context, if you are asking a human to do that, and we automatically make the assumption of other human beings that they understand. And, sorry, I&#8217;m making air quotes here. That they understand, in quotes, who Goethe is. That that is a person and a character. That Goethe has a particular style and a proclivity for a certain pattern in his plots.</p>\n\n\n\n<p>And that those are all, to use a computer science term, symbolic representations. Abstract concepts. So is ChatGPT actually understanding those abstract concepts? Does it understand that Goethe is a person? Educated guests here, probably not. But it does understand that Goethe refers to a certain, can draw a line in all the stuff that it has learned and know this is Goethe.</p>\n\n\n\n<p>It has a concept of what it thinks Goethe is. Then from there it can say, and he has done work on the following things, and these are plots. And so it kind of understands. There&#8217;s another line there about what a plot is, which is a very abstract concept.</p>\n\n\n\n<p>Does that mean it&#8217;s intelligent? Does that mean it understands? I don&#8217;t know. That&#8217;s my answer because I did biochemistry at university, and there&#8217;s also the question there, and it&#8217;s exactly the same question. It&#8217;s at what point do the biological machines, the biochemical machines, your actual proteins and things that are obviously on their own, unintelligent, and yet when they act in concerts, they produce a cell, and a living being.</p>\n\n\n\n<p>Where does that boundary exist? Is it gray? Is it a hard line? And the same for me is true of the intelligence question here. Intelligence is a, it&#8217;s an aglomeration of lots of small, well-defined things that when they start interacting, become more than the sum of their parts. Does it come down to the Turing test? I mean, the fact that people on support, little support popups on the web, have to ask, are you a human every now and then. It immediately says, we have AIs that have passed the Turing test long ago.</p>\n\n\n\n<p>But here in this case, like the extended Turing test is the thing actually intelligent? I don&#8217;t know. I genuinely don&#8217;t know the answer there. In some sense, yes, because it&#8217;s doing almost the same thing as we are, just in a different, with different delineations and different abstractions, but the process is probably the same.</p>\n\n\n\n<p>[00:15:33] <strong>Nathan Wrigley:</strong> Given that you&#8217;ve got a background in, forgive me, did you say biochemistry?</p>\n\n\n\n<p>[00:15:37] <strong>James Dominy:</strong> Yeah, biochemistry and computer science, bioinfomatics.</p>\n\n\n\n<p>[00:15:39] <strong>Nathan Wrigley:</strong> Yeah, do you have an intuition as to whether the substrate of the brain has some unique capacity that can lock intelligence into it? In other words, is there a point at which a computer cannot leap the hurdle? There&#8217;s something special about the brain, the way the brain is created? This piece of wetwear in our head.</p>\n\n\n\n<p>[00:16:00] <strong>James Dominy:</strong> Unpopular opinion, I think it comes down to brute force count. We&#8217;ve got trillions of cells. Large language models, I don&#8217;t know what the numbers are for GPT4, but we&#8217;re not at trillions yet. Maybe when we get there, I don&#8217;t know where the tipping point is, you know. Maybe when we get to tens of billions, or whatever number it happens to be, is the point where this thing actually becomes intelligent.</p>\n\n\n\n<p>And we would be unable to distinguish them from a human, other than the fact that we&#8217;re looking at a screen that, that we know it&#8217;s running on the chip in front of us. But if it&#8217;s over the internet and it&#8217;s on a machine running, or whether we&#8217;re talking to a person in the support center. Or we are at the McDonald&#8217;s kiosk of 2050 and being asked whether we want fries with that. If we can&#8217;t see the person who&#8217;s asking the question, if we&#8217;re at the drive-through, we can&#8217;t see the person. Do we care?</p>\n\n\n\n<p>[00:16:54] <strong>Nathan Wrigley:</strong> Interesting. You mentioned a couple of times large language models, often abbreviated just to LLM. My understanding at least, forgive me I&#8217;m, I really genuinely am no expert about this. This is the underpinning of how it works. I&#8217;m going to explain it in crude terms, and then I&#8217;m hoping you&#8217;ll step in and pad it out and make it more accurate.</p>\n\n\n\n<p>[00:17:12] <strong>James Dominy:</strong> I should caveat anything that I say here with I also am not an expert on these, but I will do what I can.</p>\n\n\n\n<p>[00:17:17] <strong>Nathan Wrigley:</strong> So a large language model, my understanding is that things like ChatGPT are built on top of this, and essentially it is vacuuming up the internet. Text, images, whatever data you can throw at it. And it&#8217;s consuming that, storing that. And then at the point where you ask it something, so write a sonnet in the style of Goethe, written by Shakespeare. It&#8217;s then making a best approximation, and it&#8217;s going through a process of, okay, what should the first word be? Right, we&#8217;ve decided on that. Now, let&#8217;s figure out the second word, and the third word and the fourth word. Until finally it ends in a full stop and it&#8217;s done.</p>\n\n\n\n<p>And that&#8217;s the process it&#8217;s going through. Which seems highly unintelligent. But then again, that&#8217;s what I&#8217;m doing now. I&#8217;m probably selecting in some way what the next word is and what the next word is. But yeah, explain to us how these large language models work.</p>\n\n\n\n<p>[00:18:03] <strong>James Dominy:</strong> I think that&#8217;s a pretty fair summation. I think the important bit that needs to be filled in there is that what we perceive and use as customers of AI systems in general is a layer of several different models. There is a lot of pre-processing that goes into our prompts and post-processing in terms of what comes out.</p>\n\n\n\n<p>But fundamentally the large language model is, yes, it&#8217;s strings of text generally. There are different systems that the AI images, image systems, are a different form of maths. Most of them, at least the ones that I know of, are mostly based on something called Stable Diffusion.</p>\n\n\n\n<p>We can chat about that separately, but large language models tend to be trained on a large pile of text where they develop statistical inferences for the likelihood of some sequence of words following some other sequence of words. So as you say, like, if I know that a pile of words were written by Goethe, then I can sub select that aspect of my trained data.</p>\n\n\n\n<p>And I&#8217;m personifying an AI here already. The AI can circumscribe, isolate a portion of its training set, and say, okay I will use this subset of my training, and use the statistical values for what words follow what other words that Goethe wrote. And then you will get something in the style of Goethe out.</p>\n\n\n\n<p>[00:19:29] <strong>Nathan Wrigley:</strong> It&#8217;s kind of astonishing that that works at all. That one word follows another in something which comes out as a sentence because, I don&#8217;t know if you&#8217;ve ever tried that experiment on your phone where you begin the predictive text. On my phone there&#8217;s there&#8217;s usually three words above the little typewriter, and it tries to say what the next word is based upon the previous word.</p>\n\n\n\n<p>[00:19:49] <strong>James Dominy:</strong> It&#8217;s not called auto corrupt for nothing.</p>\n\n\n\n<p>[00:19:50] <strong>Nathan Wrigley:</strong> Yeah, so you just click them at the end of that process, you have fantastic gibberish. It&#8217;s usually quite entertaining, and yet this system is able to, in some way just hijack that whole process and make it so that by the end the whole thing makes sense in isolation.</p>\n\n\n\n<p>It is Goethe. It looks like Shakespeare, sounds like Shakespeare, could easily be Shakespeare. How is it predicting into the future such that by the end, the whole thing makes sense? Is there more processing going on than, okay, just the next word. Is it reading backwards?</p>\n\n\n\n<p>[00:20:22] <strong>James Dominy:</strong> Yes absolutely. Again, not an expert on LLMs, but there is this thing called a Markov Model. Which is a much more linear chain. It&#8217;s used often for bioinformatics, for genome and predicting the most likely next amino acid or nucleic acid in a genomic or a proteomic sequence.</p>\n\n\n\n<p>And so Markov Models are very simple. They have a depth and that is how much history they remember of what they&#8217;ve seen. So you point a Markov Model at the beginning of the sequence of letters of nucleic, the ACGT&#8217;s. And then you want to say, okay, I&#8217;ve managed to sequence this off my organism. I&#8217;ve got a hundred bases and I want to know what the most likely one after that is, because that&#8217;s where it got cut off.</p>\n\n\n\n<p>You give it a hundred, maybe you have a buffer of 10. So it remembers the last ten. It sort of slides this window of visibility over the whole sequence and mathematically starts working out, you know, what comes after an A? Okay, 30% of the time it&#8217;s a C. 50% of the time it&#8217;s a G. And by the end of it, it can with reasonable accuracy to some value of how much information you&#8217;ve given it, predict okay, in this particular portion of 10 that I&#8217;ve seen, the next one should be T.</p>\n\n\n\n<p>And they get better as you give them more and more information. As you give them a bigger and bigger window. As you let them consume more and more memory whilst they&#8217;re doing their job, their accuracy increases.</p>\n\n\n\n<p>I imagine the same is true of large language models, because they do. They don&#8217;t just predict the next word, they operate on phrases, on whole sentences. At some point, maybe they already do, but I imagine they operate on whole paragraphs. And again, it depends on what you&#8217;re trying to produce. Like if you&#8217;re trying to produce a legal contract that&#8217;s got a fairly prescribed grammar and form to it. And you know, then like statistically you&#8217;re going to produce the same paragraph over and over again because you want the same effect out of contracts you do all the time.</p>\n\n\n\n<p>[00:22:22] <strong>Nathan Wrigley:</strong> You described this slider. That really got to the nub of it. I genuinely didn&#8217;t realize that it wasn&#8217;t doing any more than just predicting the next word. And because that&#8217;s the way I thought about it, I thought it was literally astonishing that it could throw together a sentence based upon just the next word, if it didn&#8217;t know what two words previously it had written.</p>\n\n\n\n<p>It&#8217;s back to my predictive text, which produces pure gobbledygook. But it still, occasionally, it goes down a blind alley, doesn&#8217;t it? Because although that is, presumably 99 times out of a hundred that will lead to a cogent sentence, which is readable. Occasionally it does this thing, which I think has got the name hallucinate, where it just gets slightly derailed and goes off in a different direction. And so produces something which is, I don&#8217;t know, inaccurate, just nonsense.</p>\n\n\n\n<p>[00:23:06] <strong>James Dominy:</strong> Yes. Well known for being confidently wrong for sure. I&#8217;ve experienced something similar, and I find that it is especially the case where you switch contexts. Like when you are asking it to do more than one thing at a time, and you make a change to the first thing that you expect to carry over into the context of the second task, and it just doesn&#8217;t. It gets confused.</p>\n\n\n\n<p>And then the two things, this is especially true in coding, where you ask it to produce one piece of code and a function here, and another piece of code and a function on the other side. And you expect them, those two functions to interoperate correctly. Which means that you have to get the convention, the interface between those two things, the same on both sides.</p>\n\n\n\n<p>But if you say, actually, I want this to be called Bob, that doesn&#8217;t necessarily translate. Again, I suppose this is my intuition. There are a lot of ways that that failure can happen. The most obvious one is that you&#8217;re doing too much and it&#8217;s run out of tokens.</p>\n\n\n\n<p>Tokens are sort of an abstraction. Sorry I used that word a lot. Computer scientist. Tokens are, they&#8217;re not strictly speaking individual words, but they are a rough approximation of a unit of knowledge, context. I don&#8217;t know what the right word here. They chose token, right? So, if you use the API for ChatGPT, one of the things that you pass is how many tokens is the call allowed to use?</p>\n\n\n\n<p>Because you are charged by tokens. And if you say only 30 tokens, you get worse answers than if you give it an allowance of a hundred tokens. Meaning that you might have given it a problem that exceeds the window that I was describing earlier. That sort of backtrack of context that it&#8217;s allowed to use.</p>\n\n\n\n<p>Or you give it to two contexts and together they just go over and then it&#8217;s confused because it doesn&#8217;t know which, again, I say this as a semi-educated guess. We as humans don&#8217;t have a good definition of what context means in this conversation. How do we expect a computer system to?</p>\n\n\n\n<p>[00:25:05] <strong>Nathan Wrigley:</strong> Just as you&#8217;ve been talking, in my head, I&#8217;ve come up with this analogy of what I now think AI represents to me, and it represents essentially a very, very clever baby. There&#8217;s this child crawling around on the ground, I really do mean an infant who you fully forgive for knocking everything over and, tipping things over, damaging things and what have you. And yet this child can speak. So on the one hand, it can talk to you, but it&#8217;s just making utterly horrific mistakes because it&#8217;s a baby and you forgive it for that. So I don&#8217;t know how that sits, but that&#8217;s what&#8217;s it landed in my head.</p>\n\n\n\n<p>[00:25:40] <strong>James Dominy:</strong> I wouldn&#8217;t say that AI is in its infancy anymore, but it&#8217;s probably in its toddler year, and maybe we need to watch out when it turns two.</p>\n\n\n\n<p>[00:25:47] <strong>Nathan Wrigley:</strong> So we&#8217;ve, done the sort of high level what is AI and all of that. That&#8217;s fascinating. But given that this is a WordPress event and it&#8217;s a WordPress podcast, let&#8217;s bind some of this stuff to the product itself. So WordPress largely is a content creation platform. You open it up, you make a post, you make a page, and typically into that goes text, sometimes images, sometimes video, possibly some other file formats. But let&#8217;s stick with the model of text and images. Why do we want, or how could we put AI into WordPress? What are the things that might be desirable in a WordPress site that AI could assist us with?</p>\n\n\n\n<p>[00:26:21] <strong>James Dominy:</strong> I am totally going to be stealing some ideas from the AI content creation things that have happened this morning. I mean, there&#8217;s the obvious answer. I need to generate a thousand words for my editor by 4:00 PM today. Hey, ChatGPT, can you generate a thousand words on topic, blah?</p>\n\n\n\n<p>I think there are a lot of other places. I&#8217;d be super surprised if this hasn&#8217;t actually happened already. But, hey ChatGPT, write me an article that gets me to the top five Google ranking.</p>\n\n\n\n<p>The other obvious place for me as a software developer is using it to develop code. Humans are inventive. We&#8217;re going to see a lot of uses for AI that we never thought of. That&#8217;s not a bad thing at all. The more ways that we can use AI, I think the better.</p>\n\n\n\n<p>Yes, there are questions about the dangers, and I&#8217;m sure that&#8217;s a question coming up later on, so I won&#8217;t dive into them now, but in the WordPress community, there&#8217;s content creation, but there&#8217;s also content moderation, where AI can probably help a lot. Analyze this piece of text to me and tell me is it spam? Does it contain harmful or hateful content?</p>\n\n\n\n<p>Again, it&#8217;s a case of you get what you give. There&#8217;s that story about Microsoft, I think it was Microsoft, and the chatbot that turned into a horrible Nazi racist within about two hours, having been trained on Twitter data. We need to be careful about that, certainly. I&#8217;m struggling to think of things beyond the obvious.</p>\n\n\n\n<p>[00:27:47] <strong>Nathan Wrigley:</strong> Well, I think probably it is going to be the obvious, isn&#8217;t it? Largely, people are popping in text and so having something which will allow you within the interface, whether you are in a page builder or whether you&#8217;re using the Gutenberg editor, the ability to interrupt that flow and say, okay, I&#8217;ve written enough now, ChatGPT, take over. Give me the next 300 words please. Or just read what I&#8217;ve written and can you just finish this? I&#8217;m almost there.</p>\n\n\n\n<p>[00:28:11] <strong>James Dominy:</strong> Yeah, we are doing it already, even if it&#8217;s a sort of fairly primitive flow now where we write some stuff in our block editor, copy it up, pop it in ChatGPT or Bard or whatever, and say, hey, this is too formal. Or this is not formal enough. And it&#8217;s really great at that. Make this sound more businessy. And it understands the word businessy. The tool integration, it&#8217;s obvious in a lot of ways, but I think there are going to be a lot of non-obvious integrations. Like, oh wow, I wish I thought of that, and, you know, made my millions off that product. I mean, Jetpack is doing it already, you know. I am able to actively engage with ChatGPT whilst I&#8217;m editing my blog post. Fantastic.</p>\n\n\n\n<p>Another thing that I&#8217;ve just thought of is oh, I run a WooCommerce site and I want to use, not necessarily ChatGPT, but some other AI system to analyze product sales and use that to promote, to change the listing on my product site, so that I can sell more product. That&#8217;s going to happen.</p>\n\n\n\n<p>[00:29:09] <strong>Nathan Wrigley:</strong> Yeah, given that it&#8217;s incredibly good at consuming data.</p>\n\n\n\n<p>[00:29:13] <strong>James Dominy:</strong> Yeah, or even generating it on the fly. Generate 300 different descriptions of this product and randomize them. Put them out there and see which one sells best. We are doing that manually already. It&#8217;s AB testing at a larger scale.</p>\n\n\n\n<p>[00:29:28] <strong>Nathan Wrigley:</strong> Yeah. You can imagine a situation where the AI runs the split test, but it&#8217;s divided over 300 variations. And it decides for itself which is the winner.</p>\n\n\n\n<p>[00:29:39] <strong>James Dominy:</strong> On a day-to-day basis.</p>\n\n\n\n<p>[00:29:40] <strong>Nathan Wrigley:</strong> On an hourly basis. Implements the winner and then begins the whole process over and over again. I also wonder if in WordPress there is going to be AI to help lay out things. So at the moment we have the block editor. It enables you to create fairly complex layouts. We also have page builders, which allow us to do the same thing. So it alludes to what I was speaking about a moment ago.</p>\n\n\n\n<p>Talking, so literally talking, as well as typing in. I would like a homepage. I would like that homepage to show off my plumbing business, and here&#8217;s my telephone number. I&#8217;d like to have a picture of me, or somebody doing some plumbing, some additional content down there. You get the picture?</p>\n\n\n\n<p>[00:30:17] <strong>James Dominy:</strong> Yeah, absolutely.</p>\n\n\n\n<p>[00:30:18] <strong>Nathan Wrigley:</strong> A few little prompts, and rather than spitting out text or an image, whole layouts come out. And we can pick from 300 different layouts. I&#8217;ll go for that one, but now make the buttons red. The AI takes over the design process in a way.</p>\n\n\n\n<p>[00:30:32] <strong>James Dominy:</strong> Yeah. I&#8217;m going to confess here that I&#8217;m absolutely stealing this opinion from the AI panel earlier. I think the danger for WordPress specifically there, is that that level of automation for us with human engagement and, you know, developing something through conversation with an AI, might actually skip WordPress entirely. Why must the AI choose WordPress to do this?</p>\n\n\n\n<p>Maybe if we as a WordPress community invest in making WordPress AI integrated, then yeah, absolutely. Then hopefully we&#8217;re first to market with that in a way. And then it will generate stuff in WordPress. But there&#8217;s no, there&#8217;s no reason for it to maybe choose a Wix page as a better solution for you as a plumber, who doesn&#8217;t update things very often. You just want a static, you know.</p>\n\n\n\n<p>Chances are it&#8217;ll just say, here is some HTML it does the job for you, it&#8217;s pretty. I made some images for you as well. And, all you need to do is run the sequence of commands to, SSH it up to provider of your choice. Or I have selected this provider because I know how much they all charge and this is the cheapest. Or you&#8217;ve asked for the fastest, whatever.</p>\n\n\n\n<p>[00:31:41] <strong>Nathan Wrigley:</strong> Oh, interesting, okay. So it&#8217;s not just bound inside the WordPress interface. Literally, put this in the cheapest place as of today. And then if it changes in the next 24 hours, just move it over there and change the DNS for me and.</p>\n\n\n\n<p>[00:31:53] <strong>James Dominy:</strong> One day. For sure. Yeah.</p>\n\n\n\n<p>[00:31:54] <strong>Nathan Wrigley:</strong> Okay. So that very nicely ties into the harms.</p>\n\n\n\n<p>[00:31:58] <strong>James Dominy:</strong> There it is.</p>\n\n\n\n<p>[00:31:58] <strong>Nathan Wrigley:</strong> What we&#8217;ve just laid out is potentially quite harmful to a lot of the jobs that people do inside of WordPress. We&#8217;ve just described a workflow in which many of the things that we would charge clients for, which we could potentially get AI to do. Whether that&#8217;s a voice interface or a visual interface or a type, we&#8217;re typing in.</p>\n\n\n\n<p>So that is concerning, if we are giving AI the option to put us out of work. And I know at the moment, this is the hot topic. I&#8217;m pretty sure that there&#8217;s some fairly large organizations who have begun this process already. They&#8217;ve taken some staff who are doing jobs which can be swapped out for AI, and they&#8217;ve shed those staff.</p>\n\n\n\n<p>And whilst we&#8217;re in the beginning phase of that, it seems like we can swallow so much of people getting laid off. The problem, potentially is, if we keep laying people off over and over and over again and we give everything over to the AI, we suddenly are in a position where, well, there&#8217;s no humans in this whole process anymore. Does any of that give you pause for thought?</p>\n\n\n\n<p>[00:32:53] <strong>James Dominy:</strong> Yeah, it certainly does. I think we should temper our expectations of the capabilities of AI. So there&#8217;s a technical term called a terminal goal. The delineation between specific artificial intelligences and machine learning, in that world, and the concept of the general artificial intelligences, which is what everyone thinks of when they think of the I in artificial intelligence, is an AI that is capable of forming its own terminal goals.</p>\n\n\n\n<p>Its own, don&#8217;t get me wrong, like we have AIs that are capable of forming what are called intermediate nodes. If you tell an AI of a particular type to go and do a particular thing, then it is capable of forming intermediate steps. In order to do the thing you&#8217;ve told me, I need to first do this, which requires me to do that. And, you know, it forms a chain of goals, but none of those goals are emergent from the AI. They are towards a goal we have given the AI externally.</p>\n\n\n\n<p>That ability to form a goal internally is the concept of a terminal goal. And we don&#8217;t have, large language models don&#8217;t have terminal goals. Large language models, stable diffusion, all of the different algorithms that are hot topics today, are all couched within the idea of solving a problem given to them as an input.</p>\n\n\n\n<p>Which means there&#8217;s always going to need to be a human. At least with what we&#8217;ve got now. No matter how good these models get, how much brain power we give them. And this maybe is going against what I said earlier of like, I think it&#8217;s probably a quantity thing.</p>\n\n\n\n<p>Maybe there&#8217;s a tipping point. Maybe there&#8217;s a tipping point where the intermediate goal that it forms is indistinguishable from a terminal goal in a human brain. But for the moment, I think there always needs to be a human there to give the AI the task to solve. Open AI isn&#8217;t just running servers randomly just doing stuff. It spends its computational time answering users prompts and questions.</p>\n\n\n\n<p>[00:34:48] <strong>Nathan Wrigley:</strong> So if we pursue artificial intelligence research, and the end goal is to create an AGI, then presumably at some point we&#8217;ve got something which is indistinguishable from a human because it can set its own goals.</p>\n\n\n\n<p>[00:35:02] <strong>James Dominy:</strong> The cyberpunk dystopia, right?</p>\n\n\n\n<p>[00:35:03] <strong>Nathan Wrigley:</strong> But we&#8217;re not there yet. This is a ways off, my understanding at least anyway. But in the more short term, let&#8217;s bind it to the loss of jobs.</p>\n\n\n\n<p>[00:35:11] <strong>James Dominy:</strong> In my workshop this morning, I think the primary point that I wanted to get across is, if you are currently in the WordPress community, employed and or making an income out of WordPress. ChatGPT, Bard, generative AI, large language models are a tool that you should be learning to use. They&#8217;re not going to replace you.</p>\n\n\n\n<p>Maybe that&#8217;s less true on the content generation side, because large language models are particularly good at that. But there&#8217;s a flip side to that because on the software development side, programming languages have very strict grammars, which means the statistical model is particularly good at producing output for programming languages.</p>\n\n\n\n<p>It&#8217;s not good at handling the large amounts of complexity that can exist in large pieces of code. But equally so, I mean, if you ask it to give you a hundred items of things to do in Athens, whilst I&#8217;m totally, totally, working hard at a conference, uh, then you are probably going to get repeats. You might run into the confusion problem, the hallucination issue at some point there, where just a hundred is too much.</p>\n\n\n\n<p>Nobody has ever written an article of a hundred things to do in Athens in a day. I don&#8217;t know, I haven&#8217;t tried that. I&#8217;m guessing that there are going to be limitations. So some jobs are more in threat than others, but I think that if you&#8217;re already in the industry, or in the community and working with it, go with it and, absorb the tools into your day-to-day flow.</p>\n\n\n\n<p>It&#8217;s going to make you better at what you do. Faster at what you do. Hopefully able to make more money. Hopefully able to communicate with more people, translations et cetera. Make your blog multilingual. There are a lot of things that you can use it for that aren&#8217;t immediately coming after your job.</p>\n\n\n\n<p>The problem for me, and this again is the point that I was trying to get across in the workshop, the problem is the next generation. The people who are getting into WordPress today and tomorrow, and in six months time. Who are coming into a world where AI is already in such usage that it&#8217;s solving the simple problems. And the same as true, my editor wants 200 words or whatever on fun things to do in Athens overnight.</p>\n\n\n\n<p>Okay, great. ChatGPT can do that for the editor. Why does he need a junior content writer anymore? But the problem is, I mean, we&#8217;ve already said, sometimes it&#8217;s spectacularly wrong. Does that editor always have the time to actually vet the output? Probably not. And so the job of that junior is going to transform into, they need to be a subeditor. They need to be a content moderator almost, rather than a content generator.</p>\n\n\n\n<p>But that&#8217;s a skill that only comes from having written the content yourself. We learn by making mistakes, and if we are not making those mistakes because AI is generating the stuff, and either not making mistakes or making mistakes that we haven&#8217;t made before ourselves, and thus don&#8217;t recognize his mistakes. So my fear of the job losses aspect of AI is not that it&#8217;s going to wipe out people who are working already. It&#8217;s going to make that barrier to entry for the next generation, it&#8217;s knocking the bottom rung out of the ladder.</p>\n\n\n\n<p>And unless we change the ways that we teach people as they are entering the community, the WordPress community, the industry, and all the industries which AI is going to affect, the basics, and we focus on it. You know, it&#8217;s a catch 22. We have to teach people to do stuff without AI, so they can learn the basics. But at the same time, they also have to learn how to use AI so they can do the basics in the modern world.</p>\n\n\n\n<p>And I mean, we get back to that old debate like, why am I learning trigonometry in school? Because maybe someday it actually helps you do your job. Admittedly, so far, not so much. But I will say this. History, I did history in school. That has surprisingly turned out to be one of the most useful subjects I ever did, just because it taught me how to write. Which I didn&#8217;t learn in English class. Go figure.</p>\n\n\n\n<p>[00:39:17] <strong>Nathan Wrigley:</strong> It sounds like you are quite sanguine for now. If you are in the space and listening to this podcast now, everything is fine right now.</p>\n\n\n\n<p>[00:39:26] <strong>James Dominy:</strong> Yeah.</p>\n\n\n\n<p>[00:39:27] <strong>Nathan Wrigley:</strong> Maybe less sanguine for the future. Given that, do you think that AI more broadly needs to be corralled. There need to be guardrails put in place. There needs to be legislation. I don&#8217;t know how any of that works, but manufacturers of AI being put under the auspices of, well it would have to be governments, I guess. But some kind of system of checks and balances to make sure that it&#8217;s not, I don&#8217;t know, deliberately producing fakes. Or that the fakes are getting, the hallucinations are getting minimized. That it&#8217;s not doing things that aren&#8217;t in humanity&#8217;s best interests.</p>\n\n\n\n<p>[00:39:59] <strong>James Dominy:</strong> Absolutely. Yes. Although I&#8217;m not sure how we could do a good job of it, to be fair. The whole concept of, we want AIs to operate in humanity&#8217;s best interests. Who decides? The alignment problem crops up here where, it&#8217;s well known that we can train an AI to do something we think that it&#8217;s going to do, and it seems to be doing that thing until suddenly it doesn&#8217;t.</p>\n\n\n\n<p>And we just get some weird output. And then when we go digging, we realize actually it was trying to solve an entirely different problem to what we thought we were training it on, that just happened to have a huge amount of overlap with the thing that we did. But when we get to those edge cases, it goes off in what we think is a wildly wrong direction. But it is solving the problem that it was trained to solve. We just didn&#8217;t know we were training it to solve that problem.</p>\n\n\n\n<p>As far as regulation goes. Yes, I think regulation, it&#8217;s coming. I really want to say nobody could be stupid enough to put weapons in the hands of an AI. The human race has proved me wrong several thousand times already in history. Yeesh, I personally think that that&#8217;s an incredibly stupid idea. But then the problem becomes what&#8217;s a weapon?</p>\n\n\n\n<p>Because a weapon these days can be something as subtle as enough ability to control trading, high frequency trading. Accidentally crash a stock market. It&#8217;s already happened. Accidentally, and again, I&#8217;m air quoting the accidentally here, accidentally crash your competitor&#8217;s stock, or another nation&#8217;s stock market. AI is there, is being used as a validly useful tool to participate in the economy, but the economy can be used as a weapon.</p>\n\n\n\n<p>Putting AI in control of the water infrastructure in arid countries. Optimization, it can do those jobs a lot better. It can see almost instantaneously when there&#8217;s a pressure drop. So there&#8217;s a leak in this section of the pipe. Somebody needs to go fix it. And also it can just shut off the water to an entire section of the city because, I don&#8217;t know, it feels like it. Because for some reason it is optimizing for a different goal than we actually think we gave it.</p>\n\n\n\n<p>The trick is we can say, we can input into ChatGPT, I want you to provide water to the entire city in a fair and equitable way. That doesn&#8217;t mean that&#8217;s what it&#8217;s going to do. We just think that that&#8217;s what it&#8217;s going to do. We hope.</p>\n\n\n\n<p>[00:42:26] <strong>Nathan Wrigley:</strong> I think we kind of come back to where we started. If we had a crystal ball, and we could stare five, two years, three years, 10 years into the future. That feels like it would be a really great thing to have at the moment. There&#8217;s obviously going to be benefits. It&#8217;s going to make work certainly more productive. It&#8217;s going to make us be able to produce more things. But as you&#8217;ve just talked over the last 20 minutes or so, there&#8217;s also points of concern and things to be ironed out in the near term.</p>\n\n\n\n<p>[00:42:52] <strong>James Dominy:</strong> Absolutely, yeah.</p>\n\n\n\n<p>[00:42:53] <strong>Nathan Wrigley:</strong> We&#8217;re fast running out of time, so I think we&#8217;ll wrap it up if that&#8217;s all right? A quick one James, if somebody is interested, you&#8217;ve planted the seed of interest about AI and they want to get in touch with you and natter about this some more, where would they do that?</p>\n\n\n\n<p>[00:43:06] <strong>James Dominy:</strong> The best way is probably email. I am not a social person in the social media sense. I don&#8217;t have Twitter. I don&#8217;t do any of that. So I&#8217;m probably terrible for this when I think about it. My email is, J for Juliet, G for golf, my surname D O M for mother, I, N for November, Y for yankee at gmail.com. Please don&#8217;t spam. Please don&#8217;t get AI to spam me.</p>\n\n\n\n<p>[00:43:30] <strong>Nathan Wrigley:</strong> Yeah, yeah. James Dominy, thank you so much for joining us today.</p>\n\n\n\n<p>[00:43:34] <strong>James Dominy:</strong> Thank you for the opportunity. It&#8217;s been great fun, and I&#8217;ve really enjoyed being able to kind of deep dive into a lot of the stuff I just had to gloss over in the workshop. Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/jamesdominy/?originalSubdomain=ie\">James Dominy</a>.</p>\n\n\n\n<p>James is a computer scientist with a masters degree in bioinformatics. He lives in Ireland, working at the WPEngine Limerick office.</p>\n\n\n\n<p>This is the second podcast recorded at WordCamp Europe 2023 in Athens. James gave a talk at the event about the influence of AI on the WordPress community, and how it’s going to disrupt so many of the roles which WordPressers currently occupy.</p>\n\n\n\n<p>We talk about the recent rise of ChatGPT and the fact that it’s made AI available to almost anyone. In less than twelve months many of us have gone from never touching AI technologies to using them on a daily basis to speed up some aspect of our work.</p>\n\n\n\n<p>The discussion moves on to the rate at which AI systems might evolve, and whether or not they’re truly intelligent, or just a suite of technologies which masquerade as intelligent. Are they merely good at predicting the next word or phrase in any given sentence? Is there a scenario in which we can expect our machines to stop simply regurgitating text and images based upon what they’ve consumed; a future in which they can set their own agendas and learn based upon their own goals?</p>\n\n\n\n<p>This gets into the subject of whether or not AI is in any meaningful way innately intelligent, or just good at making us think that it is, and whether or not the famous Turing test is a worthwhile measure of the abilities of an AI.</p>\n\n\n\n<p>James’ background in biochemistry comes in handy as we turn our attention to whether or not there’s something unique about the brains we all possess, or if intelligence is merely a matter of the amount of compute power that an AI can consume. It’s more or less certain that given time, machines will be more capable than they are now, so when, if ever, does the intelligence Rubicon get crossed?</p>\n\n\n\n<p>The current AI systems can be broadly classified as Large Language Models, or LLMs for short, and James explains what these are and how they work. How can they create a sentence word by word if they don’t have an understanding of where each sentence is going to end up? James explains that LLMs are a little more complex than just handling one word at a time, always moving backwards and forwards within their predictions to ensure that they’re creating content which makes sense, even if it’s not always factually accurate.</p>\n\n\n\n<p>We then move on from the conceptual understanding of AI to more concrete ways it can be implemented. What ways can WordPress users implement AI right now, and what innovations might we reasonably expect to be available in the future? Will we be able to get AI to make intelligent decisions about our website’s SEO or design, and therefore be able to focus our time on other, more pressing, matters?</p>\n\n\n\n<p>It’s a fascinating conversation whether or not you’ve used AI tools in the past.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://openai.com/blog/chatgpt\">ChatGPT</a></p>\n\n\n\n<p><a href=\"https://stablediffusionweb.com/\">Stable Diffusion</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Markov_model\">Markov Model</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jun 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Akismet: How to Add CAPTCHA and reCAPTCHA to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://akismet.com/?p=70973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://akismet.com/blog/wordpress-captcha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25456:\"<p>Implementing a CAPTCHA or reCAPTCHA system is a highly effective way to protect your WordPress website or ecommerce business from spam and bots, which is crucial for ensuring online security.</p>\n\n\n\n<p>All that sounds great, but the effort involved in solving a CAPTCHA often results in reduced conversions. According to <a href=\"https://moz.com/blog/having-a-captcha-is-killing-your-conversion-rate\">Moz</a>, including a CAPTCHA could result in a loss of 3.2% of conversions. Yikes!</p>\n\n\n\n<p>That&#8217;s why today, we&#8217;ll explain the problem with the traditional CAPTCHA setup, offer a stand-out alternative, and provide steps to add CAPTCHA and reCAPTCHA to your WordPress site, if that&#8217;s still the route you feel most comfortable with.</p>\n\n\n\n<p>After following this guide, your website will be safer and more secure for your visitors.</p>\n\n\n\n<p>Let&#8217;s get started!</p>\n\n\n\n<span id=\"more-70973\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">The problem with traditional CAPTCHA solutions</h2>\n\n\n\n<p>While <a href=\"https://support.google.com/a/answer/1217728?hl=en#:~:text=CAPTCHA%20(Completely%20Automated%20Public%20Turing,known%20as%20challenge%2Dresponse%20authentication.\">CAPTCHA</a> systems have been widely adopted for their ability to prevent spam and bot activity, they do come with a number of drawbacks. Make sure you’re aware of these downsides before you use a WordPress CAPTCHA plugin.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. They’re challenging for those with visual impairments</h3>\n\n\n\n<p>Traditional CAPTCHA systems often rely on distorted images of text, making it difficult for users with visual impairments to solve them. This can lead to accessibility issues and discourage visitors from interacting with your site.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image12.png\" alt=\"example of a CAPTCHA asking the user to select squares with red spheres\" class=\"wp-image-70975\" width=\"385\" height=\"463\" />\n\n\n\n<h3 class=\"wp-block-heading\">2. They create a frustrating experience&nbsp;</h3>\n\n\n\n<p>CAPTCHAs can be frustrating and time-consuming to solve, particularly when the distorted text is difficult to read. This annoyance can cause people to leave your site without completing their intended action, such as submitting a form or making a purchase. Sometimes, visitors may even have to solve multiple CAPTCHAs —&nbsp;a real test of endurance.</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. They can generate false positives</h3>\n\n\n\n<p>CAPTCHA systems can sometimes incorrectly identify real human users as bots, preventing them from accessing your site or submitting forms. This can lead to a loss of leads, customers, or subscribers.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. They’re easily bypassed by sophisticated bots</h3>\n\n\n\n<p>As bots become more advanced, they’re increasingly able to bypass traditional CAPTCHA systems, rendering them less effective at preventing spam and malicious activity on your site.</p>\n\n\n\n<h3 class=\"wp-block-heading\">5. They can create a negative user experience</h3>\n\n\n\n<p>Implementing CAPTCHA systems can negatively impact your site&#8217;s user experience, particularly when the CAPTCHAs are overly complex or difficult to solve. This can lead to lower visitor satisfaction and, ultimately, decreased engagement and conversions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">6. They can lead to lower conversion rates</h3>\n\n\n\n<p>As mentioned above, the frustrating experience of solving CAPTCHAs can lead to users abandoning your site before completing their intended actions. This can result in lower conversion rates for your business.</p>\n\n\n\n<h3 class=\"wp-block-heading\">7. They can cause higher page load times</h3>\n\n\n\n<p>Implementing CAPTCHA systems can also contribute to slower page load times, as they often require additional resources and scripts to load. This can negatively impact your site&#8217;s performance and search engine rankings.</p>\n\n\n\n<p>Given these challenges, it&#8217;s important to find a solution that’s both effective at preventing spam and bots, while also providing a positive user experience. That&#8217;s where Akismet comes in to save the day.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How does Akismet address these issues?</h2>\n\n\n\n<p>Akismet addresses the shortcomings of traditional CAPTCHA systems by employing advanced algorithms and a continuously-updated database of spam signatures. It can effectively identify and block spam and malicious activity without any user input and without annoying barriers for site visitors.&nbsp;</p>\n\n\n\n<p><strong>The result is enhanced accessibility, a superior user experience, and fewer false positives.&nbsp;</strong></p>\n\n\n\n<p>Even the most sophisticated bots can be identified and blocked by Akismet due to its advanced spam detection technology and constantly-updated database. By staying ahead of emerging threats, Akismet ensures your online presence remains secure and your valuable content and data are safeguarded.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The benefits of using Akismet over CAPTCHA</h2>\n\n\n\n<p>Given the challenges associated with traditional CAPTCHA solutions, Akismet presents several benefits that make it a compelling and superior alternative for WordPress site owners.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Greater user-friendliness</h3>\n\n\n\n<p>Akismet doesn&#8217;t require users to solve puzzles or enter codes, ensuring a more pleasant and frustration-free browsing experience. It operates seamlessly in the background, allowing visitors to focus on your content and offerings without any distractions or interruptions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Improved accessibility for all users</h3>\n\n\n\n<p>Akismet can be used by people with vision impairments because it doesn’t use visual puzzles to block spam and bots. This approach makes sure that your website is user-friendly and welcoming to a diverse audience, creating a positive online environment for everyone.</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Greater accuracy in spam detection</h3>\n\n\n\n<p>Akismet uses advanced algorithms and a vast database of spam signatures to minimize false positives. This means that genuine users can access and interact with your site without being mistakenly identified as bots. This accurate spam detection helps build a trustworthy online presence and improve user experiences.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Robust effectiveness against malicious activity</h3>\n\n\n\n<p>Akismet is highly effective at identifying and blocking spam and malicious activity, including sophisticated bots that can bypass traditional CAPTCHA systems. Its constantly-updated database and advanced spam detection technology ensure your website remains secure and protected from emerging threats.</p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Optimized performance and load times</h3>\n\n\n\n<p>Akismet runs in the background and won&#8217;t slow down your website by using extra data or running unnecessary scripts. This means your website will stay fast and responsive for your visitors, which can help improve your search engine rankings and create a great browsing experience.</p>\n\n\n\n<p>If this sounds like a solid prospect, you&#8217;ll be delighted to hear that we&#8217;re discussing how to install and set up Akismet on WordPress next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to add Akismet to WordPress</h2>\n\n\n\n<p>Incorporating <a href=\"https://akismet.com/\">Akismet</a> into WordPress comment and contact forms is a breeze, and you can accomplish it in just a few steps. However, the procedure might differ slightly depending on the contact form or plugin you&#8217;re using. Let&#8217;s explore how it&#8217;s done!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install the Akismet plugin</h3>\n\n\n\n<p>Akismet can be used for free to get rid of spam <a href=\"https://akismet.com/blog/wordpress-pros-and-cons-of-enabling-comments/\">comments</a> and harmful form submissions on your non-commercial site. Websites run for commercial purposes can choose from several affordable premium options.</p>\n\n\n\n<p>First, install and activate the plugin.</p>\n\n\n\n<p>To do this, log in to your WordPress dashboard, go to the <strong>Plugins</strong> tab, click <strong>Add New</strong>, and search for it. The plugin is usually included in the top &#8220;<strong>Featured</strong>&#8221; list.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image6.png\" alt=\"finding Akismet in the WordPress repository\" class=\"wp-image-70976\" width=\"450\" height=\"197\" />\n\n\n\n<p>To install the plugin, click on<strong> Install Now</strong> and then <strong>Activate</strong>. After activation, go to <strong>Settings</strong> and select <strong>Akismet Anti-Spam</strong>. Under <strong>Settings</strong>, locate the <strong>API key</strong> field.</p>\n\n\n\n<p>You can get the key by going to the Akismet website and creating an account.&nbsp;</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image7.png\" alt=\"Aksimet homepage with the text, \" />\n\n\n\n<p>Once you finish the signup process on the website, log in to your new account then locate <strong>My Account</strong> and choose <strong>Add Subscription</strong>.</p>\n\n\n\n<p>You can select your desired plan next. The <strong>Personal</strong> plan is free for individual website use if your site is considered &#8220;non-commercial.&#8221;</p>\n\n\n\n<p>After registering, you’ll receive an API key in the My Account section. Copy this key and then navigate to the WordPress dashboard&#8217;s <strong>Settings → Akismet Anti-Spam</strong> screen. Next, paste the key into the <strong>API Key</strong> field.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image1.png\" alt=\"Akismet settings in WordPress\" class=\"wp-image-70979\" width=\"450\" height=\"267\" />\n\n\n\n<p>Click on <strong>Save Changes</strong> to finish.</p>\n\n\n\n<p>Akismet will automatically filter comment spam and put it in a queue for review on the dashboard. But if you want it to work on your contact form(s), you&#8217;ll need to complete another step.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Add Akismet to your contact form</h3>\n\n\n\n<p>By default, WordPress does not have a contact form feature. Therefore, you’ll need to use plugins to include contact forms on their sites. The method to add these forms will vary based on the plugin being used.</p>\n\n\n\n<p>Some popular contact form plugins, including <a href=\"https://jetpack.com/features/discussion/contact-forms/\">Jetpack</a>, already have Akismet support built-in.&nbsp;</p>\n\n\n\n<p>Other plugins necessitate setting up Akismet add-ons to incorporate spam protection into their forms. <a href=\"https://www.gravityforms.com/\">Gravity Forms</a> is the most popular example of this.</p>\n\n\n\n<p>Still other WordPress plugins like <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a> require a code snippet to add Akismet support.</p>\n\n\n\n<p>Thankfully, it&#8217;s easy to configure Akismet on your contact forms, no matter which method you choose.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Set up the anti-spam settings in Akismet</h3>\n\n\n\n<p>Akismet is very much a set-it-and-forget-it type of tool. Just install, activate, and you&#8217;re basically done. But it also allows you to control how to handle contact form spam a bit more precisely.</p>\n\n\n\n<p>The plugin is configured, by default, to send flagged comments to a holding queue located in the <strong>Comments</strong> section of the WordPress dashboard so that you can review them later. You can also set up Akismet to delete spam entirely.</p>\n\n\n\n<p>If this sounds appealing, just go to<strong> Settings → Akismet Anti-Spam</strong> and locate the <strong>Settings</strong>.&nbsp;</p>\n\n\n\n<p>Scroll down to the section called <strong>Strictness</strong>.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image10.png\" alt=\"Strictness settings for Akismet\" class=\"wp-image-70980\" width=\"450\" height=\"170\" />\n\n\n\n<p>Akismet is good at identifying which messages are spam and which ones are legitimate, which means you can delete the spam messages from your contact form without worry. However, if you want to keep all messages, you can select the option to <strong>Always put spam in the Spam folder for review</strong>.</p>\n\n\n\n<p>Remember that Akismet stores spam comments for 15 days before they&#8217;re deleted. So, if you go for this option, review your queue regularly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Still want to use CAPTCHA?</h2>\n\n\n\n<p>Although we suggest using Akismet due to its ease-of-use and success in blocking spam and bots, we realize that certain users may still want to learn how to add CAPTCHA to WordPress. This section will provide clear instructions on how to integrate both CAPTCHA and reCAPTCHA into a WordPress contact form.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. How to add CAPTCHA to a WordPress contact form</h3>\n\n\n\n<p>Although most well-known contact form plugins include CAPTCHA functionality, you can also manually incorporate CAPTCHA into any form element on WordPress that&#8217;s being misused. This not only includes contact forms, but also comment forms, <a href=\"https://akismet.com/blog/how-to-enable-or-disable-user-registration-in-wordpress/\">user registration pages</a>, login pages, and opt-in forms.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 1: Install and activate the Friendly CAPTCHA for WordPress plugin</h4>\n\n\n\n<p>For the purposes of this tutorial, we&#8217;re using the <a href=\"https://wordpress.org/plugins/friendly-captcha/\">Friendly CAPTCHA for WordPress</a> plugins, though there are other options available.&nbsp;</p>\n\n\n\n<p>Go to your WordPress dashboard then to <strong>Plugins → Add New</strong> and search for the plugin by name.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image8-1.png\" alt=\"Friendly Captcha for WordPress plugin\" class=\"wp-image-70982\" width=\"225\" height=\"188\" />\n\n\n\n<p>Once you locate it, click <strong>Install → Activate</strong>.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 2: Add the site key and secret key</h4>\n\n\n\n<p>To input your<strong> </strong>Site key and Secret key, locate<strong> Friendly Captcha</strong> in the dashboard, then click <strong>Settings</strong>.</p>\n\n\n\n<p>Then go to the <a href=\"https://friendlycaptcha.com\">Friendly Captcha</a> website and create an account. Pick a plan, then copy your site key.&nbsp;</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image5.png\" alt=\"creating a Friendly Captcha account\" class=\"wp-image-70983\" width=\"450\" height=\"199\" />\n\n\n\n<p>Go back to your WordPress installation and paste in the<strong> Site key</strong> in the appropriate field. Then go back to your account on the website and generate an API key by typing in a name for it then clicking <strong>Create API Key.</strong>&nbsp;</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image13.png\" alt=\"creating an API key\" class=\"wp-image-70984\" width=\"450\" height=\"195\" />\n\n\n\n<h4 class=\"wp-block-heading\">Step 3: Finish configuring settings</h4>\n\n\n\n<p>For this tutorial, please select the comment form box to enable forms and keep all other settings at their default values to configure the remaining options based on your preferences.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Save and view</h4>\n\n\n\n<p>Once you&#8217;re done making changes, click <strong>Save Changes,</strong> then visit a live blog post to verify the comment form is working as intended.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. How to add reCAPTCHA to a WordPress contact form</h3>\n\n\n\n<p>Google reCAPTCHA adds an extra layer of protection to your contact forms, using a two-step verification process. This tool can help stop bots and spammers, as they&#8217;ll need to pass the reCAPTCHA test. You can use a WordPress CAPTCHA plugin to get the job done. Here&#8217;s how you can incorporate it into your WordPress contact form:</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 1: Install and activate a WordPress reCAPTCHA plugin</h4>\n\n\n\n<p>First, install and activate the <a href=\"https://wordpress.org/plugins/simple-google-recaptcha/\">Simple Google reCAPTCHA plugin</a>. Just search for it by name under <strong>Plugins → Add New</strong>. Then click <strong>Install → Activate</strong>.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image11.png\" alt=\"the Simple Google reCAPTCHA plugin\" class=\"wp-image-70985\" width=\"450\" height=\"251\" />\n\n\n\n<p>After activation, navigate to<strong> Settings → Google reCAPTCHA</strong> to configure the plugin settings.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 2: Configure the plugin settings</h4>\n\n\n\n<p>The plugin will prompt you to enter Google reCAPTCHA keys. You can obtain these keys for free from the official reCAPTCHA website by clicking the <strong>register your domain</strong> link at the top of the page.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image2.png\" alt=\"warning to register your domain \" class=\"wp-image-70986\" width=\"450\" height=\"65\" />\n\n\n\n<h4 class=\"wp-block-heading\">Step 3: Obtain reCAPTCHA API keys by registering your website</h4>\n\n\n\n<p>The <strong>register your domain</strong> link directs you to the Google reCAPTCHA website, where you can register your site to work with reCAPTCHA.</p>\n\n\n\n<p>Sign in with your Google account, and you&#8217;ll see the <strong>Register a new site</strong> page. Enter the necessary basic information to register your site.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image14.png\" alt=\"registering a site with Google\" class=\"wp-image-70987\" width=\"450\" height=\"190\" />\n\n\n\n<p>In the <strong>Label</strong> field, input your website name or any name of your choice to help you identify your site later.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Add a new site</h4>\n\n\n\n<p>Next, choose the <strong>reCAPTCHA V2</strong> radio button to reveal two new options.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image9-1.png\" alt=\"options for reCAPTCHA type\" class=\"wp-image-70988\" width=\"450\" height=\"129\" />\n\n\n\n<p>To add the reCAPTCHA checkbox to your site, select the first option,<strong> I&#8217;m not a robot </strong>checkbox.</p>\n\n\n\n<p>In the <strong>Domains</strong> text box, add the domain name of your website.</p>\n\n\n\n<p>You can also add multiple domains or subdomains by clicking the plus <strong>+</strong> icon, enabling you to use the same API keys across different websites.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 5: Add domain and email to your reCAPTCHA site</h4>\n\n\n\n<p>Google will automatically add your email address under <strong>Owners</strong>. You can also add another email if desired. Then accept the terms of service.</p>\n\n\n\n<p>Select the <strong>Send alerts to owners</strong> checkbox to allow Google to send emails if they detect any misconfigurations or suspicious activity.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 6: Submit and register your WordPress site</h4>\n\n\n\n<p>After completing the form, click <strong>Submit</strong> to register your site.</p>\n\n\n\n<p>Google reCAPTCHA will display a success message, along with the site key and secret key.</p>\n\n\n\n<p>Use these API Keys in your website&#8217;s plugin settings.</p>\n\n\n\n<p>Navigate to <strong>Settings → Google reCAPTCHA</strong> from your WordPress dashboard.</p>\n\n\n\n<p>On the <strong>Settings</strong> page, paste the site key and secret key.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image4.png\" alt=\"creating Google reCAPTCHA keys\" class=\"wp-image-70989\" width=\"450\" height=\"105\" />\n\n\n\n<p>The plugin will incorporate reCAPTCHA verification into the WordPress comment form, registration form, reset password form, new password form, and login form.</p>\n\n\n\n<p>You can disable reCAPTCHA on the login form by selecting the appropriate checkbox.</p>\n\n\n\n<p>Remember to click <strong>Save Changes</strong> to store the API keys and activate reCAPTCHA.</p>\n\n\n\n<p>You have now successfully added reCAPTCHA to your WordPress comment form. Check the comment section of your blog posts to ensure it&#8217;s working correctly.</p>\n\n\n\n<p>So now you know how to add CAPTCHA or reCAPTCHA to your WordPress contact forms. Although these options can reduce spam and bot activity, we suggest using Akismet instead because it is easy to use, more accessible, and effective against advanced bots.</p>\n\n\n\n<p>Regardless of the solution you choose, however, keeping your WordPress site secure from spam and malicious activity is crucial for maintaining a positive user experience, safeguarding your online presence, and protecting your reputation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions about CAPTCHA and reCAPTCHA</h2>\n\n\n\n<p>Still curious about CAPTCHA, reCAPTCHA, and how to safeguard the contact forms on your website? Let&#8217;s take a look at some answers to the most commonly asked questions on the subject.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What is CAPTCHA?</h3>\n\n\n\n<p>CAPTCHA, which stands for “Completely Automated Public Turing test to tell Computers and Humans Apart”, is a security measure used on websites to prevent automated bots from submitting forms, leaving comments, or performing other actions that should only be done by human users. CAPTCHAs typically require users to solve visual puzzles — such as identifying distorted text or selecting specific images — to prove that they’re not bots.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What is reCAPTCHA?</h3>\n\n\n\n<p>reCAPTCHA is a more advanced version of CAPTCHA developed by Google. It improves upon traditional CAPTCHA systems by incorporating machine learning and advanced risk analysis techniques to better differentiate between human users and bots. reCAPTCHA is designed to be more user-friendly, with some versions requiring people only to click a checkbox.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/06/image3.png\" alt=\"I\'m not a robot checkbox\" class=\"wp-image-70990\" width=\"315\" height=\"86\" />\n\n\n\n<h3 class=\"wp-block-heading\">What is Akismet?</h3>\n\n\n\n<p>Akismet is a powerful anti-spam solution for WordPress websites, developed by Automattic, the company behind WordPress.com. It uses advanced algorithms and a continuously-updated database of spam signatures to identify and block spam comments and form submissions, without requiring user input or creating accessibility barriers. Akismet operates in the background (kind of like an invisible CAPTCHA, in a sense), providing a seamless and user-friendly browsing experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Is Akismet better than CAPTCHA and reCAPTCHA?</h3>\n\n\n\n<p>While each solution has its own advantages, Akismet is generally considered more user-friendly and accessible compared to CAPTCHA and reCAPTCHA. It doesn&#8217;t require users to solve puzzles or enter codes, making it easier for those with visual impairments and providing a smoother browsing experience overall. Akismet is also highly effective at blocking spam and bots, even as they evolve and become more sophisticated.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Does Akismet integrate with contact form plugins like Contact Form 7?</h3>\n\n\n\n<p>Yes, Akismet integrates with many popular WordPress contact form plugins, including Contact Form 7. By connecting Akismet to your contact form plugin, you can effectively protect your forms from spam submissions without the need for CAPTCHA or reCAPTCHA.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What are real-world examples of sites using Akismet?</h3>\n\n\n\n<p>Akismet is trusted by over 100 million websites worldwide, including well-known enterprise brands such as <a href=\"https://www.microsoft.com/\">Microsoft</a>, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit</a>, and <a href=\"https://www.bluehost.com/\">Bluehost</a>. Its widespread adoption and use by major companies serve as strong social proof for its effectiveness in preventing spam and ensuring a secure, user-friendly online experience.&nbsp;</p>\n\n\n\n<p>Should you choose Akismet for your contact and registration forms, you&#8217;ll be in good company, joining millions of other websites that have successfully protected their online presence from spam and malicious activity.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Akismet: Non-intrusive spam protection for WordPress&nbsp;</h2>\n\n\n\n<p>To keep your WordPress site free from <a href=\"https://akismet.com/blog/spambots-theyre-not-just-like-us-introducing-akismets-newest-spam-fighting-feature/\">spam and bots</a> while ensuring a good user experience and accessibility, you should use Akismet. It offers an effective way to combat spam that doesn&#8217;t disrupt your site visitors&#8217; browsing experience.</p>\n\n\n\n<p>If you add Akismet to your WordPress site, it will use complex calculations and a big collection of spam markers to keep your site safe from unwanted content. In addition, it integrates smoothly with well-known tools for contact forms, making sure that everyone can use your website securely and without hassle.</p>\n\n\n\n<p>While CAPTCHA and reCAPTCHA may still be preferred by some, Akismet stands out as a user-friendly, effective, and accessible alternative for securing your WordPress contact forms against spam and bots. And by choosing Akismet, you&#8217;re investing in the success of your online presence and ensuring a pleasant experience for your visitors, which is definitely worth prioritizing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jun 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: WordPress 6.3 Will Introduce A Command Palette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wordpress-6-3-will-introduce-a-command-palette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3341:\"<p>Last week Gutenberg contributors were engaged in a spirited debate regarding <a href=\"https://wptavern.com/wordpress-contributors-discuss-renaming-command-center-tool\">a proposal to rename the new Command Center to Wayfinder</a>. The feature, designed to be an extensible quick search and command execution tool, will land in WordPress 6.3.</p>\n\n\n\n<p>The majority of participants in the <a href=\"https://github.com/WordPress/gutenberg/issues/50925\">discussion</a> were strongly against calling it Wayfinder, as the term doesn&#8217;t translate well, nor does it make the feature&#8217;s benefits easy to understand. Wayfinder was proposed as a unique name that &#8220;has the potential to evoke a sense of curiosity, exploration, and discovery.&#8221; There were several attempts to wrap up the discussion with notes on alternatives even when it was apparent that the general consensus was unequivocally not in favor of the term Wayfinder.</p>\n\n\n\n<p>Automattic-sponsored Gutenberg contributor Anne McCarthy <a href=\"https://github.com/WordPress/gutenberg/issues/50925#issuecomment-1610044400\">commented</a> on the issue with the decision, which she said was reached after consulting project leadership and reading through the comments:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em><strong>Let’s move forward with Command Palette.</strong></em></p>\n\n\n\n<p>Reasoning: easier to translate, consistent across other tooling outside of WordPress, matches current functionality, eases discoverability/understanding of value, and leans generic which matches the concerns raised here. </p>\n\n\n\n<p>Ultimately, we can always discuss renaming if the feature reaches a point of evolution outside of this initial name. As raised above, that would be more worth risking a unique name for than something that exists in other products and that ultimately we want people to quickly understand/find value in. Plus if we hold off on that name for the future, it can create a nice marketing push for something truly unique when/if the time comes. If folks have additional specific concerns around this naming, please speak up sooner rather than later.</p>\n</blockquote>\n\n\n\n<p>McCarthy also requested other contributors ensure the re-naming is updated throughout the interface for the upcoming release.</p>\n\n\n\n<p>This was an important decision that needed to be made ahead of WordPress 6.3 Beta 1, which was supposed to be released today but was <a href=\"https://make.wordpress.org/core/2023/06/27/wordpress-6-3-beta-1-postponed/\">delayed</a> to Wednesday, June 28, due to an unrelated issue. The Command Palette will likely be introduced in blog posts, the 6.3 About page, and countless third-party resources so the proposal urgently needed a conclusion.</p>\n\n\n\n<p>It’s also to the team’s credit that they didn’t force a fancy marketing name and instead landed on the side of the majority of contributors who were in favor of using clear language. The API for the Command Palette <a href=\"https://github.com/WordPress/gutenberg/pull/51169\">is now public</a> and ready for developers to create their own custom commands. Using a term that is easy to understand and translate will engender more global community buy-in, as <a href=\"https://wordpress.org/about/stats/\">52% of WordPress users</a> run the software in a language other than English.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Jun 2023 01:46:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: WordCamp Europe 2024 Calls for Organizers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146294\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/wordcamp-europe-2024-calls-for-organizers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3609:\"<p>WordCamp Europe 2023 in Athens attracted more than 2,500 attendees from 94 countries, made possible by 112 organizers and 250 volunteers. The event is now looking forward to 2024, which will be hosted by the Italian WordPress community in Torino, Italy, June 13-15. This modern city is located at the foot of the Alps in northwestern Italy and has more than 2,000 years of history to explore.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>WCEU 2024 is <a href=\"https://europe.wordcamp.org/2024/call-for-organisers/\">calling for organizers</a> who will serve on one of a dozen teams that have been operating for the past few years, including attendee services, budget, design, sales and sponsors, communications, and more.</p>\n\n\n\n<p>Those selected to organize will begin planning WCEU in September 2023 and will work with a distributed team on a weekly basis until June 2024. </p>\n\n\n\n<p>During the 2023 event&#8217;s speaker announcements, the WCEU organizing team was <a href=\"https://wptavern.com/wceu-2023-publishes-schedule-reaffirms-commitment-to-diversity\">criticized for the second year in a row regarding its commitment to diversity</a>. The previous year organizers were called out for the <a href=\"https://europe.wordcamp.org/2022/diversity-at-wceu/\">lack of diversity on the organizing team</a> and this year the complaint was a lack of diversity in the speaker selection.</p>\n\n\n\n<p>WCEU 2023 organizers published a <a href=\"https://europe.wordcamp.org/2023/transparent-selection-processes/\">transparent account of the various selection processes</a> used for organizers, speakers, media partners, and others involved in the event. The article states that organizers are shortlisted based on their skills, with an effort &#8220;to keep gender parity high whilst also selecting people from all available European WordPress communities.&#8221; It also states that applicants&#8217; experience and enthusiasm are chief among selection factors but organizers also reach out to encourage underrepresented groups to apply:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>During the selection process we don’t have anything that resembles a “positive discrimination” policy, whereby we choose people based on their race, color, background, gender, sexual identity, or any other attribute; we solely chose people based on their stated experience and enthusiasm to be part of the team&#8230;</p>\n\n\n\n<p>Acknowledging that diversity within the Organizing team is important, we reach out to community groups and members before and during the application process, encouraging people to apply where we have historically seen underrepresentation.</p>\n</blockquote>\n\n\n\n<p>The article concludes with a statement of willingness to modify this selection process if the organization is not able to achieve a diverse lineup:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>WordCamp Europe is an iterative event; each year learns from the last and 2024 will be no different. We cannot take for granted that achieving diversity one year guarantees it the next. As a flagship WordCamp event we may need to positively discriminate to achieve gender parity, or fair representation of communities. </p>\n</blockquote>\n\n\n\n<p>The <a href=\"https://europe.wordcamp.org/2024/call-for-organisers/\">call for 2024 organizers</a> does not identify any changes that have been made to the selection process. Prospective organizers will need to <a href=\"https://europe.wordcamp.org/2024/call-for-organisers/application-form/\">fill out the application form</a> highlighting their skills, experience, and desired role.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Jun 2023 21:40:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Reusable Blocks Renamed to Patterns with Synced and Non-Synced Options\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7029:\"<p>There has always been some confusion and overlap between reusable blocks and patterns. The difference was that reusable blocks can be created and edited in the block editor and then reused in other places &#8211; inserted into posts or pages. Block patterns, once inserted, can be edited and are not synced. They give users the ability to apply the same layout to different posts and pages. </p>\n\n\n\n<p>Reusable blocks have now been <a href=\"https://github.com/WordPress/gutenberg/pull/51144\">renamed to patterns</a>, with the option to be synced, which offers the same functionality as the former reusable blocks where all instances can be updated at once. Non-synced patterns are just regular patterns &#8211; those that can be edited independently of other other instances that have been inserted. These updates are coming in Gutenberg 16.1 and will be included in the upcoming WordPress 6.3 release.</p>\n\n\n\n<p>WordPress contributor Aki Hamano posted a diagram to Twitter regarding the renaming, which was confirmed as an accurate representation of the changes.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am trying to understand about the new naming of \"Pattern\" in WordPress. I currently understand it as this figure represents, is this correct? <a href=\"https://t.co/WxKFRotB0V\">pic.twitter.com/WxKFRotB0V</a></p>&mdash; Aki Hamano / 浜野 哲明 (@tetsuaki_hamano) <a href=\"https://twitter.com/tetsuaki_hamano/status/1672984350680567809?ref_src=twsrc%5Etfw\">June 25, 2023</a></blockquote>\n</div>\n\n\n\n<p>&#8220;Clients already find the pattern and reusable block concept very difficult to grasp,&#8221; WordPress developer Mark Howells-Mead commented on the pull request for the renaming. &#8220;This change will make things much harder for regular users to comprehend.&#8221; </p>\n\n\n\n<p>Gutenberg contributor Paal Joachim Romdahl commented that it would be helpful to have more time to test this in a few versions of the Gutenberg plugin, as WordPress 6.3 beta 1 is expected this week. Learning materials and documentation will need to be updated with very little notice.</p>\n\n\n\n<p>Gutenberg contributor Daniel Richards encouraged contributors to see the change as part of &#8220;<a href=\"https://github.com/WordPress/gutenberg/issues/41717\">the great unification</a>,&#8221; an effort towards consolidating the many different block types into a single concept and streamlining the content and site editors.</p>\n\n\n\n<p>&#8220;In the future it might also be possible for template parts to be considered &#8216;synced patterns&#8217;, and at that point things become much more streamlined and there are far fewer concepts for users to grasp,&#8221; Gutenberg contributor Daniel Richards said. </p>\n\n\n\n<p>&#8220;So the hope is that this is a first step on the path to making things easier for users, rather than more difficult. But I do realize that for existing users it&#8217;s quite a shift.&#8221;</p>\n\n\n\n<p>As part of this effort, WordPress 6.3 will also introduce pattern creation in the block editor using the same interface that it previously used for reusable blocks. Pattern creation necessitates having a place for users to view and manage their patterns. WordPress 6.3 will also include a first pass at <a href=\"https://github.com/WordPress/gutenberg/pull/51078\">a Pattern Library inside the Site Editor</a>, which will include both patterns and template parts. Gutenberg designers shared <a href=\"https://make.wordpress.org/design/2023/06/19/design-share-jun-5-jun-16/?mc_cid=4941c0b11f&mc_eid=68ffa9a210\">a preview</a> of what this would look like a couple weeks ago:</p>\n\n\n\n<a href=\"https://i0.wp.com/make.wordpress.org/design/files/2023/06/patterns.gif?ssl=1\"><img src=\"https://i0.wp.com/make.wordpress.org/design/files/2023/06/patterns.gif?resize=776%2C540&ssl=1\" alt=\"\" class=\"wp-image-11211\" /></a>image credit: <a href=\"https://make.wordpress.org/design/2023/06/19/design-share-jun-5-jun-16/?mc_cid=4941c0b11f&mc_eid=68ffa9a210\">WordPress Design Share June 5-16</a>\n\n\n\n<h3 class=\"wp-block-heading\">The Potential of Partially Synced Patterns</h3>\n\n\n\n<p>In May, contributors began a discussion about the concept of <a href=\"https://github.com/WordPress/gutenberg/discussions/50456\">partially synced patterns</a>, which Daniel Richards summarized:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Today, when you insert a pattern, the blocks from that pattern are completely decoupled and standalone. There&#8217;s no way to tell that those blocks originated from a pattern, especially since they can be edited to no longer resemble the source pattern.</p>\n\n\n\n<p>Partially synced mode is different. When a pattern that&#8217;s partially synced is inserted, it retains a reference to the source pattern. The blocks within the pattern are locked so that they cannot be removed or reordered and new blocks cannot be inserted (this is called&nbsp;<code>contentOnly</code>&nbsp;locking). Only specific parts of the pattern considered &#8216;content&#8217; can be edited (denoted by adding&nbsp;<code>__experimentalRole: \'content\'</code>&nbsp;to a block&#8217;s definition).</p>\n\n\n\n<p>When the source pattern is updated, all instances of blocks that reference the source pattern are updated too (much like a reusable block), but the&nbsp;<code>content</code>&nbsp;values the user entered are retained. The best way to think of this is that the user can update the design of a pattern, but doesn&#8217;t lose content that exists in templates and posts.</p>\n</blockquote>\n\n\n\n<p>This concept will not make it into the upcoming version of WordPress, as contributors are still discussing one of many complex implementations, but it offers a glimpse of what might be more granular control coming to patterns in the future. Partially synced patterns would bring distinct benefits to many CMS and content design use cases where clients may be editing content. </p>\n\n\n\n<p>&#8220;I am a site developer for an agency, and am actively making sites for clients using Gutenberg every day,&#8221; Eric Michel said. &#8220;Probably our biggest pain point right now is that the editor does not handle types of content that are mostly standardized with small content customizations per post &#8211; things like contact directories, majors at a university, products in a catalog.</p>\n\n\n\n<p>&#8220;For us, the absolute dream scenario is what you are proposing, except with the inclusion of the ability to alter the primary template and have all of the pages that use that template automatically change as well.&#8221; </p>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/discussions/50456\">discussion</a> on making partially synced patterns possible continues in search of an implementation that will ensure users don&#8217;t modify the patterns in ways that destroy the ability to display the retained content. WordPress 6.3 will ship with synced and non-synced pattern options, and partially synced patterns may land further down the road in a future release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Jun 2023 02:11:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"Gutenberg Times: Reusable Blocks are Patterns too, Style Book, Block Handbook Navigator and Command Center—Weekend Edition 258\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24511\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://gutenbergtimes.com/reusable-blocks-are-patterns-too-style-book-block-handbook-navigator-and-command-center-weekend-edition-258/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15495:\"<p>Howdy, </p>\n\n\n\n<p>It&#8217;s been a more quiet week. Many people have been working hard to get the latest features into the next Gutenberg release, so they can also be merged with WordPress 6.3. If you want to start testing, the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/untagged-c35f7346f2e514d1fedb\">Gutenberg 16.1 RC is available here</a>. The changelog is massive. Next week, Tammie Lister will be going over this with me when we record the next Gutenberg Changelog. </p>\n\n\n\n<p>On Friday, I&#8217;ll hope on a train to Leipzig and give a presentation to the attendees of the <a href=\"https://wptavern.com/wordpress-confirms-8-pilot-events-to-launch-the-next-generation-of-wordcamps-in-2023\">back-to-the-roots, no frills WordCamp</a>. Added thrill for me: it&#8217;s my first time presenting in German about technology. Oy. </p>\n\n\n\n<p>Next week is also WordPress 6.3 Beta 1 release. Get ready for testing and filing bug reports! The best way to learn what will be in 6.3 is by using the beta version and heed the <a href=\"https://make.wordpress.org/test/2023/06/07/fse-program-testing-call-24-momery-makeover/\">Testing Call #24: Momery Makeover</a>. Testing a new version pre-release, is an open-source contribution with the highest impact. If you are keen to learn how to do it, please let me know and I do a short tutorial zoom with you. </p>\n\n\n\n<p>This weekend edition seems rather short, too </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-drop-cap\"><strong>Join us </strong>for the <a href=\"https://us02web.zoom.us/webinar/register/7516851799317/WN_AFgYtmyaRviAY3b2oGP2pg\">next Gutenberg Live Q &amp; A July 6th, 2023, at 17:00 UTC</a> </p>\n\n\n\n<p><strong>Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels.</strong></p>\n\n\n\n<p>Learn how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base in this Case Study of GiveWP 3.0 with Jason Adams, Director of Development, Jon Waldstein, Lead Developer of GiveWP and co-host Lena Morita, JavaScript Developer on the Components team. </p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7516851799317/WN_AFgYtmyaRviAY3b2oGP2pg\"><img /></a>\n</div></div>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#reusable\">Reusable blocks are now called Patterns</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-85-gutenberg-16-1-wordpress-6-3/\">Gutenberg Changelog #85 – Gutenberg 16.1, WordPress 6.3</a> with special guest, Tammie Lister and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p>In his latest <a href=\"https://make.wordpress.org/design/2023/06/19/design-share-jun-5-jun-16/\"><strong>Design Share: Jun 5–Jun 16</strong></a>, <strong>Joen Assmussen</strong> shares the work of the WordPress Design team on the </p>\n\n\n\n<ul>\n<li>flow of creating patterns via the Site Editor, </li>\n\n\n\n<li>Top Toolbar refinements, </li>\n\n\n\n<li>ideas on how to customize the Drop Caps, </li>\n\n\n\n<li>more customization tools for the list blocks, </li>\n\n\n\n<li>Home template details panel </li>\n\n\n\n<li>Site editor publishing, and</li>\n\n\n\n<li>Interesting mock-ups for a redesign of the Learn.WordPress pages. </li>\n</ul>\n\n\n\n<img />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> shared in his latest video,<a href=\"https://www.youtube.com/watch?v=wmIZ5w7MFng\"><strong> WordPress Block Theme Secret Hacks You Didn&#8217;t Know Existed</strong></a>, five secret features of Block Themes, you might not know about. Marsland also offers a Block Theme course: <em><a href=\"https://www.pootlepress.com/wordpress-full-site-editing-course/\">Mastering Site Editing and WordPress Block Themes</a>, so you can get a head start</em>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Wes Theron</strong> also shares his secrets, too in the tutorial <a href=\"https://learn.wordpress.org/tutorial/using-the-block-editor-tips-and-shortcuts-for-efficiency/\"><strong>Using the block editor: Tips and shortcuts for efficiency</strong></a> on <em>Learn WordPress</em>. He has eight tips and shortcuts for you to work faster and more efficiently in the block editor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this video on WordPress TV, <strong>Kathryn Presner</strong> and <strong>Sarah Snow</strong> showed their students how to <a href=\"https://wordpress.tv/2023/06/22/create-a-four-page-wordpress-website-explore-plugins-contact-forms/\"><strong>Create a four-page WordPress website: Explore Plugins + Contact&nbsp;Forms</strong></a>. Watch this workshop to learn about plugins–how to find them, how to vet them, what can go wrong–in WordPress in 2023.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Another new feature is coming to WordPress 6.3, the Command Center. Be aware that&#8217;s only the working title and contributors discuss renaming it. <strong>Sarah Gooding</strong> reports on the discussion <a href=\"https://wptavern.com/wordpress-contributors-discuss-renaming-command-center-tool\"><strong>WordPress Contributors Discuss Renaming Command Center Tool</strong></a>. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"reusable\">Reusable blocks are now called Patterns</h3>\n\n\n\n<p>Creating patterns using the block editor has been one of the most requested features since Patterns have been available and since the release of the Pattern directory on WordPress.org in Summer of 2021. It&#8217;s now coming to the editor in WordPress 6.3 version. It uses the same workflow as creating reusable blocks. To remind you: create a collection of blocks, group them, and use the 3-dot menu &#8220;Create reusable Block&#8221; except it now says &#8220;Create custom pattern&#8221;. </p>\n\n\n\n<p>Turns out Patterns and Reusable blocks are cut almost from the same cloth. The only difference is that the change to a reusable block synchs over all the instances the block has been used, hence the new name &#8220;synched pattern&#8221;. There is now a toggle switch to &#8220;Keep all pattern instances in sync&#8221; or not. This is the first iteration: the name change and the creation workflow. </p>\n\n\n\n<p>To re-use the pattern, you find them in different places, though. Synched patterns are listed in the list of Blocks in the Inserter and available via slash &#8220;/&#8221; command. Unsynched patterns are in a new Pattern category = Custom Patterns in the Patterns Tab in the big blue button inserter.</p>\n\n\n\n<p>There are many users, and I might be one of them, who find patterns, should also be at least partially sync-able. That feature is planned to come to the block editor after WordPress 6.3 is released. It will take a few more thoughts on how to separate the various pieces. You might want to synch the design but not the words, or styles but not the images. The headings but not the links. And immediately you see that this can be quite complicated. So, it might take some more time. You can read up on the genesis of this new feature in the PR <a href=\"https://github.com/WordPress/gutenberg/pull/51144\">Reusable blocks: Rename to &#8216;Patterns&#8217; and add option to also add a non-synced Pattern. (51144)</a></p>\n\n\n\n<img />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Ganesh Dahal</strong>, also <a href=\"https://css-tricks.com/author/ganeshdahal/\">writer at CSS-Tricks</a>, published his first article on the WordPress Developer Blog about <a href=\"https://developer.wordpress.org/news/2023/06/the-style-book-a-one-stop-shop-for-styling-block-themes/\"><strong>The Style Book: a one-stop shop for styling block themes</strong></a>. The Style Book is the new one-stop Global Style feature of the Site Editor that allows you to add all global or per-block design elements with a live preview window. This also lets users create a new set of variations that they can modify with a single click.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Wrestling with a huge theme.json might deter people from creating block themes. <strong><a href=\"https://twitter.com/walb0\">Petter Walbø Johnsgård</a> </strong>developed the npm package <a href=\"https://www.npmjs.com/package/@theme-json/create\"><strong>@theme-json/create</strong></a> that helps you with that. It allows you to create a logical directory structures to separate out various parts of the theme.json. It makes it easier to maintain and quickly navigate to the necessary area you wish to modify. This way you can standardize variables and reference them in our theme.json, and makes it them much more maintainable when designers decide to make changes. (<em>Thank you to <a href=\"https://twitter.com/ClorithMJ\">Marius Jensen</a> for the tip</em>).</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post for the Torque Magazine, <a href=\"https://torquemag.io/2023/06/wordpress-widget-areas/\"><strong>How to Add Widget Areas to WordPress (Block &amp; Classic Themes)</strong></a>, <strong><a href=\"https://twitter.com/nschaeferhoff\">Nick Schäfferhoff</a> </strong> took a look at different ways to add widgets to your WordPress theme. You learn how to use widgetized areas and create new ones in classic themes, as well as how to make widgets show up in your block themes.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p>It might be the post you have been waiting for. In his post on<strong><a href=\"https://developer.wordpress.org/news/2023/06/navigating-the-block-editor-handbook/\"> How to Navigate the Block Editor Handbook</a></strong>, <strong>Michael Burridge</strong> leads the way with Compass and Maps so to speak. &#8220;The Block Editor Handbook is intimidating even for seasoned developers. If you are new to block development, you’re likely to feel completely overwhelmed. This guide will help you find your way around the Block Editor Handbook. It suggests a learning path that will help you become an expert in no time.&#8221; he wrote in the excerpt</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> published a tutorial about <a href=\"https://www.briancoords.com/custom-lists-in-wordpress-with-register-block-style/\"><strong>Custom Lists in WordPress with Register Block Style</strong></a>. He explains how to work with Block styles without a build process. It&#8217;s a great way to learn to customize the blocks without any JavaScript and very little php. </p>\n\n\n\n<p>Earlier this year, Justin Tadlock wrote about <a href=\"https://developer.wordpress.org/news/2023/02/creating-custom-block-styles-in-wordpress-themes/\"><strong>Creating custom block styles in WordPress themes</strong></a>, that could be another great tutorial for you.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Skyline of Athens, view of the Acropolis from the roof of the Museum for contemporary art by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 Jun 2023 06:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Really Simple SSL Plugin Adds Free Vulnerability Detection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/really-simple-ssl-plugin-adds-free-vulnerability-detection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2999:\"<p><a href=\"https://wordpress.org/plugins/really-simple-ssl/\">Really Simple SSL</a>, a popular plugin used on more than five million sites for installing SSL certificates, handling website migrations, mixed content, redirects, and security headers, has added a new feature in its most recent major update.</p>\n\n\n\n<p>Version 7.0.0 introduces vulnerability detection as part of a partnership with WP Vulnerability, an open source, free API created by <a href=\"https://www.wpsysadmin.com/\">Javier Casares</a> with contributions from other open source, freely available databases. Once enabled, it notifies users if a vulnerability is found and suggests actions.</p>\n\n\n\n<p>&#8220;Really Simple SSL mirrors the free database with its own instance to secure stability and deliverability, but of course provides the origin database with an API to enrich, or improve its current data,&#8221; Really Simple Plugins developer Aert Hulsebos said.</p>\n\n\n\n<p>The new vulnerability detection feature is not enabled by default, so users will need to <a href=\"https://really-simple-ssl.com/instructions/about-vulnerabilities/\">enable it in the settings</a>. A modal will pop up where users can configure their notifications and run the first scan.</p>\n\n\n\n<img />\n\n\n\n<p>When emailed about a vulnerability users can manually respond with an action or set the plugin to automatically force an update (when available) after 24 hours of no response. There are other automated actions the plugin can take based on how users configure the Measures section of the settings.</p>\n\n\n\n<img />\n\n\n\n<p>For the past several years Really Simple SSL has been providing SSL certificate configuration and installation via Let&#8217;s Encrypt as a first pass at securing WordPress sites. To finance this for the free users, the plugin also has a Pro version that handles Security Headers, such as Content Security Policies, which are highly complex for most and not easily configured.</p>\n\n\n\n<p>&#8220;We figured that with our reach we could impact security on the web as a whole, by adding features in order of impact on security,&#8221; Hulsebos said. &#8220;So vulnerabilities, after hardening features specific to WordPress, was next. </p>\n\n\n\n<p>&#8220;The nature of our partnership with Javier and WP Vulnerability is sponsoring the efforts of WP Vulnerability and appointing a security consultant ourselves to this open-source effort to improve, and moderate the open-source database daily. WP Vulnerability does not compensate us, nor does it have a stake in Really Simple SSL. Vulnerability detection is available for everyone and always will be.&#8221;</p>\n\n\n\n<p>Because Really Simple SSL started as a lightweight SSL plugin, Hulsebos said they have taken a modular approach to minimize impact on users who only want or need certain features. Following the launch of the new vulnerability detection feature, the plugin&#8217;s authors plan to add login security with 2FA to better secure authentication on WordPress sites.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Jun 2023 21:34:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordPress Pattern Directory Updated to Show Curated Patterns by Default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordpress-pattern-directory-updated-to-show-curated-patterns-by-default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3905:\"<p>If you haven&#8217;t visited the <a href=\"https://wordpress.org/patterns/\">WordPress Pattern Directory</a> lately, it may look very different from when it <a href=\"https://wptavern.com/the-wordpress-org-block-pattern-directory-now-live\">launched two years ago</a>. At first there was an emphasis on getting the community to contribute to the resource but the directory has now passed more than 1,500 patterns. </p>\n\n\n\n<p>Contributors are making changes to provide a more curated experience ahead of the inclusion of <a href=\"https://github.com/WordPress/gutenberg/issues/44611\">a new Pattern Directory Explorer</a> that is still in progress. A recent <a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">update</a> to the Pattern Directory alters the homepage and category pages to show curated patterns by default, a change that has been a bit confusing for some when returning to the directory. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Anyone know where all the block patterns have gone on <a href=\"https://t.co/LpzR9lR7uc\">https://t.co/LpzR9lR7uc</a> ? <a href=\"https://t.co/Dt9EK7Ssik\">https://t.co/Dt9EK7Ssik</a> <a href=\"https://twitter.com/hashtag/gutenberg?src=hash&ref_src=twsrc%5Etfw\">#gutenberg</a></p>&mdash; Jamie Pootlepress &#8211; YouTuber and WP Plugin builder (@pootlepress) <a href=\"https://twitter.com/pootlepress/status/1671881903593623556?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote>\n</div>\n\n\n\n<p>The curated patterns are those by WordPress.org &#8211; the core bundled patterns. Community-contributed patterns are available as a filter in the dropdown of the directory&#8217;s menu.</p>\n\n\n\n<img />\n\n\n\n<p>There are only 46 core patterns, so some category pages tend to look a little sparse and far less colorful than when community patterns are selected. At the moment, having curated patterns display by default does not offer the best experience for users coming to browse, as Pootlepress founder Jamie Marsland pointed out on Twitter. Automattic-sponsored contributor Rich Tabor responded that there is still more work to be done on providing a better curated experience in the Pattern Directory. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The top ones are the best. Still lots to do though.</p>&mdash; Rich Tabor (@richard_tabor) <a href=\"https://twitter.com/richard_tabor/status/1672196325201575936?ref_src=twsrc%5Etfw\">June 23, 2023</a></blockquote>\n</div>\n\n\n\n<p>&#8220;This change also prepares to support the Pattern Explorer in the editor,&#8221; Automattic-sponsored contributor Kelly Choyce-Dwan said in the announcement. &#8220;It’s still in progress, but it will be possible to search through community-submitted patterns directly from the editor.&#8221;</p>\n\n\n\n<p>Choyce-Dwan referenced an effort that is currently underway to <a href=\"https://github.com/WordPress/gutenberg/issues/44611\">bring a new flyout to the patterns tab of the inserter</a> inside WordPress, making the modal a place where users can more easily explore and access patterns from the directory. </p>\n\n\n\n<p>There are also related discussions on how <a href=\"https://github.com/WordPress/pattern-directory/issues/573\">themes could create pattern bundles</a>, enabling the possibility of users filtering by theme. In this discussion, Automattic-sponsored contributor Anne McCarthy suggested these pattern bundles could be automatically submitted to the directory upon the theme&#8217;s approval, which would make it effortless for theme authors to contribute them.</p>\n\n\n\n<p>Updates to the Pattern Directory&#8217;s filtering are part of the redesign work on WordPress.org and more discussions are happening on <a href=\"https://github.com/WordPress/pattern-directory/issues/\">the Pattern Directory GitHub</a> repository.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Jun 2023 17:44:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WordPress.com Makes Monetization Features Available for Free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wordpress-com-makes-monetization-features-available-for-free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3111:\"<p>WordPress.com has been known to <a href=\"https://wptavern.com/wordpress-com-ends-recent-pricing-experiment-reverts-to-previous-model\">experiment with its pricing</a> from time to time, and the platform announced another major change today. Users on the Free plan are now able to use monetization features without upgrading. </p>\n\n\n\n<p>In the past, WordPress.com users who wanted to earn money on their websites by collecting donations, creating a newsletter, or selling items or subscriptions, had to be on one of the paid plans. These <a href=\"https://wordpress.com/support/monetize-your-site/\">monetization features</a> are now available to all users on all tiers.</p>\n\n\n\n<p>The fee structure varies, based on the user&#8217;s plan. Transaction fees are the highest for Free users at 10%, but it gives creators the opportunity to see if they can make money without it costing anything upfront. Commerce plan users ($70/month or $45/month billed annually) don&#8217;t pay any transaction fees. Stripe also collects 2.9% + US$0.30 for each payment made to a Stripe account in the US.</p>\n\n\n\n<p></p>\n\n\n\n<table><tbody><tr><td><strong>WordPress.com Plan</strong></td><td><strong>Payment Fees</strong></td></tr><tr><td>WordPress.com Commerce</td><td>0%</td></tr><tr><td>WordPress.com Business</td><td>2%</td></tr><tr><td>WordPress.com Premium</td><td>4%</td></tr><tr><td>WordPress.com Personal</td><td>8%</td></tr><tr><td>WordPress.com Free</td><td>10%</td></tr></tbody></table>\n\n\n\n<p>Self-hosted WordPress users already have many free plugin options to monetize theirs sites but with that comes the requirement of knowing how to maintain and update their own sites. WordPress.com&#8217;s offering is targeted at creators who just want to get started making money online. The company is inching closer to being a one-stop shop for websites, especially as it <a href=\"https://wordpress.com/blog/2023/06/21/how-to-transfer-your-domain-to-wordpresscom/\">makes a play for former Google Domains customers</a> who are looking for somewhere to host domains after theirs were sold to Squarespace.</p>\n\n\n\n<p>It&#8217;s important to note that creating a full-featured online store is still restricted to Business and Commerce plans. Using <a href=\"https://wordpress.com/support/pay-with-paypal/\">Pay with PayPal</a> to accept credit and debit card payments via PayPal is also only available via an upgraded plan.</p>\n\n\n\n<p>WordPress.com&#8217;s <a href=\"https://wordpress.com/pricing/\">pricing</a> page has not yet been updated to reflect monetization features as being free &#8211; i.e. the Personal plan still lists paid subscribers and premium content gating as an upgrade. It&#8217;s possible the team hasn&#8217;t edited that page yet or this may be another pricing experiment. </p>\n\n\n\n<p>Expanding the availability of monetization features is likely to be received as a positive change, since users are not losing any features that were previously free. Instead, they have the opportunity to see if they can monetize and then adjust their plans based on their comfort level with the transaction fees extracted.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Jun 2023 22:58:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Gravatar Adds New Payment Features for Profiles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=146134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/gravatar-adds-new-payment-features-for-profiles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3203:\"<p>Up until yesterday, the Gravatar (Globally Recognized Avatar) blog lay dormant for nine years, the <a href=\"https://blog.gravatar.com/2014/07/23/something-funny-happened/\">last post</a> chronicling how the team set out to create a Gravatar app that somehow &#8220;<a href=\"https://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android\">morphed into a Selfies app</a>.&#8221; Communication went silent after that, although the Twitter account posted occasionally.</p>\n\n\n\n<p>The service has pivoted to become &#8220;a personal digital business card&#8221; where users can link to various apps and websites that help to establish their identities online. </p>\n\n\n\n<p>Gravatar announced this week that it has <a href=\"https://blog.gravatar.com/2023/06/21/new-on-gravatar-collect-payments-on-the-go/\">launched new payment features for profiles</a>. Users have the option to add links for PayPal, Venmo, and Patreon. The Gravatar team is looking at adding Cash App and more providers in the future. </p>\n\n\n\n<p>On mobile, profiles appear with new &#8220;Send Money&#8221; and &#8220;Share Profile&#8221; buttons. Each profile has its own unique QR code that can be copied and shared.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img />\n\n\n\n<p>The payment accounts show up as links that visitors can click through. Users can also display links to cryptocurrency wallet addresses, including Bitcoin (BTC), Litecoin (LTC), Dogecoin (DOGE), Ethereum (ETH), XRP, and Cardano (ADA). </p>\n\n\n\n<p>Profiles can be customized with a background image, photo gallery, social links, and links to verified services.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img />\n\n\n\n<p><br />Gravatar is used by Slack, Atlassian (owner of Jira and Trello), GitHub, Stack Overflow, and Disqus, serving millions of requests per day. Another new major user is OpenAI, which displays users&#8217; Gravatar images when chatting with ChatGPT. The service is also <a href=\"https://wordpress.org/documentation/article/use-gravatars/#:~:text=WordPress%20integrates%20Gravatars%20into%20every,elsewhere%20on%20the%20WordPress%20site.\">integrated with every WordPress install</a>, and an Automattic representative confirmed there are no plans to change this.</p>\n\n\n\n<p>Automattic reported that the company does not receive a cut of any payments passed through Gravatar links, nor does it have financial partnerships with any of the payment providers. The company also has no visibility into the transactions that happen through Gravatar payment links.</p>\n\n\n\n<p>During the past nine years, the small Gravatar team has been improving how profile pages look, adding services that can be verified, working to improve the hashing and security of data, and maintaining the infrastructure required to store and serve so many images and profiles.</p>\n\n\n\n<p>&#8220;We aren’t currently working on a Gravatar app, but it is something we are considering,&#8221; an Automattic representative told the Tavern.</p>\n\n\n\n<p>After the Selfies app was retired, some of the code went into Jetpack and is now part of the app. Jetpack users can manage their Gravatar profile information and avatar photo inside the app. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Jun 2023 18:58:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: Woo AgencyChat Live with Jimmy Rosén and Shadi Manna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75343\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://dothewoo.io/woo-agencychat-live-with-jimmy-rosen-and-shadi-manna/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:869:\"<p>Woo AgencyChat Live with Jimmy Rosén and Shadi Manna June 22, 2023 Transcript Shadi: Here we are, the agency chat interview with Bob. Thanks for inviting us. My name is Shadi Manna from Progressus.io and... Jimmy: And I\'m Jimmy Rosen from Angry Creative. Shadi: Where should we get started, Jimmy? Jimmy: I don\'t know. How &#8230;</p>\n<p class=\"read-more\"> <a class=\"\" href=\"https://dothewoo.io/woo-agencychat-live-with-jimmy-rosen-and-shadi-manna/\"> <span class=\"screen-reader-text\">Woo AgencyChat Live with Jimmy Rosén and Shadi Manna</span> Read More &#187;</a></p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-agencychat-live-with-jimmy-rosen-and-shadi-manna/\">Woo AgencyChat Live with Jimmy Rosén and Shadi Manna</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Jun 2023 06:55:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Post Status: Launching a WordPress Product in Public: Session 18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149660\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-18/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:62269:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p><a href=\"https://twitter.com/coreymaass\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> continue the development of their new WordPress plugin, <a href=\"https://crop.express/\">Crop.Express</a>. In this episode, they discuss the importance of finding personal fulfillment, embracing the journey, and enjoying the process of pursuing hobbies and personal projects. They encourage everyone to reevaluate their definition of success and find meaning in the act of creation while also cherishing the connections and collaborations that come along the way.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Redefining Success and Goals</strong>: The idea of reevaluating one&#8217;s definition of success. Instead of solely focusing on financial gain or external measures, there is a shift towards valuing the impact and value brought to others through one&#8217;s work or personal projects. Success is viewed as creating something meaningful that brings joy or usefulness to users rather than solely pursuing monetary goals.</li>\n\n\n\n<li><strong>Importance of Collaboration and Connection</strong>: The value of collaboration and building connections with like-minded individuals. The joy derived from hobbies or personal projects can be enhanced by sharing experiences, exchanging ideas, and working together with others. Building lasting friendships and relationships through shared interests can be a source of support and fulfillment.</li>\n\n\n\n<li><strong>Embracing the Process and Finding Fulfillment in the Journey</strong>: The importance of enjoying the process and finding fulfillment in the act of creating or working on something rather than solely focusing on the end result. The journey itself, the learning, the challenges, and the growth that occur along the way can be sources of joy and satisfaction. It&#8217;s about finding meaning and enjoyment in the present moment rather than solely fixating on the outcome.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://balsamiq.com/\">Balsamiq</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/\">Meetup.com</a></li>\n\n\n\n<li><a href=\"https://slack.com/trials?remote_promo=f4d95f0b&d=7013y000002pzGQAAY&nc=7013y000002q165AAA&utm_source=google&utm_medium=paid_search&utm_campaign=ppc_google_amer_en_brand_selfserve_discount&utm_content=slack-pg-ss-all-us-brand_7013y000002pzGQAAY&utm_term=Slack_Exact_._slack_._e_._c_._611662283461&gad=1&gclid=CjwKCAjwv8qkBhAnEiwAkY-ahrvtUlvMruMS8SCCYA3MqgkRfViYepC5CP2yCdrFJkc4X3xdPxz3sxoCzVcQAvD_BwE&gclsrc=aw.ds\">Slack</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress</a></li>\n\n\n\n<li><a href=\"https://twitter.com/\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/\">Instagram</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"http://twitter.com/coreymaass\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2 class=\"wp-block-heading\">Session 18 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p><strong>C&amp;C 18</strong></p>\n\n\n\n<p>[00:00:00] <strong>Corey Maass:</strong> And don&#8217;t forget to record this time. Yeah, no.</p>\n\n\n\n<p>[00:00:23] <strong>Cory Miller:</strong> Excellent. All right everybody. Welcome back to Corey and Cordy launching a pro WordPress product live session 18. And we&#8217;ve had, we were just kind of in prep for this real quick, just talking about a little of the things that&#8217;s been going on in our lives. It&#8217;s always fun to talk real life with a great person like Corey.</p>\n\n\n\n<p>So, um, this time we&#8217;re just gonna kind of talk about catching up. We&#8217;ve been out kind of the last two, maybe three weeks I wanna say. Yep. And, um, I have been on, uh, uh, last week I was at CLOUDFEST in Austin for post status. Then we extended and went on a Epic Clark w Griswold type. Um, Road trip. Got to see Carlsbad Caverns.</p>\n\n\n\n<p>Um, and, and they were closed. Yes. No, dead ants on the roof of the minivan. When we did render vans, I had to go Griswold South. Um, but I know you&#8217;ve had things going on too, so, um, that&#8217;s a little snippet for me just trying to kinda get things a little bit better sane for me work-wise. And, um, I think that&#8217;s in preparation for the.</p>\n\n\n\n<p>Real conversation here, but um, you wanna Yeah. Updates on what you&#8217;ve been&nbsp;</p>\n\n\n\n<p>[00:01:36] <strong>Corey Maass:</strong> up to. Yeah. And on my end, so it&#8217;s, I&#8217;ve, so I&#8217;ve got, you know, one, one main client and, uh, I have a monthly. They, they ask me to stay within a window of, of how much I work and what, uh, what I actually like about that is I tend to work a little less the beginning of the month.</p>\n\n\n\n<p>Um, and then, uh, which lets me work on side projects or lets me work on the house or whatever. Uh, Um, and then towards the end of the month, you know, the days get longer to make sure I hit my quota, um, and maximize my budget. But, um, so at the beginning of the month I wound up helping my dad drive from South Carolina up to Maine, um, which is a really fun road trip with dad.</p>\n\n\n\n<p>But, you know, and of course the, the client website goes down when I&#8217;m the farthest from my computer. Uh, you know, sitting at a restaurant in, uh, Fredericksburg, Virginia, if you ever have the opportunity, it&#8217;s a beautiful little place to stop. Um, but anyway, and then you can probably hear from my voice. I think last week I begged off because I was sick as a dog.</p>\n\n\n\n<p>Um, And it&#8217;s funny, it actually, you&#8217;re like, oh, it&#8217;s been I think two, three weeks and I&#8217;m like, it feels like it&#8217;s been months. Cuz I spent at least, uh, a few days last week. Literally just in bed in a NyQuil haze, you know? So it felt like weeks went by and, um, you know, and then you come out of that and you&#8217;ve gotta scramble to make up work and, um, get caught up on life.</p>\n\n\n\n<p>And, um, and then for me time, um, Always means house projects. So we&#8217;ve built another, uh, 11 times eight. So 88 feet of fencing. No. And then we turn a corner, so about 120 feet of fencing, stockade, fencing, cuz we&#8217;re getting a new foster dog. Um, and uh, so setting up a room for him and anyway, yeah, it just gets crazy.</p>\n\n\n\n<p>And, uh, and so I think you and I touched. Space briefly last week and, and said, okay, so, you know, that&#8217;s fine. We missed a week or two. Let&#8217;s, let&#8217;s start, um, moving forward. I was like, all right, you know, I&#8217;m still working on a review of, uh, the product. I&#8217;ll get you a new version for post status. I don&#8217;t think you heard from me until nine minutes ago.</p>\n\n\n\n<p>Uh, that never happened. So, yeah. You know, but it&#8217;s like, and I hate to. It, it&#8217;s easy to fall into like, well, it&#8217;s not out yet, so it, you know, there are no expectations other than our own. Yeah. Which is true. Um, you know, but it&#8217;s also like, I mean, this is, this is part of why we do this, right? Like, yeah. We&#8217;re, we&#8217;re at least part of our, our aspirations is, is freedom, uh, to make our own choices, to manage our own hours, to work on what we wanna work on.</p>\n\n\n\n<p>Um, which also means, I mean, family comes first and health comes first, and Yeah. You know, and, and paying clients come first when you&#8217;re at this stage. So, you know, these are just things we have to juggle and, and keep trying to make progress. I mean, it says everything to me that. You and I at least are like, okay, let&#8217;s keep talking once a week.</p>\n\n\n\n<p>Where are we at? You know? And, and cuz I have other people who I&#8217;ve worked with who many, many other people who, who ghost or who just wanna stop. There&#8217;s, there&#8217;s inherently so much shame in all of it that the moment they miss a day or a deadline or don&#8217;t hit the mark in some fashion, don&#8217;t want to talk about it.</p>\n\n\n\n<p>You know, I have friends who we&#8217;ve been talking about, Collaborating for years talking about like music or art or whatever. And, and now we, we, we&#8217;ve gone months where we&#8217;ll talk every week or every month, you know, how are you, how are the kids, da, da da. And we literally won&#8217;t, we won&#8217;t talk about the subject now because there&#8217;s, you know, because we didn&#8217;t, one of us didn&#8217;t move forward with it.</p>\n\n\n\n<p>There&#8217;s shame associated with it, so, you know. Definitely none of it&#8217;s that important, you know?&nbsp;</p>\n\n\n\n<p>[00:05:56] <strong>Cory Miller:</strong> Yeah, exactly. Like we started with really good intentions and openness. Um, what it occurs to me is just kinda your references back to music and bands and stuff is like, I&#8217;ve not, I, I played an instrument when I was in like middle school, but I&#8217;ve not been in a band, but it&#8217;s occurs to me.</p>\n\n\n\n<p>It&#8217;s like, it seems like that you&#8217;re, mm-hmm. Stru, you know, struggling to kinda get something going. And then there&#8217;s seasons of life that happened. Um, this, this stage of my life and my career, I really see more of the seasonal aspects of life. Yeah. Better than I ever have. And you go. You know, just things you don&#8217;t, you can&#8217;t anticipate, or if you tried to, you&#8217;d have another set of problems.</p>\n\n\n\n<p>And, um, it&#8217;s just like you said, like we&#8217;ve got other priorities, but, uh, it&#8217;s important for us to keep talking. I, I think too, when I think about entrepreneurship, I think there&#8217;s like part real hard work just doing things, trying to do it consistently, getting things out there, getting the next thing, and then there&#8217;s this bigger part.</p>\n\n\n\n<p>Which is, maybe somebody would&#8217;ve called it luck, you know? But it is like magic. You know? You stay around doing something. Maybe bands operate like this, I don&#8217;t know, but like you, you got enough interest, you know something&#8217;s there, you just haven&#8217;t figured it out yet. And then a magical moment, and I say magic cuz it&#8217;s like oftentimes in my career, specifically my professional career as an entrepreneur couldn&#8217;t have planned those things, man.</p>\n\n\n\n<p>They just happened, you know? Um, however, I might have tried to take credit for them. They just happened and it&#8217;s like the reading I&#8217;ve been and work I&#8217;ve been doing too personally is like creativity. You don&#8217;t control creativity. Those really magical moments we&#8217;re talking about, they kind of blossom out.</p>\n\n\n\n<p>And there was somebody I was just like, well, Anna, who runs feeder bars, Lindsay and her have been friends for a decade, you know? Anna tried so many things over the years, so many things, and then Vita Bars was the spark, the magic that made it happen. Mm-hmm. Now, now she&#8217;s full-time with it and she&#8217;s got employees and all that kind of stuff.</p>\n\n\n\n<p>So like all that time it&#8217;s kinda like learning the piano. People go, oh, you&#8217;re at the piano. You&#8217;re doing this beautiful thing at the wedding, or whatever it is. They don&#8217;t think about all those years spent. Right. You know, in the practice of it, and it&#8217;s kinda like that moment too. It&#8217;s like, I&#8217;m dribbing for a second, but do enough things to get to a moment that, that you probably didn&#8217;t plan.</p>\n\n\n\n<p>I think most of us, at least the entrepreneurs I know would say. Yep. That&#8217;s about it. Absolutely. Yeah. However, we like to think we control it and plan it. We don&#8217;t.&nbsp;</p>\n\n\n\n<p>[00:08:59] <strong>Corey Maass:</strong> And there&#8217;s, there&#8217;s time. Sometimes you, you, you ha you just have to let time go by. It&#8217;s like, in music, it&#8217;s one of the hardest things I&#8217;ve, I&#8217;ve had to learn.</p>\n\n\n\n<p>It&#8217;s like for years I made music and put out music, made music, and put out music. And then I actually started writing music that people were like, oh, this is a summertime song. It&#8217;s the end of the summer. We&#8217;re not gonna put it out now. That&#8217;d be dumb. So we&#8217;re gonna sit on it and you, and it&#8217;s like in actual pop music, you can find out that there, there were pop songs, but huge, huge hits.</p>\n\n\n\n<p>And in our minds, you know, you&#8217;re picturing, you know, Taylor Swift yesterday was in the, in the recording studio and then today you&#8217;re hearing the song cuz that&#8217;s cuz music can be live. Um, and in this day and age, sometimes that&#8217;s true and it&#8217;s a truer than it used to be. It used to be that, you know, a band would go into a studio and produce an album and it would take months and yada yada, you know.</p>\n\n\n\n<p>But a lot of the times thing, tunes or tracks or albums are actually held back. To try to be released strategically. It&#8217;s like big movies that sit on shelves for, you know, years potentially, because they&#8217;re like, this is a Christmas day blockbuster, we&#8217;re not gonna release, you know, or a summertime when all the kids are outta school type of movie.</p>\n\n\n\n<p>You know, we&#8217;re not gonna release it on the second day of school on a Tuesday. That&#8217;s dumb, you know? Um, but we don&#8217;t, we don&#8217;t really think about that, but, There&#8217;s sometimes there&#8217;s strategic reasons and sometimes like this where it&#8217;s like, I&#8217;m a lot better about it than I used to be, especially since, um, years ago now.</p>\n\n\n\n<p>So for a while I tried to make music an actual career or second career, um, and it really broke my heart. And so I stepped away from it for a while, and then when I was getting back into it, this is where having an amazing spouse is worth everything. Lindsay and I sat down, my Lindsay spelled with an A, sat down and, and she&#8217;s like, okay, so you, you know, you wanna get back into music.</p>\n\n\n\n<p>Great. Like, how do we, how does it not break your heart again? And one of the things that, that. Came outta that conversation was me being able to articulate like, okay, I&#8217;m not taking it as seriously this time, it&#8217;s a hobby. Mm-hmm. And, and so suddenly a lot of things changed. One, you know, I couldn&#8217;t just go out and, and buy new instruments or, you know, throw money at it the way I used to.</p>\n\n\n\n<p>Sure. But it also meant that like I could work on, like, I have found that I make a lot of. Music in the fall and then tend to not make any music, but it, but a lot of that music that I finish, I can like leak out again, a track a month or I can wait until summertime and put it out or whatever. And so it&#8217;s like I&#8217;ve got these big waves rather than it just being, you know, picturing this straight line of productivity.</p>\n\n\n\n<p>Um, and I think it, that kind of goes for this, this stuff too, like, This stuff. Uh, entrepreneurship side hustles. They&#8217;re, they&#8217;re side hustles. And for a long time I, I was like, I want this to be a day job. Still would love it. I&#8217;d still love my own product to be my primary focus. Then it&#8217;s a job that&#8217;s very different, right from, um, side, side hustles, um, ideas, putting out little apps, little ideas, um, little products.</p>\n\n\n\n<p>I mean, um, so. And so it&#8217;s, it&#8217;s picking things up, putting things down, um, and, and these days being okay with, again, letting some time go by or occasionally changing priorities even for a, a little while. Um, cuz there was a time when. I remember one time in particular that I was like, I was in between paying client gigs and came up with an idea [00:13:00] for an app and was like, okay, I&#8217;ve gotta crank this out and then it&#8217;s also gotta make money.</p>\n\n\n\n<p>And it was like the dumbest little idea. I won&#8217;t even share it, I&#8217;m embarrassed. Um, but it was like, it was an app that nobody wanted, you know? It solved a problem that nobody had. It was just an idea. But I remember like, Going, this is the first time where I, I, it has to make money. And I was like, it&#8217;s never gonna make money.</p>\n\n\n\n<p>Like, and I&#8217;m, so, I&#8217;m putting myself in danger here. That&#8217;s dumb. You know? Um, and that&#8217;s not to say that there aren&#8217;t entrepreneurial journeys. With VC capital or, you know, we&#8217;ve gotta double down and, and make this our full-time gig and all that stuff. But it&#8217;s like, at least for me, I find often that I&#8217;m, if I&#8217;m making decisions from a position of desperation, of, of need.</p>\n\n\n\n<p>That I&#8217;m not gonna make the best decision, you know, cuz my priorities, I can&#8217;t have any, I can&#8217;t have proper perspective on it. So, stepping back for a few weeks, honestly, what I look forward to is going back into my code, realizing that I did everything wrong and cleaning it up and then it&#8217;s a better product.</p>\n\n\n\n<p>And, and you know, are we the worst off for having missed a few weeks? Maybe. Who can say nothing&#8217;s obvious? Um, you know, but again, you know, just trying to keep moving forward with it.&nbsp;</p>\n\n\n\n<p>[00:14:19] <strong>Cory Miller:</strong> I think it&#8217;s like when we&#8217;re thinking about bands and hit music or products and entrepreneurs think about, you know, with or, and Anna and yours.</p>\n\n\n\n<p>My experience in this is like, If there&#8217;s enough of a fire to keep it going. Mm-hmm. You know, just enough. It doesn&#8217;t have to be a bonfire. There&#8217;ll be times of that for sure, but, but then mostly it&#8217;s probably just. Sometimes a little candle, sometimes just a little mini campfire. But if there&#8217;s enough in fuel in there that there&#8217;s something here.</p>\n\n\n\n<p>I think time is on your, like you said, as time goes by, time is on your side because yeah, it&#8217;s only a matter of time where th where things kinda move and shift and the, the market, the world where you&#8217;re like that. Some of the classic stories, the person I&#8217;m thinking of, I think it&#8217;s a product company and how it came out.</p>\n\n\n\n<p>It&#8217;s just a recent example, but the classic ones were in Founders at Work where you almost stumbled into, backed into what became the hit thing. But you couldn&#8217;t have kind of planned that. Right. Um, where you were just keeping on a path enough, knew something was here, didn&#8217;t thought you had a beat on it a couple of times, and then just really it was just.</p>\n\n\n\n<p>The fire was stoked long enough where something did really hit and it became this, it, it became its own thing, I guess. Yeah. Lot of the, and I&#8217;m not, go ahead. A lot of the entrepreneurial stories I hear, they aren&#8217;t like the VC route. We saw a big market and we went after and we got a big money. Uh, that&#8217;s a, that&#8217;s an outlier I think, um, for the, Millions of us, the rest of us, I think it&#8217;s mostly backing into something, staying around long enough to find the opportunity that really fits.</p>\n\n\n\n<p>[00:16:09] <strong>Corey Maass:</strong> Yeah. Chipping away at it, having, having fun with it, working around real life needs, family, money, mortgages, healthcare, you know, that kind of stuff. And it&#8217;s like, and that&#8217;s kind of the difference. Like I, I have friends who I. Are, have always wanted to do something. And I&#8217;m like, so outside of their job and, and so I&#8217;m like, so do something, you know, talking art, music, entrepreneurship, whatever.</p>\n\n\n\n<p>And it&#8217;s like you just, you, you, you have it in you or you don&#8217;t is one aspect and then the timing is right. Where it&#8217;s like you have that drive and you look around and you&#8217;re like, okay, right now I&#8217;ve got a couple hours a day where I&#8217;ve got. Whatever commitment you need, you know, to work at it. And so, um, and I think you and I also, I mean this is, this is the warm and fuzzy moment, but it&#8217;s like you and I also I think, have looked for an opportunity to work together for a long time.</p>\n\n\n\n<p>So it&#8217;s like we will continue to be friends and, you know, hopeful partners in something kind of always, you know. Yep. Um, I do have to say that. We have to keep the fire burning at least long enough to, so that I get to rock the swag at WordCamp us. That&#8217;s true. These are the, these are the real important things.</p>\n\n\n\n<p>[00:17:40] <strong>Cory Miller:</strong> Um, yeah, a absolutely. I know. Um, no, and I think that&#8217;s the other part on, down to this is, you know, at the base I enjoy our conversations. It it, it&#8217;s this hot, crazy hobby we might have of. Seeing what&#8217;s out there, seen, seeing something following the path down it. And, uh, I still believe in the product. Yeah.</p>\n\n\n\n<p>Um, but it&#8217;s funny, it&#8217;s like I believe in the product, but I also believe in the path that might lead to something else. Yeah. Because, I mean, well, we&#8217;re on our second iteration of a product. Like, not even same product, there&#8217;s similarities. Mm-hmm. But like, we went down this path to here and I think it just adds to the ongoing conversation that we&#8217;re having is something&#8217;s gonna happen.</p>\n\n\n\n<p>Yeah. And then there&#8217;s a flat, simple, practical byproduct. All of this is that we&#8217;re having a conversation live and sharing our philosophies, sharing our thoughts, sharing our actions, um, all these things that has another byproduct that could lead us in another direction altogether, which is good. Yeah.</p>\n\n\n\n<p>Yeah. You just say from a professional opportunity standpoint,&nbsp;</p>\n\n\n\n<p>[00:18:53] <strong>Corey Maass:</strong> right, exactly. I mean, it&#8217;s the part, being part of the same network overlapping concentric circles. Um, And, uh, and kinda seeing what comes out of it. Cuz the other, I think the other thing I&#8217;m, I&#8217;m thinking in from the perspective of somebody who&#8217;s listening, who&#8217;s like, right, you, you know, you are both established.</p>\n\n\n\n<p>You have, you know, other income streams or you&#8217;ve got your networks, you&#8217;ve, you know, and, and you&#8217;re also putting a product out there. Like, I still see people on entrepreneurial forums that are like, you know, somebody&#8217;s gonna steal my idea. And, and we have gone the other direction and, and obviously we&#8217;re not the first, but, um, of, you know, just brazenly putting it out there and taking our sweet time.</p>\n\n\n\n<p>Let&#8217;s be honest. Like if we were other people, if we had venture capital, if we, you know, Didn&#8217;t have, you know, responsibilities and mortgages and things like we&#8217;d eat ramen and we&#8217;d have cranked this thing out years, uh, months ago. And, um, and there&#8217;s absolutely the chance that somebody listens and goes, oh, that&#8217;s a great idea.</p>\n\n\n\n<p>And, and comes in and, and, Steals it and releases it before we do. Um, you know, but it&#8217;s still, like you just said, it&#8217;s all part of the journey. We&#8217;re going to put our own twist on it. We&#8217;re going to put our own experience on it and, uh, and continue to iterate on the project, the product too. So when the product does come out, like it&#8217;s very much ours.</p>\n\n\n\n<p>And it might overlap with other people&#8217;s, but frankly it already will. Like, that&#8217;s the nature of. Pretty much any product. There&#8217;s no, there&#8217;s, there&#8217;s really, you know, almost nothing that hasn&#8217;t been invented. Um, and I also, another, uh, thread I saw recently again on, um, I think it was Reddit, one of the entrepreneurial ride along, or, or one of those subreddits, um, That people were concerned about not having an idea.</p>\n\n\n\n<p>And everybody else was like, just you, you don&#8217;t, you know, okay, don&#8217;t, don&#8217;t steal an idea and reproduce it. Like that&#8217;s boring. But you know, if you can build the better mousetrap, if you can build the better to-do list, if you can build the better time tracking app, uh, you know, whatever, do it. Like, that&#8217;s how most.</p>\n\n\n\n<p>Competition starts as, as these pretty subtle little differences. Um, and then you listen to your users, you listen to your own gut, and you end up di I feel like you end up diverging more and more and more. Um, you know, and or you&#8217;ve got, you&#8217;ve got a network that, that you can tap into that existing client or existing products can&#8217;t or whatever.</p>\n\n\n\n<p>So, um, You know, it&#8217;s all, I guess I, these days I view it, I view it as kind of as a game, which is more flippant than it probably sounds, but it&#8217;s like you&#8217;re wheeling and dealing, but there&#8217;s times when you win and there&#8217;s times when you lose. God. I&#8217;m being very metaphorical here, but, um, you know, but it&#8217;s the, the.</p>\n\n\n\n<p>I view it as an ebb and flow, which is, uh, again, I think for me the, the way that I had to phrase it a while ago was like, this is a hobby. And, uh, and so it&#8217;s, it&#8217;s meant to be fun. Um, and that isn&#8217;t to say that everything we do has to be fun cuz, and, and, or that I don&#8217;t take it seriously, but, um, but it gives you, I think, a little more perspective.</p>\n\n\n\n<p>You don&#8217;t have, I don&#8217;t, I don&#8217;t have board members that I have to, or, you know, or stockholders that I have to appease. Um, And I don&#8217;t have, uh, you know, I don&#8217;t have to burn the, the, the candle at both ends, um, to make ends meet if there&#8217;s a bug. And I&#8217;ve got users that are depending on me, that happens with my apps or my plugins once in a while, but it&#8217;s honestly like once in a while.</p>\n\n\n\n<p>That&#8217;s fun. I don&#8217;t wanna do it all the time, but it&#8217;s like, oh, I&#8217;ve gotta do a little hackathon and, and you know, figure this out until 2:00 AM cuz a bunch of people are depending on me. That&#8217;s fun too, you know? So,&nbsp;</p>\n\n\n\n<p>[00:22:45] <strong>Cory Miller:</strong> Yeah. It occurs to me it&#8217;s really a low pressure and stress for us, which is what we both need.</p>\n\n\n\n<p>Right. Um, having a little bit more, I mean, I guess that&#8217;s the definition of a hobby, right? You know, enjoyment without the stress and pressure. Yeah. When it switches from hobby. Oftentimes it counts with stress and pressure. Yeah.&nbsp;</p>\n\n\n\n<p>[00:23:08] <strong>Corey Maass:</strong> Well, and and it&#8217;s interesting cuz like I, I worked at startups, you know, it&#8217;s like I&#8217;ve done, I&#8217;ve done a lot of work in WordPress, um, and there&#8217;s been a lot of overlap.</p>\n\n\n\n<p>But I also, for a long time specifically was working for and with and at startups, um, of different natures. Um, and some of it was WordPress work and some of it was not. But there, there, and I was in New York City for a long, long time, um, so-called Silicon Alley. Um, during the WeWork stuff, I think I&#8217;ve mentioned that before.</p>\n\n\n\n<p>You can actually see me in the WeWork movie and, um, and all that. And I was surrounded by people who were hustling all the hustlers and, and all that stuff. And it&#8217;s like, Most people were chipping away. I mean, almost like, like almost anything. It&#8217;s a, everything&#8217;s a bell curve, right? So most of the people on the bell curve were just chipping away, you know, and they weren&#8217;t burning themselves out, but they weren&#8217;t also only working a day a week or something.</p>\n\n\n\n<p>And you had people who were working very, very hard. And you did have people who were there just for the lifestyle and honestly spent all day just playing ping pong. Um, and were there for the beer kegs, you know? Um, But working at different startups, like I&#8217;ve worked at startups where it was all hustle, hustle, hustle, and we&#8217;ve gotta put in long hours.</p>\n\n\n\n<p>And, um, and I, I found that I got out of those pretty quickly in part because I would, would burn out. Um, and I think it would be different if I had been in charge. Um, but like the one main startup where I was CTO was. Um, I think there&#8217;s a cultural difference here. Um, but it was in Nashville. It wasn&#8217;t in New York.</p>\n\n\n\n<p>So there&#8217;s, um, there two things were different. We were not in the hustle bustle of New York City. Nashville&#8217;s a little more easygoing. Um, but also we were generally all, you know, in our thirties and older, we weren&#8217;t all a type. Hustler entrepreneurs. Um, and then, uh, stereotypically, uh, down south you&#8217;ve got family values are, uh, or at least the family itself is prioritized higher.</p>\n\n\n\n<p>And so we, there, we absolutely put in some long days, but for the most part it was. A priority of the founder and subsequently everybody else on the team that, you know, you wouldn&#8217;t, if it could be done tomorrow, if it was five or six o&#8217;clock, then fine. Do it tomorrow. You know, keep chipping away, make good progress.</p>\n\n\n\n<p>But, um, you know, but you didn&#8217;t, we didn&#8217;t have to burn ourselves out. Uh, we weren&#8217;t gonna really get anywhere by burning ourselves out. And, and we did just fine till we ran outta money, which happens with startups. Um, you know, but it, but it doesn&#8217;t, it doesn&#8217;t always have to be that crazy atmosphere. Yeah.</p>\n\n\n\n<p>I, I&nbsp;</p>\n\n\n\n<p>[00:26:02] <strong>Cory Miller:</strong> can&#8217;t help but think there&#8217;s a shift going on globally too, with work.&nbsp;</p>\n\n\n\n<p>[00:26:07] <strong>Corey Maass:</strong> Um, what, sorry, what, what was it like at, like, ithe or, you know, some of the, the bigger places you&#8217;ve worked?&nbsp;</p>\n\n\n\n<p>[00:26:13] <strong>Cory Miller:</strong> The biggest place I have been be beyond like liquid web would be, um, I was at a seminary and I think there was 150, 200 people employed by the seminary.</p>\n\n\n\n<p>Maybe that it&#8217;s too much. No, I actually, there&#8217;s a hundred, 150, um, that, that was just a very academic setting, so it was money, always money. So, Um, I loved it cause it was a learning stuff, but as far as like in the past, um, you know, I worked at newspapers, so it was always deadline. I think it was more startup, you know?</p>\n\n\n\n<p>Yeah. Very much startup. Except every day we were launching a new product.&nbsp;</p>\n\n\n\n<p>[00:26:58] <strong>Corey Maass:</strong> That&#8217;s, that&#8217;s insane.&nbsp;</p>\n\n\n\n<p>[00:27:00] <strong>Cory Miller:</strong> Which I think is why I probably liked entrepreneurship is just the deadlines and product is, it was so fulfilling to come. At the end of the day. But as far as values and stuff goes, I think I learned more in my leadership from what the not to do what I didn&#8217;t like, the obsession with whatever the goal was at the expense of people and just realistically, like what are we expecting people to do?</p>\n\n\n\n<p>You know, I could, my truck. Get it all, get it up to 150 miles per hour and get into the red line, then it&#8217;s eventually gonna break. And I don&#8217;t think you can do that. We try to do that with people. Um, but I took a lot of those lessons leadership wise. I had, um, probably some things I go, I&#8217;m not gonna do that ever.</p>\n\n\n\n<p>My last job before I started iThemes, um, I worked for a really amazing pastor. The one that kind of refreshed my optimism that. There could be one who at the time, the way I understood the Bible was be just a shepherd. You know? Um, he was really awesome. I really, I, I took his archive as a leader into, into I themes or eventually when we grew on our team.</p>\n\n\n\n<p>But you&#8217;re right, the first, first couple years, um, it was just fun and new. It was creating stuff. With hopes and dreams and thoughts and ideas and, uh, it was messy. Um, it was messy, but we got to do some cool stuff. We did like create an office that eventually grew to about 5,000 square feet and got to, like, my dad actually drove up.</p>\n\n\n\n<p>From about two hours from where he lives from us and came and helped me, helped us demolish some of the walls that were up at this place. Cause we wanted more of that bigger open thing and we went to IKEA and get all the tables. And I think about all that initial time, very romantically, very affectionately, because it was just, we didn&#8217;t all know.</p>\n\n\n\n<p>We didn&#8217;t know what we were doing. I sure as hell didn&#8217;t know what I was doing, but it was fun creating something that. What would our expression look like? And so I would say for the first three years it was just kinda hanging on and having fun with, yeah, doing some real stuff. Um, there was electricity in the air and uh, with a whole set of problems that developed out of that.</p>\n\n\n\n<p>And then I think when we hit about a million in revenue, I couldn&#8217;t manage the team by myself. Um, we were up to at least 10 people by that time and. I think things got more serious and probably professional, um, in the sense of, okay, you know, we, we had health insurance probably I think our first year. As soon as we hired the first couple employees we needed to get health insurance type of thing.</p>\n\n\n\n<p>And uh, but I think that year something was different is like, we&#8217;ve got something here. Yeah. Lining in the bottle. Let&#8217;s figure out how to protect it, grow it. Maintain it. And um, and so we needed some of the structure in there. Um, my value as leader though, was always, like, I did a talk early on. I was like, I wanted to build a tree house.</p>\n\n\n\n<p>I wanted to have a tree house, and I wanted to invite all these cool people to play with me in the tree house. That&#8217;s what it was the first couple years. And, and some really good stuff came out of that. Um, you know, we didn&#8217;t fall out of the tree house and break her arm. Um, mostly, and then it was, it was shifting of like, holy crap, like look at this thing, we gotta figure out that.</p>\n\n\n\n<p>And then, but when it really serious was toward the end when it was like, oh, there was more children of our employees than there were employees, and that was responsibility barrier. And then it&#8217;s like, house gets a little serious, you know? Yeah.&nbsp;</p>\n\n\n\n<p>[00:31:07] <strong>Corey Maass:</strong> That&#8217;s interesting. Um,&nbsp;</p>\n\n\n\n<p>[00:31:11] <strong>Cory Miller:</strong> so yeah, I&#8217;m. I look back at that time very fondly and nostalgically.</p>\n\n\n\n<p>Um, cuz I remember it was toward the end of the year. No, it was after the first of the year. And I got invited to be in, uh, entrepreneurs organization and said, well, you need a million in sales. And I remember going to our accountant like in January and going, okay, where do we hit? And we were like, $70 over a million or something.</p>\n\n\n\n<p>And I thought we did it, but here&#8217;s how weird it was. More treehouse thing is like, That money didn&#8217;t flow directly to me. That was, I wasn&#8217;t swimming in the lap of luxury or anything. It was like that childhood c childish feeling of I get the high score on Gallagher. Oh wow. We did it. We did it. You know, and, uh, [00:32:00] but what&#8217;s, what&#8217;s crazy related to the whole entrepreneur journey is I think that was probably, I.</p>\n\n\n\n<p>Those circumstances and timing and backing into that was just ideal, obviously. But I go, it wasn&#8217;t all luck, right? It was both. It was all luck, all hard work. You know? It was both. Um, cuz I&#8217;ve since then tried to recreate the magic experiment, you know? Yeah. It was cool. My partner came in, I think it was our first year, we had our first office, and I would buy these, sorry, I&#8217;m these plastic tables from Sam&#8217;s Club.</p>\n\n\n\n<p>Mm-hmm. Basically picnic tables, you know. Yeah. And I was like, these are our desks. I held onto that for the longest time until we got our next office. And Matt was like my co he was like, Time to time to probably upgrade from the white desk. And I was like, no, I don&#8217;t want to. I did eventually. Um, but I think that was part of that magic right time, right place, right?</p>\n\n\n\n<p>People were partners, right. WordPress. Um, but it, I that those conditions were really conducive to creativity and magic and pulling. People were pull. Pulled in to that, like Christine was one, um, I think it was our second or third team member, man, changed the change, solidified the entire direction of the company and.</p>\n\n\n\n<p>Um, huge, uh, different people like Dusti Bolton, Matt Danner, and Kristen Rutten, and different people that poured into our orbit. I go, wow, this is cool. So like when you talk about band, I go, that&#8217;s what my band was. Mm-hmm. Because it&#8217;s just like, we just made really good music for a long time. Yep. Uh, but how do I recreate that?</p>\n\n\n\n<p>That&#8217;s been the obsession for the last five years. Uh, until I just go, that was done. That was there. Yeah. That was album. I laid, we laid, excuse me. And it&#8217;s on to new music, right?&nbsp;</p>\n\n\n\n<p>[00:34:03] <strong>Corey Maass:</strong> Yeah. Or yeah, arriving at a different thing, different voices. You can&#8217;t just recreate the same thing. Music&#8217;s always the perfect metaphor in, in entrepreneurship, ownership and programming.</p>\n\n\n\n<p>And I think there&#8217;s a reason why so many of us are into music or are musicians or whatever. Um, but yeah, and I think that&#8217;s, That&#8217;s what a lot of, like, I, I was really into all the entrepreneur stories for a long time and I&#8217;m glad I listened to a bunch of the podcasts and, you know, and whatnot. But you can&#8217;t recreate somebody else&#8217;s story can be inspired&nbsp;</p>\n\n\n\n<p>[00:34:44] <strong>Cory Miller:</strong> by for sure.</p>\n\n\n\n<p>[00:34:46] <strong>Corey Maass:</strong> Oh hundred percent. A hundred percent. And, and, and some of it is good advice or, you know, in certain situations you&#8217;re like, oh, you know, I remember this thing. It&#8217;s like, like reading a playbook, but you still have to know what plays to apply or whatever.&nbsp;</p>\n\n\n\n<p>[00:35:01] <strong>Cory Miller:</strong> I, so when I le met Lindsay and in like 2010, which was that year, we hit a million, um, we started this thing that, um, was called Startup Sofa.</p>\n\n\n\n<p>[00:35:13] <strong>Corey Maass:</strong> I&#8217;m sorry, I&#8217;m laughing because you know, you&#8217;re, She&#8217;s clearly in it for the money. Um, you know, yes. That year, you know, you were walking around being like, uh, my company just turned a million. You know what? Beautiful women want, want, want me now? She, she,&nbsp;</p>\n\n\n\n<p>[00:35:30] <strong>Cory Miller:</strong> she remembers. She goes, no, you know, we were dating when.</p>\n\n\n\n<p>You hit your first six figure month. And I was like, Uhhuh, I realized everything got better with you. It did. Um, that&#8217;s the other way&nbsp;</p>\n\n\n\n<p>[00:35:44] <strong>Corey Maass:</strong> she sees it. The she sees it the other way around. Yeah.&nbsp;</p>\n\n\n\n<p>[00:35:47] <strong>Cory Miller:</strong> And it. And honestly, candidly, it did, everything did get better when you just had some like, like while we&#8217;re doing this together, not apart, right?</p>\n\n\n\n<p>It&#8217;s right. It&#8217;s just better together. I&#8217;ve said that with post status. All the other things, it&#8217;s like, God, as much as I want to think I&#8217;m a solo act, I&#8217;m really not. Well, I&#8217;m much better as a collaborator. Um, oh, so we started, I started this thing called Startup Sofa, um, and tried to share all these things I had learned.</p>\n\n\n\n<p>I was laughing, telling her that, and I said, I was two years into this thing and thought I was, I could share, I do believe there&#8217;s a point where if you&#8217;re like one step, two step ahead of someone, sure it&#8217;s very helpful. It&#8217;s very good stuff. Like this is where I&#8217;ve got, uh, but I started laughing. I go, cuz now I try to share less.</p>\n\n\n\n<p>I really actively try to not give advice as best I can until I go, okay, now it&#8217;s time for advice. I just share experiences cuz I go right. Everybody I hear doing that and you&#8217;re like, how long have you been doing this? All right. Have you been doing it exactly the way they have? Do you know their dna N do you know their company?</p>\n\n\n\n<p>Do you know the mix? Do you know the environment? The answer is no. Very few bands lose their cover singer and have can just plug in another person and know, I think Queen is one of them, but you&#8217;re like, it&#8217;s very hard to, the magic is that band, those people that time to&nbsp;</p>\n\n\n\n<p>[00:37:12] <strong>Corey Maass:</strong> do that. Yeah. Yeah. And I mean, you can&#8217;t, and time is is the other, is the other thing.</p>\n\n\n\n<p>It&#8217;s like you can&#8217;t, you know, I&#8217;m, I&#8217;m stuck in that a little bit with music. It&#8217;s like I am, I am getting better and better at making a genre that basically died 10 years ago. I do it cuz I love it. And again, I&#8217;m, I&#8217;m, there are moments where I&#8217;m like, uh, these other genres are more popular. I would get more airplay if I switch genres again cuz I switched genres.</p>\n\n\n\n<p>Like I rode a lot, the wave of, a lot of genres for a lot of years and I was sincere about it. I wasn&#8217;t, cuz I, I&#8217;ve never made music thinking that it was really going to get popular or what have you. Um, But now I make the music that I love the most and nothing else has come along that I love more. Um, but, so if you&#8217;re the perfect band, but you&#8217;re making seventies rock, uh, you might have a hard time if it sounds too much.</p>\n\n\n\n<p>Just like seventies rock, you know? Okay. That&#8217;s&nbsp;</p>\n\n\n\n<p>[00:38:15] <strong>Cory Miller:</strong> so good because then I go, there&#8217;s this other part to the whole magic is that you want magic to happen. Probably some baseline passion, desire, interest for you. Seventies rock music, right? And I go, well, as time goes by, everything works in cycles. We know it might be dead 10 years ago, but it could be alive 10 years from now.</p>\n\n\n\n<p>And you&#8217;re like, oh, it&#8217;s those people that I admire very much, Corey, that have their interests and desires and passions and don&#8217;t. Stop. Mm-hmm. There&#8217;s some little fire of that in what we&#8217;re talking about while we keep showing up on [00:39:00] Wednesdays. But I really admire it because I go, those are the people that, that something is gonna happen.</p>\n\n\n\n<p>It&#8217;s probably gonna be better than what they imagined. Not what they imagined, but better. And, uh, I go to like seventies music. You said it just so organically. It&#8217;s something I, I like probably not gonna stop and then I go, well, if you stay around for another 20 years, Doing that, something&#8217;s gonna happen of that.</p>\n\n\n\n<p>Right,&nbsp;</p>\n\n\n\n<p>[00:39:25] <strong>Corey Maass:</strong> right. I mean, that&#8217;s been proven over and over again and it doesn&#8217;t happen for everybody. And I&#8217;m, I have, you know, there&#8217;s, there&#8217;s two thi, two things, only two, there are at least two. One, one is persistence, um, doing what you love. And, but again, this is where, and for me it had to be. Calling it a hobby, you have to make your peace with it.</p>\n\n\n\n<p>I think that&#8217;s the bigger, uh, the wider way to describe it is like there are people who are session musicians, you know, there are people who are, um, who will try to ride each wave to make the next, you know, hit song based on what trends are now. Um, there are people who would just grind. Um, Derek Sives talks a lot about this.</p>\n\n\n\n<p>Yeah. Um, love his work. And, um, you know, and, and, uh, and he&#8217;s a good example. And other people, uh, who are like, okay, well I&#8217;m going to, I&#8217;m gonna do other things to, you know, to pay the bills, but, uh, my passion lies over here. And, uh, because it&#8217;s my passion, it will, I will always keep chipping away at it kind of thing.</p>\n\n\n\n<p>Um, but I think, so that&#8217;s, that&#8217;s sort of one line. And then there&#8217;s another line, which is time and perspective and, um, Because you talk about good things will happen to them eventually. Right? And so it&#8217;s like I, for me, part of that I think can be the lowering of expectations, uh, which sounds so old and cynical and beaten down, but it&#8217;s like I get more out of.</p>\n\n\n\n<p>Smaller things musically, like again, I&#8217;m, I&#8217;m, I&#8217;m getting older and older. The likelihood that even if I got a song that blew up, am I gonna tour on that at age 46? I also, I generally make music that that&#8217;s popular in England and so am I going to tour in England at age 46 and I can barely stay awake past 10:00 PM Am I, am I really gonna go DJ gigs at three in the morning?</p>\n\n\n\n<p>No. You know, uh, and so managing, managing expectations and it&#8217;s like I&#8217;ve, but I, and being content with, uh, a little bit of airplay here and there, or the people who, uh, I&#8217;ve now been friends with for. You know, decades coming to me and saying like, this is the best song you&#8217;ve ever written. I&#8217;m like, that&#8217;s enough.</p>\n\n\n\n<p>Like, I don&#8217;t, you know, yes, I would still love, you know, uh, endless BBC airplay or something, but the li the likelihood is less. And so it&#8217;s the, uh, staying consistent for me. Staying consistent, plugging away, doing what I wanna do, but then also being more and more content with, again, smaller wins. Um, cuz it&#8217;s like there&#8217;s, yeah.</p>\n\n\n\n<p>You know, it&#8217;s hard not to like, um, I am reacting to what you just said of like going, there&#8217;s a lot of entrepreneur advice that, that the entrepreneurs that I was following, like for years I wanted to go to, um, Rob Walling and, and Mike, they do startups for the rest of us. Um, and they do a conference, MicroCon.</p>\n\n\n\n<p>Yeah. For years I wanted to go to MicroComp and, and then it, and, and I went to businesses, software, and some of these that were, I. Like only a few of the talks were relevant to the very, very bootstrapping I was doing. Um, and now even MicroComp, I mean, and years ago they split into two tracks. I don&#8217;t know where they are anymore, but the last time I looked, and this is no criticism of them, it&#8217;s just like I never.</p>\n\n\n\n<p>I never was able to go up, up, up with all the other people that were going up, up, up. And so then they were all, you know, you, you were, you mentioned being a couple of rungs ahead of me. They were ladders ahead of me. And so it stopped being, um, pertinent. Um, and I also took my foot off the gas and, and aimed a little smaller.</p>\n\n\n\n<p>And again, qualifying more the more side hustles and, and you know, uh, and stuff like that. And so it&#8217;s like, I struggle, I go back and forth, right? Pride at the end of my life, I, I would love to have owned a gajillion dollar company, or more importantly to me, honestly, would be to have a gajillion user product.</p>\n\n\n\n<p>Um, cuz it&#8217;s just more fun, frankly, and, and presume that money would come out of it and stuff like that. But it&#8217;s like, what are my, what are my actual goals? Like, why at 46 do I code extracurr? I, I, it&#8217;s a hobby. I love it. Okay, but what, what are the goals? You know, are there still goals? Am I still trying to earn millions of dollars?</p>\n\n\n\n<p>Like what is, it&#8217;s like I always, I always talk about, um, I don&#8217;t know, I, I don&#8217;t actually know anybody who makes canoes, but I always talk about, Uh, the, or I love the idea of a person who, cuz I think I, it&#8217;s the most frivolous thing I can think of. Um, and that&#8217;s that, and I don&#8217;t mean that negatively, but as a hobby, like in your garage, taking up most of your a, a car bay.</p>\n\n\n\n<p>So one of your cars probably has to be parked in the, in the driveway so that you can make a canoe. I guarantee you don&#8217;t need a canoe. And, and the world doesn&#8217;t need another canoe. There are canoes that you could go buy, probably get one for free because everybody buys a canoe and then never ends up using it.</p>\n\n\n\n<p>That&#8217;s, at least that was me, my family growing up. Um, but anyway, it&#8217;s like that to me is the epitome of a hobby. It&#8217;s pure love. Absolutely nothing in the world needs or requires or even probably encourages you to build a canoe, but you want to, so you&#8217;re gonna do it. Um, and that&#8217;s, and then I look at, at what I&#8217;m doing and it&#8217;s like, okay, well the, if, you know, the end goal of a canoe is that you can put it in the water and paddle it around, right?</p>\n\n\n\n<p>It&#8217;s like, so the end goal for me, for building a product is users as people, users it. And I&#8217;m like, look, I, I brought value or joy or productivity or, you know, something that it&#8217;s validating. Um, You know, but, but in the grand scheme of things, like there was a time when I was like, you know, the goal is to make a gajillion dollars.</p>\n\n\n\n<p>Um, now it&#8217;s like I&#8217;ve, I&#8217;ve gotten, I&#8217;ve gotten smaller and smaller and smaller. Now it&#8217;s to make a good product that people use. Mm-hmm. And it&#8217;s like, is that because I have failed so many times that my expectations have gone down, down, down, or. Is that still I&#8217;ve, I&#8217;ve, for myself, I have distilled it down to, that&#8217;s the first real spark, and then you kind of grow a, ideally grow a fire from there, right?</p>\n\n\n\n<p>If you&#8217;ve got people using something, then you&#8217;ve got something, presumably, and then that&#8217;s where you, you know, uh, You are, you are the fuel, and I&#8217;m the f I&#8217;m the spark or whatever, you know, that&#8217;s where you and I collaborate because fire takes three things. Um, and so you, you can&#8217;t, you probably can&#8217;t do it yourself or you don&#8217;t want to.</p>\n\n\n\n<p>Um, and, or, you know, the idea of cool people working together to build something bigger and bigger and bigger. And so part of the joy is like, I was texting my, talking about the, the startup in Nashville. I was texting with the ceo. Yes. This weekend, you know, and I haven&#8217;t, and that was at least 10 years ago.</p>\n\n\n\n<p>So it&#8217;s like friendships that last, or fond memories or, or war stories or, you know, I don&#8217;t know. It&#8217;s hard to, I&#8217;m, I&#8217;m totally rambling, but it&#8217;s hard to quantify now, harder to quantify now for me, like. Why on earth I do this, but I do it and it brings me joy and maybe that&#8217;s all I need.&nbsp;</p>\n\n\n\n<p>[00:47:30] <strong>Cory Miller:</strong> Yeah. We&#8217;ve talked a lot about hobbies and historically I&#8217;ve been like, I don&#8217;t have hobbies.</p>\n\n\n\n<p>I have work, I don&#8217;t have a home life. Um, and work was always my hobby. I mean, I would say even before I, I could, I had so much fun. It was like a hobby, I guess. Mm-hmm. Um, and most of the business was fun and I didn&#8217;t. Have time and want to have time for other hobbies. Like it had to be productive. When you said hobby, it&#8217;s like when you&#8217;re talking about the canoe, I go, there&#8217;s a reason the person has makes space in the garage and the significant other probably goes, we don&#8217;t have any garage cause the canoe.</p>\n\n\n\n<p>But I go, that energy, that passion needs to take up space in your life somehow. And I go, so I haven&#8217;t had those. I do have two motorcycle, um, two motorcycles and the girls that don&#8217;t work. Um, but like what takes up space? I guess I was thinking what takes up space and this is it, this is part of this. So like we talked about it and your, your thoughts and hobbies have helped me so much more as go, I still think about it as.</p>\n\n\n\n<p>For some reason, I, it&#8217;s hard for me to do something just for the value of doing it. The joy of doing it. Yeah. Um, I do have joy in doing things that build. I just want the practical something to the end. But I go, you know, this has, this, this time should take, uh, space in my life because I enjoy it. Right for that only value.</p>\n\n\n\n<p>That&#8217;s something that did not exist probably a year ago, five years ago. 10 years ago. In my, in my mind, in my heart, because I was like, well, it&#8217;s just extra. It does take up just like the canoe in the garage takes up space, that other things could be there, but I go. No, enjoy talking to you. Enjoy having these conversations.</p>\n\n\n\n<p>Enjoy tinkering with these products. This is our little mm-hmm. Garage hobby. You know, my version because I don&#8217;t physical things, you know, you build fences and stuff. Um, I, I don&#8217;t really do a lot of that. Don&#8217;t feel like I have always the ability and patience to do it, but I was like, hobby that builds, I, that&#8217;s my version of hobby is something, even when I could say I.</p>\n\n\n\n<p>My reading hobby, my hiking hobby, for me, it still builds. I&#8217;d need that part. It&#8217;s just, it connects somewhere back. Um, like I can say we&#8217;re gonna my daughter and sent her home. Of course summer, we&#8217;ll go to the swimming pool. The value of that is rest and recuperation and enjoying time with them. That checks by something that builds.</p>\n\n\n\n<p>Sure. Thing, but I don&#8217;t know. As you were talking, I was like, no, it&#8217;s this time should take up this space. It has taken up, what, the last six months I think we&#8217;re our 18th session.&nbsp;</p>\n\n\n\n<p>[00:50:40] <strong>Corey Maass:</strong> Yeah. I, yeah. I love, I love that you say it that way, like I think the hard part is, again, settling it in your own mind and then explaining it to other people.</p>\n\n\n\n<p>Yeah. And, and I know that we&#8217;ve struggled a little bit, um, where to my wife, it looks like I&#8217;m working all the time and I&#8217;m like, yeah. And sometimes I am. And sometimes it&#8217;s work, but it&#8217;s not earning me any money. And sometimes it&#8217;s fun and it&#8217;s not earning me any money. And it&#8217;s, you know, and it&#8217;s like there are four, the four quadrants of earns money or doesn&#8217;t, and it&#8217;s fun or it isn&#8217;t, but, um, and it&#8217;s client work or it&#8217;s not.</p>\n\n\n\n<p>And, and I know that like my folks struggle with this too. My dad, my folks are retired, but my dad still writes papers, um, using research that he did during his career as a forester. Um, And it just brings him joy. And my mom&#8217;s like, get off the damn computer, where, you know, go play golf. We&#8217;re retired.</p>\n\n\n\n<p>That&#8217;s not the retirement she wants. It&#8217;s the retirement he wants, you know? Um, and so it&#8217;s the hard, sometimes it&#8217;s hard to explain or show to other people, like, this is okay, this is what I wanna do. It&#8217;s like, as long as you&#8217;re getting enough exercise in vitamin D, you know, uh, but it&#8217;s, you know, cuz it&#8217;s, And it&#8217;s funny cuz people will look at gaming, you know, it&#8217;s like, oh, well you&#8217;re, you&#8217;re 10, 12 hours a day in front of the TV going zap, zap, zap or whatever.</p>\n\n\n\n<p>You know? We&#8217;ll go, okay, that&#8217;s fi that&#8217;s fine. That&#8217;s a hobby. It&#8217;s like, It may or may not be the healthiest me sitting here typing, building something, and I&#8217;m not judging one against the other, obviously, but it&#8217;s the, like, it&#8217;s hard to, it&#8217;s, it, it&#8217;s not as easy to demonstrate that it&#8217;s the same sort of thing of like, no, this is fun.</p>\n\n\n\n<p>You know?&nbsp;</p>\n\n\n\n<p>[00:52:35] <strong>Cory Miller:</strong> Oh yeah. I, you know, self-care is all in the rage and I&#8217;m glad it is, but I go, it&#8217;s such an abstract concept for me. But because I&#8217;m, I try to be pretty practical with things, but I go, you know, that time and space is valuable to me. And you put the other part, is it seen as valued by others? And that&#8217;s another conversation.</p>\n\n\n\n<p>But I go, what I&#8217;m trying to do is like, I don&#8217;t have those things. Maybe I don&#8217;t consciously have those things a take up space that I go, this is me, this is for me. Right. It&#8217;s for others but me and this whole concept of taking, so I says, what the heck does that talk about? It means for me personally, being in a line, not worrying about everybody else, necessarily worrying about me too.</p>\n\n\n\n<p>I&#8217;m okay to be in this space. Um, there&#8217;s a great person on Instagram talking about, or Instagram talking about Enneagram, and I&#8217;m an Enneagram nine, which is peacemaker Art Tap. And the one thing they said, take up space. And I said, I think I&#8217;m starting to get that now from canoe in the garage to standing in line.</p>\n\n\n\n<p>And you know what? I&#8217;m in this part and I&#8217;m gonna take this particular space, you know, for myself. Yeah. And I think that goes back to hobbies is now of course communication with sniff and others and all that stuff. But I go, it&#8217;s one added element I think our conversations have been so enriching for me is just go, it&#8217;s okay.</p>\n\n\n\n<p>This time our async time takes up space and what I increasingly see is limited time. Yeah. And energy. But I go, I wanted to take up space. I wanted to take up that space. And you know, that&#8217;s the amber that I think keeps me coming to this. Uh, and then, you know, you never know. You just never know. Yep. Like we&#8217;re not losing our house families, all this stuff, like you said earlier.</p>\n\n\n\n<p>Yep. So good reflection on a Wednesday.&nbsp;</p>\n\n\n\n<p>[00:54:48] <strong>Corey Maass:</strong> So, uh, I think both of us have limited availability for a while, but as we&#8217;ve said so I&#8217;m the only thing that is tugging at my sleeve. Given, given the reflection that we&#8217;ve just done, like I&#8217;m, I would be okay if time went by. Um, but the, the little bit that&#8217;s, that&#8217;s nagging at me is that we&#8217;re, we are really close.</p>\n\n\n\n<p>Like I have something working. Um, and so I think that that&#8217;s gonna keep, that&#8217;s gonna drive me soon to, again, start putting in a few hours here and there, um, to try to get something. Out the door, um, for you to use. For me to use and mm-hmm. Um, and you know, as quick as we can get it on the website. And, and so it&#8217;s on, it&#8217;s for sale.</p>\n\n\n\n<p>Like, and there it is. People can try it. And, and you know, um, we were&nbsp;</p>\n\n\n\n<p>[00:55:55] <strong>Cory Miller:</strong> talking about our, don&#8217;t think feature damages post says that are gonna, we got this new theme in staging. We&#8217;re gonna be launching before work camps. I&#8217;ll say July 1st, and realizing thumbnails on the feature, damage on the archive pages, uh, how we&#8217;re gonna do the feature damages in the post gonna need to change as an awareness thing from the post edit client side.</p>\n\n\n\n<p>I go, this is gonna be good, you know, we&#8217;ll keep iterating on this. Um, with when, when you&#8217;re able to get the new update. Is, um, I think there&#8217;d be a lot of good feedback there, um, to how does that look on that home? How does that look on the inside page? That I think is that cornerstone to value for, yeah.</p>\n\n\n\n<p>So I like to say, I think it&#8217;s good timing when you get the new update, put it on staging, start trying it out. We&#8217;ll have another round of feedback.&nbsp;</p>\n\n\n\n<p>[00:56:52] <strong>Corey Maass:</strong> Yeah, exactly. Exactly. So yeah, baby steps or big steps sometimes, you know. Yeah. But. Keep moving forward. Sounds good.&nbsp;</p>\n\n\n\n<p>[00:57:04] <strong>Cory Miller:</strong> All right. Thanks my friend.&nbsp;</p>\n\n\n\n<p>[00:57:05] <strong>Corey Maass:</strong> Yeah, great talking as ever.</p>\n\n\n\n<p>You too.&nbsp;</p>\n\n\n\n<p>[00:57:08] <strong>Cory Miller:</strong> Talk to you next week.&nbsp;</p>\n\n\n\n<p>Bye.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jun 2023 21:01:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Gravatar: New on Gravatar: Collect Payments on the Go!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.gravatar.com/?p=683\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://blog.gravatar.com/2023/06/21/new-on-gravatar-collect-payments-on-the-go/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1813:\"<p><strong>Have you updated your free Gravatar profile page recently?</strong></p>\n\n\n\n<p>We are excited to announce the launch of new payment features on Gravatar profiles!&nbsp;</p>\n\n\n\n<p>Now, you can add verified payment links for PayPal, Venmo, and Patreon and share your cryptocurrency wallet addresses (Bitcoin, Dogecoin, Ethereum, and more). When someone looks at your profile on their phone, they&#8217;ll see a new button at the top to <strong>Send Money</strong>.&nbsp;</p>\n\n\n\n<img />\n\n\n\n<p>A new <strong>Share Profile</strong> button also displays your unique QR code and a simple way to copy your link, allowing you to share your profile with others quickly.</p>\n\n\n\n<p>Millions of people view Gravatar profiles every month. Keep your profile up-to-date and manage your online identity by adding verified links to the services you use, such as Instagram, Tumblr, GitHub, Mastodon, and more. Adding multiple payment options to your profile builds trust that those paying you know they have the correct account.</p>\n\n\n\n<p>Gravatar is your personal digital business card. And now a one-stop place for those that need to send you payments.</p>\n\n\n\n<div class=\"wp-block-buttons is-vertical is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 is-style-fill\"><a class=\"wp-block-button__link has-base-color has-text-color wp-element-button\" href=\"https://gravatar.com/profiles/edit#about-you\">Edit Your Profile</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\" href=\"http://gravatar.com/connect/?source=gravatar_blog\">Claim Your New Gravatar</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jun 2023 18:31:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 11 Jul 2023 12:05:58 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 11 Jul 2023 12:00:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20230707232333\";}','no'),
  335. (313,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1689120358','no'),
  336. (314,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1689077158','no'),
  337. (356,'hab_settings','','yes'),
  338. (360,'_site_transient_timeout_community-events-1de8873aa0984c1dbee47981d08b0def','1689649264','no'),
  339. (361,'_site_transient_community-events-1de8873aa0984c1dbee47981d08b0def','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.21.0.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Netherlands\";s:3:\"url\";s:38:\"https://netherlands.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-09-07 00:00:00\";s:8:\"end_date\";s:19:\"2023-09-08 00:00:00\";s:20:\"start_unix_timestamp\";i:1694037600;s:18:\"end_unix_timestamp\";i:1694124000;s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Arnhem, The Netherlands\";s:7:\"country\";s:2:\"NL\";s:8:\"latitude\";d:52.0094123;s:9:\"longitude\";d:5.9008147;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:16:\"WordCamp Germany\";s:3:\"url\";s:34:\"https://germany.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-19 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-21 00:00:00\";s:20:\"start_unix_timestamp\";i:1697666400;s:18:\"end_unix_timestamp\";i:1697839200;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Gerolstein, Germany\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:50.2206559;s:9:\"longitude\";d:6.6398573;}}}}','no'),
  340. (423,'user_role_editor','a:1:{s:11:\"ure_version\";s:4:\"4.64\";}','yes'),
  341. (424,'wp_backup_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:79:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','no'),
  342. (425,'ure_tasks_queue','a:0:{}','yes'),
  343. (426,'mw_adminimize','a:103:{s:29:\"mw_adminimize_admin_bar_nodes\";a:28:{s:12:\"user-actions\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"user-actions\";s:5:\"title\";b:0;s:6:\"parent\";s:10:\"my-account\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:9:\"user-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"user-info\";s:5:\"title\";s:339:\"<img alt=\'\' src=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=64&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=128&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-64 photo\' height=\'64\' width=\'64\' loading=\'lazy\' decoding=\'async\'/><span class=\'display-name\'>val</span>\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:8:\"tabindex\";i:-1;}}s:12:\"edit-profile\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"edit-profile\";s:5:\"title\";s:18:\"Modifier le profil\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"logout\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"logout\";s:5:\"title\";s:15:\"Se déconnecter\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:71:\"https://localhost/wp/wp-login.php?action=logout&amp;_wpnonce=130f97fd63\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"menu-toggle\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"menu-toggle\";s:5:\"title\";s:92:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"screen-reader-text\">Menu</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:1:\"#\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:10:\"my-account\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"my-account\";s:5:\"title\";s:347:\"Bonjour, <span class=\"display-name\">val</span><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=26&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=52&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-26 photo\' height=\'26\' width=\'26\' loading=\'lazy\' decoding=\'async\'/>\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:11:\"with-avatar\";}}s:7:\"wp-logo\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"wp-logo\";s:5:\"title\";s:110:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"screen-reader-text\">À propos de WordPress</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:39:\"https://localhost/wp/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"about\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:22:\"À propos de WordPress\";s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";s:39:\"https://localhost/wp/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"wporg\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"wporg\";s:5:\"title\";s:20:\"Site de WordPress-FR\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:25:\"https://fr.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"documentation\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"documentation\";s:5:\"title\";s:13:\"Documentation\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:33:\"https://fr.wordpress.org/support/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"support-forums\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"support-forums\";s:5:\"title\";s:17:\"Forums de support\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:24:\"https://wpfr.net/support\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"feedback\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"feedback\";s:5:\"title\";s:11:\"Vos retours\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:57:\"https://wordpress.org/support/forum/requests-and-feedback\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"site-name\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"site-name\";s:5:\"title\";s:31:\"Partition Le Livre d&#039;Image\";s:6:\"parent\";b:0;s:4:\"href\";s:18:\"https://localhost/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"view-site\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"view-site\";s:5:\"title\";s:17:\"Aller sur le site\";s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";s:18:\"https://localhost/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:7:\"updates\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"updates\";s:5:\"title\";s:188:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"ab-label\" aria-hidden=\"true\">6</span><span class=\"screen-reader-text updates-available-text\">6 mises à jour disponibles</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:45:\"https://localhost/wp/wp-admin/update-core.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"comments\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"comments\";s:5:\"title\";s:229:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"ab-label awaiting-mod pending-count count-0\" aria-hidden=\"true\">0</span><span class=\"screen-reader-text comments-in-moderation-text\">0 commentaire en modération</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:47:\"https://localhost/wp/wp-admin/edit-comments.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"new-content\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"new-content\";s:5:\"title\";s:84:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"ab-label\">Créer</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:42:\"https://localhost/wp/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-post\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-post\";s:5:\"title\";s:7:\"Article\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:42:\"https://localhost/wp/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"new-media\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"new-media\";s:5:\"title\";s:14:\"Fichier média\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:43:\"https://localhost/wp/wp-admin/media-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-page\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-page\";s:5:\"title\";s:4:\"Page\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:57:\"https://localhost/wp/wp-admin/post-new.php?post_type=page\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-user\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-user\";s:5:\"title\";s:6:\"Compte\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:42:\"https://localhost/wp/wp-admin/user-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:4:\"view\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"view\";s:5:\"title\";s:16:\"Voir l’article\";s:6:\"parent\";b:0;s:4:\"href\";s:26:\"https://localhost/?p=13192\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"top-secondary\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"top-secondary\";s:5:\"title\";b:0;s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-top-secondary\";}}s:16:\"wp-logo-external\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"wp-logo-external\";s:5:\"title\";b:0;s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}s:11:\"redis-cache\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"redis-cache\";s:5:\"title\";s:11:\"Cache objet\";s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:0;s:4:\"meta\";a:2:{s:4:\"html\";s:1156:\"\n <style> #wpadminbar ul li.redis-cache-error { background: #b30000; } #wpadminbar:not(.mobile) .ab-top-menu > li.redis-cache-error:hover > .ab-item { background: #b30000; color: #fff; } </style>\n <script> (function (element) { if (! element) { return; } element.addEventListener(\'click\', async function (event) { event.preventDefault(); var node = document.querySelector(\'#wp-admin-bar-redis-cache\'); var textNode = node.querySelector(\'.ab-item:first-child\'); if (! textNode.dataset.text) { textNode.dataset.text = textNode.innerText; } node.classList.remove(\'hover\'); textNode.innerText = \'Flushing cache...\'; try { var data = new FormData(); data.append(\'action\', \'roc_flush_cache\'); data.append(\'nonce\', \'288f940435\'); var response = await fetch(\'https://localhost/wp/wp-admin/admin-ajax.php\', { method: \'POST\', body: data, }); textNode.innerText = await response.text(); setTimeout(function () { textNode.innerText = textNode.dataset.text; }, 3000); } catch (error) { textNode.innerText = textNode.dataset.text; alert(\'Object cache could not be flushed: \' + error); } }); })( document.querySelector(\'#wp-admin-bar-redis-cache-flush > a\') ); </script>\n\";s:5:\"class\";s:0:\"\";}}s:19:\"redis-cache-metrics\";O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"redis-cache-metrics\";s:5:\"title\";s:11:\"Paramètres\";s:6:\"parent\";s:11:\"redis-cache\";s:4:\"href\";s:66:\"https://localhost/wp/wp-admin/options-general.php?page=redis-cache\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:16:\"redis-cache-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"redis-cache-info\";s:5:\"title\";b:0;s:6:\"parent\";s:11:\"redis-cache\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}s:24:\"redis-cache-info-details\";O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"redis-cache-info-details\";s:5:\"title\";s:11:\"Not enabled\";s:6:\"parent\";s:16:\"redis-cache-info\";s:4:\"href\";s:0:\"\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:19:\"Status: Not enabled\";}}}s:52:\"mw_adminimize_disabled_admin_bar_administrator_items\";a:0:{}s:45:\"mw_adminimize_disabled_admin_bar_editor_items\";a:0:{}s:45:\"mw_adminimize_disabled_admin_bar_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_admin_bar_contributor_items\";a:0:{}s:49:\"mw_adminimize_disabled_admin_bar_subscriber_items\";a:0:{}s:46:\"mw_adminimize_disabled_admin_bar_revisor_items\";a:9:{i:0;s:7:\"wp-logo\";i:1;s:5:\"about\";i:2;s:5:\"wporg\";i:3;s:13:\"documentation\";i:4;s:14:\"support-forums\";i:5;s:8:\"feedback\";i:6;s:7:\"updates\";i:7;s:8:\"comments\";i:8;s:11:\"new-content\";}s:19:\"mw_adminimize_debug\";i:0;s:28:\"mw_adminimize_multiple_roles\";i:0;s:29:\"mw_adminimize_support_bbpress\";i:0;s:33:\"mw_adminimize_prevent_page_access\";i:1;s:38:\"mw_adminimize_admin_bar_frontend_nodes\";a:33:{s:12:\"user-actions\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"user-actions\";s:5:\"title\";b:0;s:6:\"parent\";s:10:\"my-account\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:9:\"user-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"user-info\";s:5:\"title\";s:339:\"<img alt=\'\' src=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=64&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=128&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-64 photo\' height=\'64\' width=\'64\' loading=\'lazy\' decoding=\'async\'/><span class=\'display-name\'>val</span>\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:8:\"tabindex\";i:-1;}}s:12:\"edit-profile\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"edit-profile\";s:5:\"title\";s:18:\"Modifier le profil\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"logout\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"logout\";s:5:\"title\";s:15:\"Se déconnecter\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:71:\"https://localhost/wp/wp-login.php?action=logout&amp;_wpnonce=130f97fd63\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"search\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"search\";s:5:\"title\";s:313:\"<form action=\"https://localhost/\" method=\"get\" id=\"adminbarsearch\"><input class=\"adminbar-input\" name=\"s\" id=\"adminbar-search\" type=\"text\" value=\"\" maxlength=\"150\" /><label for=\"adminbar-search\" class=\"screen-reader-text\">Rechercher</label><input type=\"submit\" class=\"adminbar-button\" value=\"Rechercher\" /></form>\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";b:0;s:5:\"group\";b:0;s:4:\"meta\";a:2:{s:5:\"class\";s:16:\"admin-bar-search\";s:8:\"tabindex\";i:-1;}}s:10:\"my-account\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"my-account\";s:5:\"title\";s:347:\"Bonjour, <span class=\"display-name\">val</span><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=26&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0a96b5a33453b679a367970b3e969e9c?s=52&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-26 photo\' height=\'26\' width=\'26\' loading=\'lazy\' decoding=\'async\'/>\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:11:\"with-avatar\";}}s:7:\"wp-logo\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"wp-logo\";s:5:\"title\";s:110:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"screen-reader-text\">À propos de WordPress</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:39:\"https://localhost/wp/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"about\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:22:\"À propos de WordPress\";s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";s:39:\"https://localhost/wp/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"wporg\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"wporg\";s:5:\"title\";s:20:\"Site de WordPress-FR\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:25:\"https://fr.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"documentation\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"documentation\";s:5:\"title\";s:13:\"Documentation\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:33:\"https://fr.wordpress.org/support/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"support-forums\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"support-forums\";s:5:\"title\";s:17:\"Forums de support\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:24:\"https://wpfr.net/support\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"feedback\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"feedback\";s:5:\"title\";s:11:\"Vos retours\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:57:\"https://wordpress.org/support/forum/requests-and-feedback\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"site-name\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"site-name\";s:5:\"title\";s:31:\"Partition Le Livre d&#039;Image\";s:6:\"parent\";b:0;s:4:\"href\";s:30:\"https://localhost/wp/wp-admin/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"dashboard\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"dashboard\";s:5:\"title\";s:15:\"Tableau de bord\";s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";s:30:\"https://localhost/wp/wp-admin/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:10:\"appearance\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"appearance\";s:5:\"title\";b:0;s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:6:\"themes\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"themes\";s:5:\"title\";s:7:\"Thèmes\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:40:\"https://localhost/wp/wp-admin/themes.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:7:\"widgets\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"widgets\";s:5:\"title\";s:7:\"Widgets\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:41:\"https://localhost/wp/wp-admin/widgets.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"menus\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"menus\";s:5:\"title\";s:5:\"Menus\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:43:\"https://localhost/wp/wp-admin/nav-menus.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"customize\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"customize\";s:5:\"title\";s:13:\"Personnaliser\";s:6:\"parent\";b:0;s:4:\"href\";s:197:\"https://localhost/wp/wp-admin/customize.php?url=https%3A%2F%2Flocalhost%2Fapp%2Fthemes%2Fpartition-jlg-theme%2Fresources%2Fjs%2Fdynamic%2Fnode_modules_roots_bud-client_lib_hot_client_js.chunk.js%2F\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:20:\"hide-if-no-customize\";}}s:7:\"updates\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"updates\";s:5:\"title\";s:188:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"ab-label\" aria-hidden=\"true\">5</span><span class=\"screen-reader-text updates-available-text\">5 mises à jour disponibles</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:45:\"https://localhost/wp/wp-admin/update-core.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"comments\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"comments\";s:5:\"title\";s:229:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"ab-label awaiting-mod pending-count count-0\" aria-hidden=\"true\">0</span><span class=\"screen-reader-text comments-in-moderation-text\">0 commentaire en modération</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:47:\"https://localhost/wp/wp-admin/edit-comments.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"new-content\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"new-content\";s:5:\"title\";s:84:\"<span class=\"ab-icon\" aria-hidden=\"true\"></span><span class=\"ab-label\">Créer</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:42:\"https://localhost/wp/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-post\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-post\";s:5:\"title\";s:7:\"Article\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:42:\"https://localhost/wp/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"new-media\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"new-media\";s:5:\"title\";s:14:\"Fichier média\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:43:\"https://localhost/wp/wp-admin/media-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-page\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-page\";s:5:\"title\";s:4:\"Page\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:57:\"https://localhost/wp/wp-admin/post-new.php?post_type=page\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-user\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-user\";s:5:\"title\";s:6:\"Compte\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:42:\"https://localhost/wp/wp-admin/user-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:19:\"rvy-create-revision\";O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"rvy-create-revision\";s:5:\"title\";s:18:\"Nouvelle révision\";s:6:\"parent\";b:0;s:4:\"href\";s:115:\"https://localhost/wp/wp-admin/admin.php?page=rvy-revisions&amp;post=13192&amp;action=revise&amp;front=1&nc=d94ba877\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:6:\"target\";s:6:\"_blank\";}}s:13:\"top-secondary\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"top-secondary\";s:5:\"title\";b:0;s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-top-secondary\";}}s:16:\"wp-logo-external\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"wp-logo-external\";s:5:\"title\";b:0;s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}s:11:\"redis-cache\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"redis-cache\";s:5:\"title\";s:11:\"Cache objet\";s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:0;s:4:\"meta\";a:2:{s:4:\"html\";s:1156:\"\n <style> #wpadminbar ul li.redis-cache-error { background: #b30000; } #wpadminbar:not(.mobile) .ab-top-menu > li.redis-cache-error:hover > .ab-item { background: #b30000; color: #fff; } </style>\n <script> (function (element) { if (! element) { return; } element.addEventListener(\'click\', async function (event) { event.preventDefault(); var node = document.querySelector(\'#wp-admin-bar-redis-cache\'); var textNode = node.querySelector(\'.ab-item:first-child\'); if (! textNode.dataset.text) { textNode.dataset.text = textNode.innerText; } node.classList.remove(\'hover\'); textNode.innerText = \'Flushing cache...\'; try { var data = new FormData(); data.append(\'action\', \'roc_flush_cache\'); data.append(\'nonce\', \'288f940435\'); var response = await fetch(\'https://localhost/wp/wp-admin/admin-ajax.php\', { method: \'POST\', body: data, }); textNode.innerText = await response.text(); setTimeout(function () { textNode.innerText = textNode.dataset.text; }, 3000); } catch (error) { textNode.innerText = textNode.dataset.text; alert(\'Object cache could not be flushed: \' + error); } }); })( document.querySelector(\'#wp-admin-bar-redis-cache-flush > a\') ); </script>\n\";s:5:\"class\";s:0:\"\";}}s:19:\"redis-cache-metrics\";O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"redis-cache-metrics\";s:5:\"title\";s:11:\"Paramètres\";s:6:\"parent\";s:11:\"redis-cache\";s:4:\"href\";s:66:\"https://localhost/wp/wp-admin/options-general.php?page=redis-cache\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:16:\"redis-cache-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"redis-cache-info\";s:5:\"title\";b:0;s:6:\"parent\";s:11:\"redis-cache\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}s:24:\"redis-cache-info-details\";O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"redis-cache-info-details\";s:5:\"title\";s:11:\"Not enabled\";s:6:\"parent\";s:16:\"redis-cache-info\";s:4:\"href\";s:0:\"\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:19:\"Status: Not enabled\";}}}s:61:\"mw_adminimize_disabled_admin_bar_frontend_administrator_items\";a:0:{}s:54:\"mw_adminimize_disabled_admin_bar_frontend_editor_items\";a:0:{}s:54:\"mw_adminimize_disabled_admin_bar_frontend_author_items\";a:0:{}s:59:\"mw_adminimize_disabled_admin_bar_frontend_contributor_items\";a:0:{}s:58:\"mw_adminimize_disabled_admin_bar_frontend_subscriber_items\";a:0:{}s:55:\"mw_adminimize_disabled_admin_bar_frontend_revisor_items\";a:9:{i:0;s:7:\"wp-logo\";i:1;s:5:\"about\";i:2;s:5:\"wporg\";i:3;s:13:\"documentation\";i:4;s:14:\"support-forums\";i:5;s:7:\"updates\";i:6;s:8:\"comments\";i:7;s:11:\"new-content\";i:8;s:19:\"rvy-create-revision\";}s:24:\"_mw_adminimize_user_info\";i:0;s:21:\"_mw_adminimize_footer\";i:1;s:21:\"_mw_adminimize_header\";i:0;s:34:\"_mw_adminimize_exclude_super_admin\";i:0;s:24:\"_mw_adminimize_tb_window\";i:0;s:23:\"_mw_adminimize_cat_full\";i:0;s:26:\"_mw_adminimize_db_redirect\";i:0;s:26:\"_mw_adminimize_ui_redirect\";i:0;s:21:\"_mw_adminimize_advice\";i:0;s:25:\"_mw_adminimize_advice_txt\";s:0:\"\";s:24:\"_mw_adminimize_timestamp\";i:0;s:30:\"_mw_adminimize_db_redirect_txt\";s:0:\"\";s:47:\"mw_adminimize_disabled_menu_administrator_items\";a:0:{}s:50:\"mw_adminimize_disabled_submenu_administrator_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_editor_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_editor_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_author_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_author_items\";a:0:{}s:45:\"mw_adminimize_disabled_menu_contributor_items\";a:0:{}s:48:\"mw_adminimize_disabled_submenu_contributor_items\";a:0:{}s:44:\"mw_adminimize_disabled_menu_subscriber_items\";a:0:{}s:47:\"mw_adminimize_disabled_submenu_subscriber_items\";a:0:{}s:41:\"mw_adminimize_disabled_menu_revisor_items\";a:6:{i:0;s:9:\"index.php\";i:1;s:8:\"edit.php\";i:2;s:10:\"upload.php\";i:3;s:23:\"edit.php?post_type=page\";i:4;s:17:\"edit-comments.php\";i:5;s:9:\"tools.php\";}s:44:\"mw_adminimize_disabled_submenu_revisor_items\";a:17:{i:0;s:12:\"index.php__0\";i:1;s:13:\"index.php__10\";i:2;s:11:\"edit.php__5\";i:3;s:12:\"edit.php__10\";i:4;s:12:\"edit.php__15\";i:5;s:12:\"edit.php__16\";i:6;s:13:\"upload.php__5\";i:7;s:14:\"upload.php__10\";i:8;s:16:\"revisionary-q__1\";i:9;s:16:\"revisionary-q__2\";i:10;s:16:\"revisionary-q__3\";i:11;s:12:\"tools.php__5\";i:12;s:13:\"tools.php__10\";i:13;s:13:\"tools.php__15\";i:14;s:13:\"tools.php__20\";i:15;s:13:\"tools.php__25\";i:16;s:13:\"tools.php__30\";}s:28:\"_mw_adminimize_own_menu_slug\";s:0:\"\";s:35:\"_mw_adminimize_own_menu_custom_slug\";s:0:\"\";s:56:\"mw_adminimize_disabled_global_option_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_post_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_page_administrator_items\";a:0:{}s:54:\"mw_adminimize_disabled_link_option_administrator_items\";a:0:{}s:58:\"mw_adminimize_disabled_nav_menu_option_administrator_items\";a:0:{}s:56:\"mw_adminimize_disabled_widget_option_administrator_items\";a:0:{}s:59:\"mw_adminimize_disabled_dashboard_option_administrator_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_editor_items\";a:0:{}s:47:\"mw_adminimize_disabled_link_option_editor_items\";a:0:{}s:51:\"mw_adminimize_disabled_nav_menu_option_editor_items\";a:0:{}s:49:\"mw_adminimize_disabled_widget_option_editor_items\";a:0:{}s:52:\"mw_adminimize_disabled_dashboard_option_editor_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_author_items\";a:0:{}s:47:\"mw_adminimize_disabled_link_option_author_items\";a:0:{}s:51:\"mw_adminimize_disabled_nav_menu_option_author_items\";a:0:{}s:49:\"mw_adminimize_disabled_widget_option_author_items\";a:0:{}s:52:\"mw_adminimize_disabled_dashboard_option_author_items\";a:0:{}s:54:\"mw_adminimize_disabled_global_option_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_post_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_page_contributor_items\";a:0:{}s:52:\"mw_adminimize_disabled_link_option_contributor_items\";a:0:{}s:56:\"mw_adminimize_disabled_nav_menu_option_contributor_items\";a:0:{}s:54:\"mw_adminimize_disabled_widget_option_contributor_items\";a:0:{}s:57:\"mw_adminimize_disabled_dashboard_option_contributor_items\";a:0:{}s:53:\"mw_adminimize_disabled_global_option_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_post_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_page_subscriber_items\";a:0:{}s:51:\"mw_adminimize_disabled_link_option_subscriber_items\";a:0:{}s:55:\"mw_adminimize_disabled_nav_menu_option_subscriber_items\";a:0:{}s:53:\"mw_adminimize_disabled_widget_option_subscriber_items\";a:0:{}s:56:\"mw_adminimize_disabled_dashboard_option_subscriber_items\";a:0:{}s:50:\"mw_adminimize_disabled_global_option_revisor_items\";a:0:{}s:51:\"mw_adminimize_disabled_metaboxes_post_revisor_items\";a:0:{}s:51:\"mw_adminimize_disabled_metaboxes_page_revisor_items\";a:0:{}s:48:\"mw_adminimize_disabled_link_option_revisor_items\";a:8:{i:0;s:8:\"#namediv\";i:1;s:11:\"#addressdiv\";i:2;s:15:\"#descriptiondiv\";i:3;s:16:\"#linkcategorydiv\";i:4;s:14:\"#linktargetdiv\";i:5;s:11:\"#linkxfndiv\";i:6;s:16:\"#linkadvanceddiv\";i:7;s:24:\"#misc-publishing-actions\";}s:52:\"mw_adminimize_disabled_nav_menu_option_revisor_items\";a:0:{}s:50:\"mw_adminimize_disabled_widget_option_revisor_items\";a:5:{i:0;s:26:\"#contextual-help-link-wrap\";i:1;s:25:\"#screen-options-link-wrap\";i:2;s:18:\"#available-widgets\";i:3;s:20:\"WP_Widget_Categories\";i:4;s:22:\"WP_Widget_Recent_Posts\";}s:53:\"mw_adminimize_disabled_dashboard_option_revisor_items\";a:5:{i:0;s:21:\"dashboard_site_health\";i:1;s:19:\"dashboard_right_now\";i:2;s:18:\"dashboard_activity\";i:3;s:20:\"dashboard_rediscache\";i:4;s:17:\"dashboard_primary\";}s:25:\"_mw_adminimize_own_values\";s:0:\"\";s:26:\"_mw_adminimize_own_options\";s:0:\"\";s:30:\"_mw_adminimize_own_post_values\";s:0:\"\";s:31:\"_mw_adminimize_own_post_options\";s:0:\"\";s:30:\"_mw_adminimize_own_page_values\";s:0:\"\";s:31:\"_mw_adminimize_own_page_options\";s:0:\"\";s:30:\"_mw_adminimize_own_link_values\";s:0:\"\";s:31:\"_mw_adminimize_own_link_options\";s:0:\"\";s:34:\"_mw_adminimize_own_nav_menu_values\";s:0:\"\";s:35:\"_mw_adminimize_own_nav_menu_options\";s:0:\"\";s:32:\"_mw_adminimize_own_widget_values\";s:0:\"\";s:33:\"_mw_adminimize_own_widget_options\";s:0:\"\";s:35:\"_mw_adminimize_own_dashboard_values\";s:0:\"\";s:36:\"_mw_adminimize_own_dashboard_options\";s:0:\"\";s:31:\"mw_adminimize_dashboard_widgets\";a:6:{s:21:\"dashboard_site_health\";a:4:{s:2:\"id\";s:21:\"dashboard_site_health\";s:5:\"title\";s:23:\"État de santé du site\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:19:\"dashboard_right_now\";a:4:{s:2:\"id\";s:19:\"dashboard_right_now\";s:5:\"title\";s:20:\"D’un coup d’œil\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:18:\"dashboard_activity\";a:4:{s:2:\"id\";s:18:\"dashboard_activity\";s:5:\"title\";s:9:\"Activité\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:20:\"dashboard_rediscache\";a:4:{s:2:\"id\";s:20:\"dashboard_rediscache\";s:5:\"title\";s:18:\"Redis Object Cache\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"high\";}s:21:\"dashboard_quick_press\";a:4:{s:2:\"id\";s:21:\"dashboard_quick_press\";s:5:\"title\";s:0:\"\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}s:17:\"dashboard_primary\";a:4:{s:2:\"id\";s:17:\"dashboard_primary\";s:5:\"title\";s:37:\"Évènements et nouveautés WordPress\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}}s:26:\"mw_adminimize_default_menu\";a:16:{i:2;a:7:{i:0;s:15:\"Tableau de bord\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";i:3;s:0:\"\";i:4;s:57:\"menu-top menu-top-first menu-icon-dashboard menu-top-last\";i:5;s:14:\"menu-dashboard\";i:6;s:19:\"dashicons-dashboard\";}i:4;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator1\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:5;a:7:{i:0;s:8:\"Articles\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";i:3;s:0:\"\";i:4;s:52:\"menu-top menu-icon-post open-if-no-js menu-top-first\";i:5;s:10:\"menu-posts\";i:6;s:20:\"dashicons-admin-post\";}i:10;a:7:{i:0;s:7:\"Médias\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-media\";i:5;s:10:\"menu-media\";i:6;s:21:\"dashicons-admin-media\";}i:20;a:7:{i:0;s:5:\"Pages\";i:1;s:10:\"edit_pages\";i:2;s:23:\"edit.php?post_type=page\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-icon-page\";i:5;s:10:\"menu-pages\";i:6;s:20:\"dashicons-admin-page\";}i:25;a:7:{i:0;s:206:\"Commentaires <span class=\"awaiting-mod count-0\"><span class=\"pending-count\" aria-hidden=\"true\">0</span><span class=\"comments-in-moderation-text screen-reader-text\">0 commentaire en modération</span></span>\";i:1;s:10:\"edit_posts\";i:2;s:17:\"edit-comments.php\";i:3;s:0:\"\";i:4;s:27:\"menu-top menu-icon-comments\";i:5;s:13:\"menu-comments\";i:6;s:24:\"dashicons-admin-comments\";}s:5:\"28.81\";a:7:{i:0;s:10:\"WP Imp Exp\";i:1;s:15:\"wpie_new_export\";i:2;s:15:\"wpie-new-export\";i:3;s:35:\"Tableau de bord de WP Import Export\";i:4;s:56:\"menu-top menu-icon-generic toplevel_page_wpie-new-export\";i:5;s:29:\"toplevel_page_wpie-new-export\";i:6;s:23:\"dashicons-admin-generic\";}i:29;a:7:{i:0;s:10:\"Révisions\";i:1;s:4:\"read\";i:2;s:13:\"revisionary-q\";i:3;s:10:\"Révisions\";i:4;s:50:\"menu-top toplevel_page_revisionary-q menu-top-last\";i:5;s:27:\"toplevel_page_revisionary-q\";i:6;s:16:\"dashicons-backup\";}i:59;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator2\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:60;a:7:{i:0;s:9:\"Apparence\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";i:3;s:0:\"\";i:4;s:44:\"menu-top menu-icon-appearance menu-top-first\";i:5;s:15:\"menu-appearance\";i:6;s:26:\"dashicons-admin-appearance\";}i:65;a:7:{i:0;s:90:\"Extensions <span class=\"update-plugins count-3\"><span class=\"plugin-count\">3</span></span>\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";i:3;s:0:\"\";i:4;s:26:\"menu-top menu-icon-plugins\";i:5;s:12:\"menu-plugins\";i:6;s:23:\"dashicons-admin-plugins\";}i:70;a:7:{i:0;s:7:\"Comptes\";i:1;s:10:\"list_users\";i:2;s:9:\"users.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-users\";i:5;s:10:\"menu-users\";i:6;s:21:\"dashicons-admin-users\";}i:75;a:7:{i:0;s:6:\"Outils\";i:1;s:10:\"edit_posts\";i:2;s:9:\"tools.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-tools\";i:5;s:10:\"menu-tools\";i:6;s:21:\"dashicons-admin-tools\";}i:80;a:7:{i:0;s:9:\"Réglages\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";i:3;s:0:\"\";i:4;s:41:\"menu-top menu-icon-settings menu-top-last\";i:5;s:13:\"menu-settings\";i:6;s:24:\"dashicons-admin-settings\";}i:99;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:14:\"separator-last\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:100;a:7:{i:0;s:18:\"Login/Signup Popup\";i:1;s:14:\"manage_options\";i:2;s:31:\"easy-login-woocommerce-settings\";i:3;s:8:\"Settings\";i:4;s:83:\"menu-top toplevel_page_easy-login-woocommerce-settings menu-top-first menu-top-last\";i:5;s:45:\"toplevel_page_easy-login-woocommerce-settings\";i:6;s:16:\"dashicons-unlock\";}}s:29:\"mw_adminimize_default_submenu\";a:12:{s:9:\"index.php\";a:2:{i:0;a:3:{i:0;s:7:\"Accueil\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";}i:10;a:3:{i:0;s:93:\"Mises à jour <span class=\"update-plugins count-5\"><span class=\"update-count\">5</span></span>\";i:1;s:11:\"update_core\";i:2;s:15:\"update-core.php\";}}s:10:\"upload.php\";a:2:{i:5;a:3:{i:0;s:13:\"Médiathèque\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";}i:10;a:3:{i:0;s:7:\"Ajouter\";i:1;s:12:\"upload_files\";i:2;s:13:\"media-new.php\";}}s:8:\"edit.php\";a:4:{i:5;a:3:{i:0;s:17:\"Tous les articles\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";}i:10;a:3:{i:0;s:7:\"Ajouter\";i:1;s:10:\"edit_posts\";i:2;s:12:\"post-new.php\";}i:15;a:3:{i:0;s:11:\"Catégories\";i:1;s:17:\"manage_categories\";i:2;s:31:\"edit-tags.php?taxonomy=category\";}i:16;a:3:{i:0;s:11:\"Étiquettes\";i:1;s:16:\"manage_post_tags\";i:2;s:31:\"edit-tags.php?taxonomy=post_tag\";}}s:23:\"edit.php?post_type=page\";a:2:{i:5;a:3:{i:0;s:16:\"Toutes les pages\";i:1;s:10:\"edit_pages\";i:2;s:23:\"edit.php?post_type=page\";}i:10;a:3:{i:0;s:7:\"Ajouter\";i:1;s:10:\"edit_pages\";i:2;s:27:\"post-new.php?post_type=page\";}}s:10:\"themes.php\";a:4:{i:5;a:3:{i:0;s:86:\"Thèmes <span class=\"update-plugins count-1\"><span class=\"theme-count\">1</span></span>\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";}i:6;a:5:{i:0;s:13:\"Personnaliser\";i:1;s:9:\"customize\";i:2;s:87:\"customize.php?return=%2Fwp%2Fwp-admin%2Foptions-general.php%3Fpage%3Dadminimize-options\";i:3;s:0:\"\";i:4;s:20:\"hide-if-no-customize\";}i:7;a:3:{i:0;s:7:\"Widgets\";i:1;s:18:\"edit_theme_options\";i:2;s:11:\"widgets.php\";}i:10;a:3:{i:0;s:5:\"Menus\";i:1;s:18:\"edit_theme_options\";i:2;s:13:\"nav-menus.php\";}}s:11:\"plugins.php\";a:2:{i:5;a:3:{i:0;s:22:\"Extensions installées\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";}i:10;a:3:{i:0;s:7:\"Ajouter\";i:1;s:15:\"install_plugins\";i:2;s:18:\"plugin-install.php\";}}s:9:\"users.php\";a:4:{i:5;a:3:{i:0;s:16:\"Tous les comptes\";i:1;s:10:\"list_users\";i:2;s:9:\"users.php\";}i:10;a:3:{i:0;s:7:\"Ajouter\";i:1;s:12:\"create_users\";i:2;s:12:\"user-new.php\";}i:15;a:3:{i:0;s:6:\"Profil\";i:1;s:4:\"read\";i:2;s:11:\"profile.php\";}i:16;a:4:{i:0;s:16:\"User Role Editor\";i:1;s:14:\"ure_edit_roles\";i:2;s:26:\"users-user-role-editor.php\";i:3;s:16:\"User Role Editor\";}}s:9:\"tools.php\";a:6:{i:5;a:3:{i:0;s:18:\"Outils disponibles\";i:1;s:10:\"edit_posts\";i:2;s:9:\"tools.php\";}i:10;a:3:{i:0;s:8:\"Importer\";i:1;s:6:\"import\";i:2;s:10:\"import.php\";}i:15;a:3:{i:0;s:8:\"Exporter\";i:1;s:6:\"export\";i:2;s:10:\"export.php\";}i:20;a:3:{i:0;s:105:\"Santé du site <span class=\"menu-counter site-health-counter count-0\"><span class=\"count\">0</span></span>\";i:1;s:23:\"view_site_health_checks\";i:2;s:15:\"site-health.php\";}i:25;a:3:{i:0;s:21:\"Exporter les données\";i:1;s:27:\"export_others_personal_data\";i:2;s:24:\"export-personal-data.php\";}i:30;a:3:{i:0;s:20:\"Effacer les données\";i:1;s:26:\"erase_others_personal_data\";i:2;s:23:\"erase-personal-data.php\";}}s:19:\"options-general.php\";a:11:{i:10;a:3:{i:0;s:9:\"Général\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";}i:15;a:3:{i:0;s:9:\"Écriture\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-writing.php\";}i:20;a:3:{i:0;s:7:\"Lecture\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-reading.php\";}i:25;a:3:{i:0;s:12:\"Commentaires\";i:1;s:14:\"manage_options\";i:2;s:22:\"options-discussion.php\";}i:30;a:3:{i:0;s:7:\"Médias\";i:1;s:14:\"manage_options\";i:2;s:17:\"options-media.php\";}i:40;a:3:{i:0;s:10:\"Permaliens\";i:1;s:14:\"manage_options\";i:2;s:21:\"options-permalink.php\";}i:45;a:3:{i:0;s:16:\"Confidentialité\";i:1;s:22:\"manage_privacy_options\";i:2;s:19:\"options-privacy.php\";}i:46;a:4:{i:0;s:10:\"Adminimize\";i:1;s:14:\"manage_options\";i:2;s:18:\"adminimize-options\";i:3;s:22:\"Options d’Adminimize\";}i:47;a:4:{i:0;s:23:\"Hide Admin Bar Settings\";i:1;s:14:\"manage_options\";i:2;s:23:\"hide-admin-bar-settings\";i:3;s:23:\"Hide Admin Bar Settings\";}i:48;a:4:{i:0;s:5:\"Redis\";i:1;s:14:\"manage_options\";i:2;s:11:\"redis-cache\";i:3;s:18:\"Redis Object Cache\";}i:49;a:4:{i:0;s:16:\"User Role Editor\";i:1;s:18:\"ure_manage_options\";i:2;s:29:\"settings-user-role-editor.php\";i:3;s:16:\"User Role Editor\";}}s:15:\"wpie-new-export\";a:6:{i:0;a:4:{i:0;s:13:\"Nouvel export\";i:1;s:15:\"wpie_new_export\";i:2;s:15:\"wpie-new-export\";i:3;s:13:\"Nouvel export\";}i:1;a:4:{i:0;s:17:\"Gérer l’export\";i:1;s:18:\"wpie_manage_export\";i:2;s:18:\"wpie-manage-export\";i:3;s:17:\"Gérer l’export\";}i:2;a:4:{i:0;s:13:\"Nouvel import\";i:1;s:15:\"wpie_new_import\";i:2;s:15:\"wpie-new-import\";i:3;s:13:\"Nouvel import\";}i:3;a:4:{i:0;s:17:\"Gérer l’import\";i:1;s:18:\"wpie_manage_import\";i:2;s:18:\"wpie-manage-import\";i:3;s:17:\"Gérer l’import\";}i:4;a:4:{i:0;s:9:\"Réglages\";i:1;s:13:\"wpie_settings\";i:2;s:13:\"wpie-settings\";i:3;s:9:\"Réglages\";}i:5;a:4:{i:0;s:7:\"Modules\";i:1;s:15:\"wpie_extensions\";i:2;s:15:\"wpie-extensions\";i:3;s:7:\"Modules\";}}s:31:\"easy-login-woocommerce-settings\";a:2:{i:0;a:4:{i:0;s:8:\"Settings\";i:1;s:14:\"manage_options\";i:2;s:31:\"easy-login-woocommerce-settings\";i:3;s:8:\"Settings\";}i:1;a:4:{i:0;s:6:\"Fields\";i:1;s:14:\"manage_options\";i:2;s:13:\"xoo-el-fields\";i:3;s:6:\"Fields\";}}s:13:\"revisionary-q\";a:4:{i:0;a:4:{i:0;s:31:\"File d’attente des révisions\";i:1;s:4:\"read\";i:2;s:13:\"revisionary-q\";i:3;s:31:\"File d’attente des révisions\";}i:1;a:4:{i:0;s:22:\"Archive des révisions\";i:1;s:4:\"read\";i:2;s:19:\"revisionary-archive\";i:3;s:22:\"Archive des révisions\";}i:2;a:4:{i:0;s:9:\"Réglages\";i:1;s:4:\"read\";i:2;s:20:\"revisionary-settings\";i:3;s:35:\"Réglages de PublishPress Revisions\";}i:3;a:4:{i:0;s:24:\"Passer à la version Pro\";i:1;s:4:\"read\";i:2;s:15:\"revisionary-pro\";i:3;s:24:\"Passer à la version Pro\";}}}}','yes'),
  344. (427,'xoo-aff-easy-login-woocommerce-general-options','a:11:{s:12:\"s-show-icons\";s:3:\"yes\";s:11:\"s-icon-size\";s:2:\"14\";s:12:\"s-icon-width\";s:2:\"40\";s:14:\"s-icon-bgcolor\";s:5:\" #eee\";s:12:\"s-icon-color\";s:7:\"#001f4f\";s:15:\"s-icon-borcolor\";s:5:\" #ccc\";s:15:\"s-field-bmargin\";s:2:\"30\";s:15:\"s-input-bgcolor\";s:4:\"#fff\";s:16:\"s-input-txtcolor\";s:7:\"#003b5e\";s:20:\"s-input-focusbgcolor\";s:7:\"#ededed\";s:21:\"s-input-focustxtcolor\";s:7:\"#001f4f\";}','yes'),
  345. (428,'xoo-el-gl-options','a:21:{s:8:\"m-en-reg\";s:3:\"yes\";s:12:\"m-auto-login\";s:3:\"yes\";s:10:\"m-reset-pw\";s:3:\"yes\";s:11:\"m-user-role\";s:7:\"revisor\";s:11:\"m-red-login\";s:0:\"\";s:14:\"m-red-register\";s:0:\"\";s:12:\"m-red-logout\";s:0:\"\";s:12:\"m-ep-success\";s:3:\"yes\";s:11:\"popup-forms\";a:2:{i:0;s:5:\"login\";i:1;s:8:\"register\";}s:11:\"popup-force\";s:2:\"no\";s:9:\"ao-enable\";s:2:\"no\";s:15:\"ao-default-form\";s:5:\"login\";s:7:\"ao-once\";s:2:\"no\";s:8:\"ao-pages\";s:0:\"\";s:8:\"ao-delay\";s:3:\"500\";s:13:\"txt-tab-login\";s:12:\"Se connecter\";s:11:\"txt-tab-reg\";s:12:\"S’inscrire\";s:13:\"txt-btn-login\";s:7:\"Sign in\";s:11:\"txt-btn-reg\";s:12:\"S’inscrire\";s:13:\"txt-btn-respw\";s:39:\"Envoyer l’e-mail de réinitialisation\";s:4:\"fake\";s:0:\"\";}','yes'),
  346. (429,'xoo-el-sy-options','a:21:{s:12:\"sy-popup-pos\";s:6:\"middle\";s:14:\"sy-popup-width\";s:4:\"1000\";s:15:\"sy-popup-height\";s:3:\"600\";s:16:\"sy-popup-padding\";s:9:\"40px 30px\";s:16:\"sy-popup-bgcolor\";s:7:\"#ffffff\";s:17:\"sy-popup-txtcolor\";s:7:\"#010d19\";s:14:\"sy-sidebar-img\";s:0:\"\";s:14:\"sy-sidebar-pos\";s:4:\"left\";s:16:\"sy-sidebar-width\";s:2:\"50\";s:16:\"sy-overlay-color\";s:7:\"#010d19\";s:15:\"sy-overlay-opac\";s:3:\"0.7\";s:14:\"sy-tab-bgcolor\";s:7:\"#eeeeee\";s:15:\"sy-taba-bgcolor\";s:7:\"#010d19\";s:15:\"sy-tab-txtcolor\";s:7:\"#010d19\";s:16:\"sy-taba-txtcolor\";s:7:\"#ffffff\";s:13:\"sy-btns-theme\";s:6:\"custom\";s:14:\"sy-btn-bgcolor\";s:7:\"#010d19\";s:15:\"sy-btn-txtcolor\";s:7:\"#ffffff\";s:13:\"sy-btn-border\";s:17:\"2px solid #010d19\";s:13:\"sy-btn-height\";s:2:\"40\";s:4:\"fake\";s:0:\"\";}','yes'),
  347. (430,'xoo-el-sec-options','a:1:{i:0;b:0;}','yes'),
  348. (431,'xoo_aff_easy_login_woocommerce_fields','{\"xoo_el_reg_username\":{\"field_type\":\"xoo_el_reg_username\",\"input_type\":\"text\",\"settings\":{\"unique_id\":\"xoo_el_reg_username\",\"required\":\"yes\",\"active\":\"no\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-user-plus\",\"placeholder\":\"Username\",\"minlength\":3,\"maxlength\":20,\"class\":\"\"},\"priority\":20},\"xoo_el_reg_email\":{\"field_type\":\"xoo_el_reg_email\",\"input_type\":\"email\",\"settings\":{\"unique_id\":\"xoo_el_reg_email\",\"active\":\"yes\",\"required\":\"yes\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-at\",\"placeholder\":\"Email\",\"class\":\"\"},\"priority\":30},\"xoo_el_reg_fname\":{\"field_type\":\"xoo_el_reg_fname\",\"input_type\":\"text\",\"settings\":{\"unique_id\":\"xoo_el_reg_fname\",\"active\":\"yes\",\"required\":\"yes\",\"label\":\"\",\"cols\":\"onehalf\",\"icon\":\"far fa-user\",\"placeholder\":\"First Name\",\"minlength\":\"\",\"maxlength\":\"\",\"class\":\"\"},\"priority\":40},\"xoo_el_reg_lname\":{\"field_type\":\"xoo_el_reg_lname\",\"input_type\":\"text\",\"settings\":{\"unique_id\":\"xoo_el_reg_lname\",\"active\":\"yes\",\"required\":\"yes\",\"label\":\"\",\"cols\":\"onehalf\",\"icon\":\"far fa-user\",\"placeholder\":\"Last Name\",\"minlength\":\"\",\"maxlength\":\"\",\"class\":\"\"},\"priority\":50},\"xoo_el_reg_pass\":{\"field_type\":\"xoo_el_reg_pass\",\"input_type\":\"password\",\"settings\":{\"required\":\"yes\",\"unique_id\":\"xoo_el_reg_pass\",\"active\":\"yes\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-key\",\"placeholder\":\"Password\",\"minlength\":6,\"maxlength\":20,\"password_visibility\":\"yes\",\"class\":\"\"},\"priority\":60},\"xoo_el_reg_pass_again\":{\"field_type\":\"xoo_el_reg_pass_again\",\"input_type\":\"password\",\"settings\":{\"required\":\"yes\",\"unique_id\":\"xoo_el_reg_pass_again\",\"active\":\"yes\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-key\",\"placeholder\":\"Confirm Password\",\"password_visibility\":\"yes\",\"class\":\"\"},\"priority\":70},\"xoo_el_reg_terms\":{\"field_type\":\"xoo_el_reg_terms\",\"input_type\":\"checkbox_single\",\"settings\":{\"unique_id\":\"xoo_el_reg_terms\",\"active\":\"yes\",\"required\":\"yes\",\"label\":\"\",\"placeholder\":\"The Terms and Conditions\",\"cols\":\"one\",\"checkbox_single\":{\"yes\":{\"value\":\"yes\",\"label\":\"I accept the <a href=\\\"privacy-policy\\\" target=\\\"_blank\\\"> Terms of Service and Privacy Policy <\\/a>\",\"checked\":false}},\"class\":\"\"},\"priority\":80},\"xoo-el-username\":{\"field_type\":\"xoo-el-username\",\"input_type\":\"text\",\"settings\":{\"unique_id\":\"xoo-el-username\",\"required\":\"yes\",\"active\":\"yes\",\"elType\":\"login\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-user-plus\",\"placeholder\":\"Identifiant\\/e-mail\",\"class\":\"\"},\"priority\":1000},\"xoo-el-password\":{\"field_type\":\"xoo-el-password\",\"input_type\":\"password\",\"settings\":{\"required\":\"yes\",\"unique_id\":\"xoo-el-password\",\"elType\":\"login\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-key\",\"placeholder\":\"Mot de passe\",\"password_visibility\":\"yes\",\"class\":\"\"},\"priority\":1010},\"xoo-el-rp-pass\":{\"field_type\":\"xoo-el-rp-pass\",\"input_type\":\"password\",\"settings\":{\"required\":\"yes\",\"unique_id\":\"xoo-el-rp-pass\",\"elType\":\"resetpw\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-key\",\"placeholder\":\"Nouveau mot de passe\",\"minlength\":6,\"maxlength\":20,\"password_visibility\":\"yes\",\"class\":\"\"},\"priority\":1020},\"xoo-el-rp-pass-again\":{\"field_type\":\"xoo-el-rp-pass-again\",\"input_type\":\"password\",\"settings\":{\"required\":\"yes\",\"unique_id\":\"xoo-el-rp-pass-again\",\"elType\":\"resetpw\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-key\",\"placeholder\":\"Confirmer le mot de passe\",\"password_visibility\":\"yes\",\"class\":\"\"},\"priority\":1030},\"user_login\":{\"field_type\":\"user_login\",\"input_type\":\"text\",\"settings\":{\"unique_id\":\"user_login\",\"required\":\"yes\",\"active\":\"yes\",\"elType\":\"lostpw\",\"label\":\"\",\"cols\":\"one\",\"icon\":\"fas fa-user-plus\",\"placeholder\":\"Identifiant\\/e-mail\",\"class\":\"\"},\"priority\":1040}}','yes'),
  349. (432,'xoo-el-version','2.5','yes'),
  350. (433,'xoo_easy-login-woocommerce_theme_templates_data','a:3:{s:12:\"has_outdated\";s:2:\"no\";s:9:\"templates\";a:0:{}s:12:\"last_scanned\";i:1699513728;}','yes'),
  351. (434,'xoo_aff_easy-login-woocommerce_version','1.1','yes'),
  352. (435,'xoo-el-av-options','a:1:{s:12:\"m-custom-css\";s:0:\"\";}','yes'),
  353. (437,'rvy_scheduled_publish_cron','','no'),
  354. (438,'revisionary_last_version','3.5.2','no'),
  355. (443,'revisionary_wp_reviews_installed_on','2023-08-24 14:42:45','no'),
  356. (444,'rvy_enabled_post_types','a:5:{s:4:\"post\";s:1:\"1\";s:8:\"wp_block\";s:1:\"1\";s:10:\"attachment\";s:1:\"1\";s:13:\"wp_navigation\";s:1:\"1\";s:4:\"page\";s:1:\"0\";}','no'),
  357. (445,'rvy_revisor_role_add_custom_rolecaps','1','no'),
  358. (446,'rvy_require_edit_others_drafts','1','no'),
  359. (447,'rvy_revision_statuses_noun_labels','','no'),
  360. (448,'rvy_copy_posts_capability','','no'),
  361. (449,'rvy_manage_unsubmitted_capability','','no'),
  362. (450,'rvy_revision_limit_per_post','','no'),
  363. (451,'rvy_auto_submit_revisions','','no'),
  364. (452,'rvy_caption_copy_as_edit','','no'),
  365. (453,'rvy_pending_revisions','1','no'),
  366. (454,'rvy_revise_posts_capability','','no'),
  367. (455,'rvy_pending_revision_update_post_date','1','no'),
  368. (456,'rvy_pending_revision_update_modified_date','1','no'),
  369. (457,'rvy_scheduled_revisions','','no'),
  370. (458,'rvy_scheduled_revision_update_post_date','','no'),
  371. (459,'rvy_scheduled_revision_update_modified_date','','no'),
  372. (460,'rvy_revisor_lock_others_revisions','1','no'),
  373. (461,'rvy_revisor_hide_others_revisions','1','no'),
  374. (462,'rvy_admin_revisions_to_own_posts','1','no'),
  375. (463,'rvy_list_unsubmitted_revisions','1','no'),
  376. (464,'rvy_revision_preview_links','1','no'),
  377. (465,'rvy_preview_link_type','','no'),
  378. (466,'rvy_compare_revisions_direct_approval','1','no'),
  379. (467,'rvy_trigger_post_update_actions','','no'),
  380. (468,'rvy_copy_revision_comments_to_post','','no'),
  381. (469,'rvy_diff_display_strip_tags','','no'),
  382. (470,'rvy_past_revisions_order_by','','no'),
  383. (471,'rvy_display_hints','1','no'),
  384. (472,'rvy_pending_rev_notify_admin','always','no'),
  385. (473,'rvy_pending_rev_notify_author','always','no'),
  386. (474,'rvy_revision_update_notifications','1','no'),
  387. (475,'rvy_rev_approval_notify_admin','1','no'),
  388. (476,'rvy_rev_approval_notify_author','1','no'),
  389. (477,'rvy_rev_approval_notify_revisor','1','no'),
  390. (478,'rvy_publish_scheduled_notify_admin','1','no'),
  391. (479,'rvy_publish_scheduled_notify_author','1','no'),
  392. (480,'rvy_publish_scheduled_notify_revisor','1','no'),
  393. (481,'rvy_use_notification_buffer','1','no'),
  394. (486,'ure_role_additional_options_values','a:1:{s:7:\"revisor\";a:0:{}}','yes'),
  395. (491,'_site_transient_timeout_browser_6273d3d96a47643c47c537df78e70393','1694076619','no'),
  396. (492,'_site_transient_browser_6273d3d96a47643c47c537df78e70393','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"116.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
  397. (509,'_transient_timeout_revisionary-post-edit-redirect-9370','1693484458','no'),
  398. (510,'_transient_revisionary-post-edit-redirect-9370','1','no'),
  399. (511,'_transient_timeout_revisionary-post-edit-redirect-9372','1693485018','no'),
  400. (512,'_transient_revisionary-post-edit-redirect-9372','1','no'),
  401. (517,'_transient_timeout_revisionary-post-edit-redirect-9373','1693485791','no'),
  402. (518,'_transient_revisionary-post-edit-redirect-9373','1','no'),
  403. (519,'revisionary_sent_mail','a:48:{i:9;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:512:\"valentin.le moign a envoyé des modifications à la « 0’02 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13193&preview=1&page_id=13927&post_type=post&nc=53b00fe9\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13193&all=1&nc=ee4afe98\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13927&nc=c8c7da0c\r\n\";s:4:\"time\";i:1698043146;s:8:\"time_gmt\";i:1698035946;s:11:\"revision_id\";i:13927;s:7:\"post_id\";i:13193;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:10;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:88:\"\"Le demandeur était valentin.le moign.\r\n\r\nVoir en ligne : https://localhost/?p=13193\r\n\";s:4:\"time\";i:1698044181;s:8:\"time_gmt\";i:1698036981;s:11:\"revision_id\";i:13927;s:7:\"post_id\";i:13193;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:26:\"rev_approval_notify_author\";}i:11;a:9:{s:7:\"address\";s:25:\"valentinlemoign@gmail.com\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:118:\"La demande de révision pour Article « 0’02 » a été traitée.\r\n\r\nVoir en ligne : https://localhost/?p=13193\r\n\";s:4:\"time\";i:1698044181;s:8:\"time_gmt\";i:1698036981;s:11:\"revision_id\";i:13927;s:7:\"post_id\";i:13193;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:27:\"rev_approval_notify_revisor\";}i:12;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:511:\"utilisateur.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=13934&post_type=post&nc=9173a2bb\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=3f405cff\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13934&nc=961fb8ec\r\n\";s:4:\"time\";i:1698083277;s:8:\"time_gmt\";i:1698076077;s:11:\"revision_id\";i:13934;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:13;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:511:\"utilisateur.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=13937&post_type=post&nc=2e2c76e0\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=2995de73\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13937&nc=1e1dd58e\r\n\";s:4:\"time\";i:1698090458;s:8:\"time_gmt\";i:1698083258;s:11:\"revision_id\";i:13937;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:14;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:512:\"utilisateur.test a envoyé des modifications à la « 01’04 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13202&preview=1&page_id=13949&post_type=post&nc=2e54b3c6\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13202&all=1&nc=8f6a85cd\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13949&nc=2bdf032e\r\n\";s:4:\"time\";i:1698234573;s:8:\"time_gmt\";i:1698227373;s:11:\"revision_id\";i:13949;s:7:\"post_id\";i:13202;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:15;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:505:\"test.test a envoyé des modifications à la « 02’11 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13215&preview=1&page_id=13952&post_type=post&nc=f4797b67\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13215&all=1&nc=f9e38fa6\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13952&nc=ffed3968\r\n\";s:4:\"time\";i:1698315217;s:8:\"time_gmt\";i:1698308017;s:11:\"revision_id\";i:13952;s:7:\"post_id\";i:13215;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:16;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:80:\"\"Le demandeur était test.test.\r\n\r\nVoir en ligne : https://localhost/?p=13215\r\n\";s:4:\"time\";i:1698315598;s:8:\"time_gmt\";i:1698308398;s:11:\"revision_id\";i:13952;s:7:\"post_id\";i:13215;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:26:\"rev_approval_notify_author\";}i:17;a:9:{s:7:\"address\";s:23:\"emailtest@emailtest.com\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:119:\"La demande de révision pour Article « 02’11 » a été traitée.\r\n\r\nVoir en ligne : https://localhost/?p=13215\r\n\";s:4:\"time\";i:1698315598;s:8:\"time_gmt\";i:1698308398;s:11:\"revision_id\";i:13952;s:7:\"post_id\";i:13215;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:27:\"rev_approval_notify_revisor\";}i:18;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=13956&post_type=post&nc=e7f03b0b\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=1da2301f\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13956&nc=4f92fa5f\r\n\";s:4:\"time\";i:1699366059;s:8:\"time_gmt\";i:1699362459;s:11:\"revision_id\";i:13956;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:19;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=13960&post_type=post&nc=4c7604fe\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=54b42b20\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13960&nc=e35b419f\r\n\";s:4:\"time\";i:1699366815;s:8:\"time_gmt\";i:1699363215;s:11:\"revision_id\";i:13960;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:20;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=13962&post_type=post&nc=e8c63ba4\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=3ff750ab\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13962&nc=706a1050\r\n\";s:4:\"time\";i:1699368524;s:8:\"time_gmt\";i:1699364924;s:11:\"revision_id\";i:13962;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:21;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:67:\"[Partition Le Livre d\'Image] Révision envoyée a été mis à jour\";s:7:\"message\";s:423:\"val a mis à jour une révision envoyée de la article « 0’26 ».\r\n\r\nAperçu et approbation : https://localhost/?p=13198&preview=1&page_id=13955&post_type=post&nc=2bdab837\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13198&all=1&nc=b07dfa51\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13955&nc=43d9c7be\r\n\";s:4:\"time\";i:1699519791;s:8:\"time_gmt\";i:1699516191;s:11:\"revision_id\";i:13955;s:7:\"post_id\";i:13198;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:22;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:67:\"[Partition Le Livre d\'Image] Révision envoyée a été mis à jour\";s:7:\"message\";s:424:\"val a mis à jour une révision envoyée de la article « 01’04 ».\r\n\r\nAperçu et approbation : https://localhost/?p=13202&preview=1&page_id=13949&post_type=post&nc=99bfb6f5\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13202&all=1&nc=4367b220\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13949&nc=33134302\r\n\";s:4:\"time\";i:1699519791;s:8:\"time_gmt\";i:1699516191;s:11:\"revision_id\";i:13949;s:7:\"post_id\";i:13202;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:23;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:67:\"[Partition Le Livre d\'Image] Révision envoyée a été mis à jour\";s:7:\"message\";s:424:\"val a mis à jour une révision envoyée de la article « 02’31 ».\r\n\r\nAperçu et approbation : https://localhost/?p=13216&preview=1&page_id=13954&post_type=post&nc=46f614d4\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13216&all=1&nc=464e8fdc\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13954&nc=f5576811\r\n\";s:4:\"time\";i:1699519792;s:8:\"time_gmt\";i:1699516192;s:11:\"revision_id\";i:13954;s:7:\"post_id\";i:13216;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:24;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:67:\"[Partition Le Livre d\'Image] Révision envoyée a été mis à jour\";s:7:\"message\";s:423:\"val a mis à jour une révision envoyée de la article « 0’26 ».\r\n\r\nAperçu et approbation : https://localhost/?p=13198&preview=1&page_id=13955&post_type=post&nc=c96b887c\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13198&all=1&nc=53911153\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13955&nc=a1cbf0d0\r\n\";s:4:\"time\";i:1699519994;s:8:\"time_gmt\";i:1699516394;s:11:\"revision_id\";i:13955;s:7:\"post_id\";i:13198;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:25;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:67:\"[Partition Le Livre d\'Image] Révision envoyée a été mis à jour\";s:7:\"message\";s:424:\"val a mis à jour une révision envoyée de la article « 01’04 ».\r\n\r\nAperçu et approbation : https://localhost/?p=13202&preview=1&page_id=13949&post_type=post&nc=774e5efc\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13202&all=1&nc=e39897a1\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13949&nc=b8a64852\r\n\";s:4:\"time\";i:1699519994;s:8:\"time_gmt\";i:1699516394;s:11:\"revision_id\";i:13949;s:7:\"post_id\";i:13202;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:26;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:67:\"[Partition Le Livre d\'Image] Révision envoyée a été mis à jour\";s:7:\"message\";s:424:\"val a mis à jour une révision envoyée de la article « 02’31 ».\r\n\r\nAperçu et approbation : https://localhost/?p=13216&preview=1&page_id=13954&post_type=post&nc=7154f869\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13216&all=1&nc=387cd4f0\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=13954&nc=23f6f497\r\n\";s:4:\"time\";i:1699519995;s:8:\"time_gmt\";i:1699516395;s:11:\"revision_id\";i:13954;s:7:\"post_id\";i:13216;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:27;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14678&post_type=post&nc=6a7dcecc\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=f290c885\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14678&nc=f166d7cd\r\n\";s:4:\"time\";i:1699522284;s:8:\"time_gmt\";i:1699518684;s:11:\"revision_id\";i:14678;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:28;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:505:\"test.test a envoyé des modifications à la « 01’29 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13205&preview=1&page_id=14680&post_type=post&nc=99f999d2\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13205&all=1&nc=1ded4b4b\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14680&nc=2554586c\r\n\";s:4:\"time\";i:1699522768;s:8:\"time_gmt\";i:1699519168;s:11:\"revision_id\";i:14680;s:7:\"post_id\";i:13205;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:29;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:80:\"\"Le demandeur était test.test.\r\n\r\nVoir en ligne : https://localhost/?p=13205\r\n\";s:4:\"time\";i:1699522852;s:8:\"time_gmt\";i:1699519252;s:11:\"revision_id\";i:14680;s:7:\"post_id\";i:13205;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:26:\"rev_approval_notify_author\";}i:30;a:9:{s:7:\"address\";s:23:\"emailtest@emailtest.com\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:119:\"La demande de révision pour Article « 01’29 » a été traitée.\r\n\r\nVoir en ligne : https://localhost/?p=13205\r\n\";s:4:\"time\";i:1699522852;s:8:\"time_gmt\";i:1699519252;s:11:\"revision_id\";i:14680;s:7:\"post_id\";i:13205;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:27:\"rev_approval_notify_revisor\";}i:31;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14685&post_type=post&nc=2a28a20f\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=f47917ad\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14685&nc=6c6ac6d4\r\n\";s:4:\"time\";i:1699523655;s:8:\"time_gmt\";i:1699520055;s:11:\"revision_id\";i:14685;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:32;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14687&post_type=post&nc=637dd5ae\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=76f714c9\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14687&nc=0cea0e9a\r\n\";s:4:\"time\";i:1699523920;s:8:\"time_gmt\";i:1699520320;s:11:\"revision_id\";i:14687;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:33;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:502:\"test.test a envoyé des modifications à la « 0\'13 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13195&preview=1&page_id=14688&post_type=post&nc=445eb754\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13195&all=1&nc=df33aac1\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14688&nc=f98c0737\r\n\";s:4:\"time\";i:1699524029;s:8:\"time_gmt\";i:1699520429;s:11:\"revision_id\";i:14688;s:7:\"post_id\";i:13195;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:34;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:505:\"test.test a envoyé des modifications à la « 01’55 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13210&preview=1&page_id=14689&post_type=post&nc=d5f1914f\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13210&all=1&nc=f02faffa\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14689&nc=fc4b30da\r\n\";s:4:\"time\";i:1699524094;s:8:\"time_gmt\";i:1699520494;s:11:\"revision_id\";i:14689;s:7:\"post_id\";i:13210;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:35;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:505:\"test.test a envoyé des modifications à la « 02’06 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13213&preview=1&page_id=14690&post_type=post&nc=d2db6ed8\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13213&all=1&nc=853cf027\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14690&nc=ddcd7607\r\n\";s:4:\"time\";i:1699524281;s:8:\"time_gmt\";i:1699520681;s:11:\"revision_id\";i:14690;s:7:\"post_id\";i:13213;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:36;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14691&post_type=post&nc=2b42d3b7\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=e9ef6a54\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14691&nc=18a7bf19\r\n\";s:4:\"time\";i:1699524373;s:8:\"time_gmt\";i:1699520773;s:11:\"revision_id\";i:14691;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:37;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14692&post_type=post&nc=3f81cefd\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=b4d28dc1\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14692&nc=54216c45\r\n\";s:4:\"time\";i:1699524423;s:8:\"time_gmt\";i:1699520823;s:11:\"revision_id\";i:14692;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:38;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14693&post_type=post&nc=3483e559\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=f4e1f470\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14693&nc=bae310bd\r\n\";s:4:\"time\";i:1699524465;s:8:\"time_gmt\";i:1699520865;s:11:\"revision_id\";i:14693;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:39;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14694&post_type=post&nc=c74fd4ec\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=0fc34ccb\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14694&nc=cb388cb4\r\n\";s:4:\"time\";i:1699524593;s:8:\"time_gmt\";i:1699520993;s:11:\"revision_id\";i:14694;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:40;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14695&post_type=post&nc=c881e2e0\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=34db3fb6\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14695&nc=266636ca\r\n\";s:4:\"time\";i:1699525731;s:8:\"time_gmt\";i:1699522131;s:11:\"revision_id\";i:14695;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:41;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’10 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13194&preview=1&page_id=14696&post_type=post&nc=c3054f7f\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13194&all=1&nc=4a946432\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14696&nc=e5e1f6a9\r\n\";s:4:\"time\";i:1699525787;s:8:\"time_gmt\";i:1699522187;s:11:\"revision_id\";i:14696;s:7:\"post_id\";i:13194;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:42;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14697&post_type=post&nc=c21d2a20\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=af4db5e1\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14697&nc=6da24992\r\n\";s:4:\"time\";i:1699525852;s:8:\"time_gmt\";i:1699522252;s:11:\"revision_id\";i:14697;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:43;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14698&post_type=post&nc=84625f36\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=1cb4ae5f\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14698&nc=f690cc2c\r\n\";s:4:\"time\";i:1699525887;s:8:\"time_gmt\";i:1699522287;s:11:\"revision_id\";i:14698;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:44;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14699&post_type=post&nc=98192ada\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=ec968155\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14699&nc=44b53aca\r\n\";s:4:\"time\";i:1699525984;s:8:\"time_gmt\";i:1699522384;s:11:\"revision_id\";i:14699;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:45;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14700&post_type=post&nc=0593bac5\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=61831dd8\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14700&nc=9b853a5e\r\n\";s:4:\"time\";i:1699526072;s:8:\"time_gmt\";i:1699522472;s:11:\"revision_id\";i:14700;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:46;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14701&post_type=post&nc=e7bdd41b\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=c35edd25\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14701&nc=8fcc84bd\r\n\";s:4:\"time\";i:1699526139;s:8:\"time_gmt\";i:1699522539;s:11:\"revision_id\";i:14701;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:47;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14702&post_type=post&nc=a976568b\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=290cd7f1\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14702&nc=0b5f2923\r\n\";s:4:\"time\";i:1699526191;s:8:\"time_gmt\";i:1699522591;s:11:\"revision_id\";i:14702;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:48;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’10 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13194&preview=1&page_id=14703&post_type=post&nc=1988deca\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13194&all=1&nc=de1a668f\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14703&nc=6e477660\r\n\";s:4:\"time\";i:1699526251;s:8:\"time_gmt\";i:1699522651;s:11:\"revision_id\";i:14703;s:7:\"post_id\";i:13194;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:49;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14704&post_type=post&nc=7584aa24\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=4bf41140\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14704&nc=16de289f\r\n\";s:4:\"time\";i:1699526329;s:8:\"time_gmt\";i:1699522729;s:11:\"revision_id\";i:14704;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:50;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14705&post_type=post&nc=e0319d49\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=0ed2b348\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14705&nc=f76f2004\r\n\";s:4:\"time\";i:1699526383;s:8:\"time_gmt\";i:1699522783;s:11:\"revision_id\";i:14705;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:51;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14706&post_type=post&nc=181ccbd6\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=4dd029e7\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14706&nc=de447a6f\r\n\";s:4:\"time\";i:1699553963;s:8:\"time_gmt\";i:1699550363;s:11:\"revision_id\";i:14706;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:52;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14707&post_type=post&nc=eb76dde1\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=b52ead6b\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14707&nc=c3e18810\r\n\";s:4:\"time\";i:1699554013;s:8:\"time_gmt\";i:1699550413;s:11:\"revision_id\";i:14707;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:53;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:504:\"test.test a envoyé des modifications à la « 0’02 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13193&preview=1&page_id=14708&post_type=post&nc=8106f4a7\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13193&all=1&nc=67045116\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14708&nc=07d09cdc\r\n\";s:4:\"time\";i:1699554033;s:8:\"time_gmt\";i:1699550433;s:11:\"revision_id\";i:14708;s:7:\"post_id\";i:13193;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:54;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:47:\"[Partition Le Livre d\'Image] Révision envoyée\";s:7:\"message\";s:498:\"val a envoyé des modifications à la « 0’00 » de article. Vous pouvez examiner les modifications en vue d’une éventuelle publication :\r\n\r\nAperçu et approbation : https://localhost/?p=13192&preview=1&page_id=14709&post_type=post&nc=bf743ca2\r\n\r\nFile d’attente des révisions : https://localhost/wp/wp-admin/admin.php?page=revisionary-q&published_post=13192&all=1&nc=415f08f5\r\n\r\nModifier Révision envoyée : https://localhost/wp/wp-admin/post.php?action=edit&post=14709&nc=23c5ce56\r\n\";s:4:\"time\";i:1699555114;s:8:\"time_gmt\";i:1699551514;s:11:\"revision_id\";i:14709;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:16:\"pending-revision\";s:18:\"notification_class\";s:28:\"rev_submission_notify_author\";}i:55;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:74:\"\"Le demandeur était val.\r\n\r\nVoir en ligne : https://localhost/?p=13192\r\n\";s:4:\"time\";i:1699555129;s:8:\"time_gmt\";i:1699551529;s:11:\"revision_id\";i:14709;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:26:\"rev_approval_notify_author\";}i:56;a:9:{s:7:\"address\";s:34:\"valentin_le_moign@figureslibres.io\";s:5:\"title\";s:70:\"[Partition Le Livre d\'Image] Notification d’approbation de révision\";s:7:\"message\";s:118:\"La demande de révision pour Article « 0’00 » a été traitée.\r\n\r\nVoir en ligne : https://localhost/?p=13192\r\n\";s:4:\"time\";i:1699555129;s:8:\"time_gmt\";i:1699551529;s:11:\"revision_id\";i:14709;s:7:\"post_id\";i:13192;s:17:\"notification_type\";s:17:\"revision-approval\";s:18:\"notification_class\";s:27:\"rev_approval_notify_revisor\";}}','no'),
  404. (520,'_transient_timeout_revisionary-post-edit-redirect-9375','1693485983','no'),
  405. (521,'_transient_revisionary-post-edit-redirect-9375','1','no'),
  406. (526,'new_admin_email','valentin_le_moign@figureslibres.io','yes'),
  407. (638,'_transient_timeout_revisionary-post-edit-redirect-9967','1695701772','no'),
  408. (639,'_transient_revisionary-post-edit-redirect-9967','1','no'),
  409. (672,'_transient_timeout_revisionary-post-edit-redirect-13906','1695729708','no'),
  410. (673,'_transient_revisionary-post-edit-redirect-13906','1','no'),
  411. (685,'widget_uam_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
  412. (691,'irrp_tables_created','yes','no'),
  413. (693,'analyst_cache','s:6:\"a:0:{}\";','yes'),
  414. (694,'_irb_h_bn_review','a:2:{s:5:\"users\";a:0:{}s:20:\"redirect-redirection\";i:1695745526;}','yes'),
  415. (710,'simple301redirects_version','2.0.8','yes'),
  416. (711,'301_redirects_wildcard','true','yes'),
  417. (712,'301_redirects','a:1:{s:19:\"https://localhost/*\";s:18:\"https://localhost/\";}','yes'),
  418. (714,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/fr_FR/wordpress-6.4.1.zip\";s:6:\"locale\";s:5:\"fr_FR\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/fr_FR/wordpress-6.4.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.2\";s:7:\"version\";s:5:\"6.3.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.2.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.2.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.2.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.2.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.2.3-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.2.3-rollback-2.zip\";}s:7:\"current\";s:5:\"6.2.3\";s:7:\"version\";s:5:\"6.2.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:5:\"6.2.2\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1699513726;s:15:\"version_checked\";s:5:\"6.2.2\";s:12:\"translations\";a:0:{}}','no'),
  419. (715,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1699513726;s:8:\"response\";a:4:{s:27:\"revisionary/revisionary.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/revisionary\";s:4:\"slug\";s:11:\"revisionary\";s:6:\"plugin\";s:27:\"revisionary/revisionary.php\";s:11:\"new_version\";s:5:\"3.5.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/revisionary/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/revisionary.3.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/revisionary/assets/icon-256x256.png?rev=2977161\";s:2:\"1x\";s:64:\"https://ps.w.org/revisionary/assets/icon-128x128.png?rev=2977161\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/revisionary/assets/banner-1544x500.png?rev=2297991\";s:2:\"1x\";s:66:\"https://ps.w.org/revisionary/assets/banner-772x250.png?rev=2298002\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.4.1\";s:12:\"requires_php\";s:5:\"7.2.5\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.4.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.2\";}s:37:\"user-role-editor/user-role-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/user-role-editor\";s:4:\"slug\";s:16:\"user-role-editor\";s:6:\"plugin\";s:37:\"user-role-editor/user-role-editor.php\";s:11:\"new_version\";s:6:\"4.64.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/user-role-editor/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/user-role-editor.4.64.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390\";s:2:\"1x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.4.1\";s:12:\"requires_php\";s:3:\"7.3\";}s:47:\"wp-import-export-lite/wp-import-export-lite.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:35:\"w.org/plugins/wp-import-export-lite\";s:4:\"slug\";s:21:\"wp-import-export-lite\";s:6:\"plugin\";s:47:\"wp-import-export-lite/wp-import-export-lite.php\";s:11:\"new_version\";s:6:\"3.9.26\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wp-import-export-lite/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/wp-import-export-lite.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/wp-import-export-lite/assets/icon-256x256.png?rev=2129449\";s:2:\"1x\";s:74:\"https://ps.w.org/wp-import-export-lite/assets/icon-128x128.png?rev=2129449\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/wp-import-export-lite/assets/banner-1544x500.png?rev=2129449\";s:2:\"1x\";s:76:\"https://ps.w.org/wp-import-export-lite/assets/banner-772x250.png?rev=2129449\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:25:\"adminimize/adminimize.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/adminimize\";s:4:\"slug\";s:10:\"adminimize\";s:6:\"plugin\";s:25:\"adminimize/adminimize.php\";s:11:\"new_version\";s:6:\"1.11.9\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/adminimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/adminimize.1.11.9.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:61:\"https://s.w.org/plugins/geopattern-icon/adminimize_000000.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/adminimize/assets/banner-772x250.png?rev=1118207\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:38:\"easy-login-woocommerce/xoo-el-main.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-login-woocommerce\";s:4:\"slug\";s:22:\"easy-login-woocommerce\";s:6:\"plugin\";s:38:\"easy-login-woocommerce/xoo-el-main.php\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-login-woocommerce/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/easy-login-woocommerce.2.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/easy-login-woocommerce/assets/icon-128x128.png?rev=1970613\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/easy-login-woocommerce/assets/banner-772x250.jpg?rev=2583694\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}}}','no'),
  420. (716,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1699513728;s:7:\"checked\";a:2:{s:19:\"partition-jlg-theme\";s:6:\"10.6.0\";s:17:\"twentytwentythree\";s:3:\"1.1\";}s:8:\"response\";a:1:{s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),
  421. (719,'permalink-manager-uris','a:0:{}','yes'),
  422. (756,'_site_transient_timeout_browser_6e531f06bf3fc26f36b3c288978e9fc4','1698634571','no'),
  423. (757,'_site_transient_browser_6e531f06bf3fc26f36b3c288978e9fc4','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"117.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
  424. (772,'_transient_timeout_revisionary-post-edit-redirect-13927','1698030573','no'),
  425. (773,'_transient_revisionary-post-edit-redirect-13927','1','no'),
  426. (782,'_wp_suggested_policy_text_has_changed','not-changed','yes'),
  427. (787,'_transient_timeout_revisionary-post-edit-redirect-13934','1698076036','no'),
  428. (788,'_transient_revisionary-post-edit-redirect-13934','1','no'),
  429. (789,'_transient_timeout_revisionary-post-edit-redirect-13936','1698077504','no'),
  430. (790,'_transient_revisionary-post-edit-redirect-13936','1','no'),
  431. (791,'_transient_timeout_revisionary-post-edit-redirect-13937','1698078013','no'),
  432. (792,'_transient_revisionary-post-edit-redirect-13937','1','no'),
  433. (809,'_transient_timeout_revisionary-post-edit-redirect-13942','1698084065','no'),
  434. (810,'_transient_revisionary-post-edit-redirect-13942','1','no'),
  435. (837,'_transient_timeout_revisionary-post-edit-redirect-13948','1698221382','no'),
  436. (838,'_transient_revisionary-post-edit-redirect-13948','1','no'),
  437. (841,'rvy_next_rev_publish_gmt','2035-01-01 00:00:00','yes'),
  438. (846,'_transient_timeout_revisionary-post-edit-redirect-13949','1698227388','no'),
  439. (847,'_transient_revisionary-post-edit-redirect-13949','1','no'),
  440. (854,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1698314716','no'),
  441. (855,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:6168;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4823;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2788;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2684;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2057;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1927;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1914;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1657;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1573;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1565;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1550;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1513;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1503;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1498;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1381;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1278;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1176;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1160;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1155;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1076;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1034;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1003;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:970;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:908;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:906;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:888;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:883;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:881;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:876;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:872;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:843;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:824;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:796;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:781;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:780;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:776;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:764;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:750;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:734;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:732;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:730;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:730;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:694;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:687;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:683;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:676;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:668;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:634;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:629;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:621;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:616;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:610;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:608;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:601;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:597;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:594;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:593;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:577;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:576;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:572;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:572;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:571;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:561;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:559;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:544;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:542;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:533;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:533;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:532;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:531;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:519;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:511;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:510;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:509;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:506;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:494;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:483;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:479;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:471;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:451;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:449;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:449;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:439;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:434;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:430;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:427;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:425;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:422;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:421;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:420;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:413;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:408;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:400;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:400;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:396;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:396;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:391;}}','no'),
  442. (858,'_transient_timeout_revisionary-post-edit-redirect-13952','1698307738','no'),
  443. (859,'_transient_revisionary-post-edit-redirect-13952','1','no'),
  444. (882,'_transient_timeout_revisionary-post-edit-redirect-13954','1699345156','no'),
  445. (883,'_transient_revisionary-post-edit-redirect-13954','1','no'),
  446. (886,'_transient_timeout_revisionary-post-edit-redirect-13955','1699345172','no'),
  447. (887,'_transient_revisionary-post-edit-redirect-13955','1','no'),
  448. (890,'_transient_timeout_revisionary-post-edit-redirect-13956','1699362462','no'),
  449. (891,'_transient_revisionary-post-edit-redirect-13956','1','no'),
  450. (894,'_transient_timeout_revisionary-post-edit-redirect-13958','1699362505','no'),
  451. (895,'_transient_revisionary-post-edit-redirect-13958','1','no'),
  452. (896,'_transient_timeout_revisionary-post-edit-redirect-13959','1699363108','no'),
  453. (897,'_transient_revisionary-post-edit-redirect-13959','1','no'),
  454. (898,'_transient_timeout_revisionary-post-edit-redirect-13960','1699363205','no'),
  455. (899,'_transient_revisionary-post-edit-redirect-13960','1','no'),
  456. (902,'_transient_timeout_revisionary-post-edit-redirect-13962','1699364932','no'),
  457. (903,'_transient_revisionary-post-edit-redirect-13962','1','no'),
  458. (904,'_transient_timeout_revisionary-post-edit-redirect-13963','1699365027','no'),
  459. (905,'_transient_revisionary-post-edit-redirect-13963','1','no'),
  460. (906,'_transient_timeout_revisionary-post-edit-redirect-13964','1699366797','no'),
  461. (907,'_transient_revisionary-post-edit-redirect-13964','1','no'),
  462. (910,'_site_transient_timeout_browser_fce1c6ffcf31c3489ad1adcb1ce5d425','1699972109','no'),
  463. (911,'_site_transient_browser_fce1c6ffcf31c3489ad1adcb1ce5d425','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"118.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
  464. (912,'_site_transient_timeout_php_check_b2b5c51827d5c99b0dbe7b2d0efda8db','1699972110','no'),
  465. (913,'_site_transient_php_check_b2b5c51827d5c99b0dbe7b2d0efda8db','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),
  466. (916,'_site_transient_timeout_revisionary_previous_install','1699597881','no'),
  467. (917,'_site_transient_revisionary_previous_install','1','no'),
  468. (922,'_transient_timeout_feed_0d2db5fea5a8633b56992c916819b198','1699557055','no');
  469. INSERT INTO `wp_options` VALUES
  470. (923,'_transient_feed_0d2db5fea5a8633b56992c916819b198','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Blog | WordPress.org Français\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://fr.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Nov 2023 20:01:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"fr-FR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Blog | WordPress.org Français\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://fr.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 6.4 « Shirley »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://fr.wordpress.org/2023/11/07/wordpress-6-4-shirley/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://fr.wordpress.org/2023/11/07/wordpress-6-4-shirley/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Nov 2023 20:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2892\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Découvrez WordPress 6.4, nommée « Shirley » en l\'honneur de l\'artiste de jazz emblématique Shirley Horn.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:77566:\"\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2023/11/wp64-shirley.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://fr.wordpress.org/files/2023/11/wp64-shirley-1024x683.png\" alt=\"\" class=\"wp-image-2924\" srcset=\"https://fr.wordpress.org/files/2023/11/wp64-shirley-1024x683.png 1024w, https://fr.wordpress.org/files/2023/11/wp64-shirley-300x200.png 300w, https://fr.wordpress.org/files/2023/11/wp64-shirley-768x512.png 768w, https://fr.wordpress.org/files/2023/11/wp64-shirley-1536x1024.png 1536w, https://fr.wordpress.org/files/2023/11/wp64-shirley.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Découvrez WordPress 6.4, nommée <strong>« Shirley »</strong> en l&rsquo;honneur de l&rsquo;artiste de jazz emblématique <a href=\"https://fr.wikipedia.org/wiki/Shirley_Horn\">Shirley Horn</a>.</p>\n\n\n\n<p>Sa voix distinctive et sa connexion extraordinaire au piano l&rsquo;ont établie comme l&rsquo;une des principales musiciennes de jazz de sa génération. Le parcours de Shirley Horn, de la scène jazz de <bdo lang=\"en\" dir=\"ltr\">Washington D.C</bdo>. à la scène internationale, témoigne de son dévouement et de sa persévérance. Son influence s&rsquo;est étendue bien au-delà des limites du jazz traditionnel, brisant les frontières et inspirant les publics du monde entier.<br><br>Lançons <a href=\"https://www.youtube.com/channel/UCS3pUiY9OmzB6bPta3-4ArQ/playlists\">quelques tubes</a> de Shirley Horn et musique, apprenons en davantage sur cette nouvelle version majeure de WordPress.</p>\n\n\n\n<p>Chaque version de WordPress renforce votre liberté créative, et WordPress 6.4 n&rsquo;y fait pas exception. Les nouvelles fonctionnalités et les améliorations apportées à l’édition, à la conception et à l’écriture de votre site permettent à vos idées de prendre forme de manière transparente. Améliorez la construction de votre site avec la flexibilité et la puissance de WordPress 6.4.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>La plupart des fonctionnalités et améliorations présentes dans WordPress 6.4 appartiennent à la catégorie des évolutions «&nbsp;petites mais puissantes&nbsp;». En parallèle de la belle flexibilité du nouveau thème <bdo lang=\"en\" dir=\"ltr\">Twenty Twenty-Four</bdo>, ces changements aideront les personnes créant du contenu ou développant leurs propres fonctionnalités à gagner du temps pour se concentrer sur la valeur ajoutée de leur cœur de métier.</p>\n<cite>Josepha Haden Chomphosy, Directrice exécutive du projet <bdo lang=\"en\" dir=\"ltr\">open-source</bdo> WordPress.</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size has-medium-font-size\"><a class=\"wp-block-button__link has-black-color has-text-color has-background has-link-color wp-element-button\" href=\"https://fr.wordpress.org/download/\" style=\"border-radius:0px;background:linear-gradient(150deg,rgb(207,202,190) 0%,rgb(234,233,231) 100%)\">Télécharger WordPress 6.4</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Les nouveautés de WordPress 6.4</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Découvrez <bdo lang=\"en\" dir=\"ltr\">Twenty Twenty-Four</bdo></h3>\n\n\n\n<p>Découvrez les dernières avancées en matière d’édition de sites avec&nbsp;<a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>. Conçu pour trois cas d’utilisation distincts, la polyvalence du nouveau thème par défaut en fait un choix idéal pour presque tous les types de sites web. Plongez dans sa collection de modèles et de compositions et ouvrez vous un monde de possibilités créatives en quelques ajustements.</p>\n\n\n\n<p>Gagnez en efficacité avec sa collection de <a href=\"https://2024.wordpress.net/index.php/patterns/\">35 modèles de pages et compositions</a> et débloquez en quelques clics tout un monde de possibilités créatives. La flexibilité remarquable de <bdo lang=\"en\" dir=\"ltr\">Twenty Twenty-Four</bdo> lui permet de s&rsquo;adapter à presque n&rsquo;importe quel type de site.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size has-medium-font-size\"><a class=\"wp-block-button__link has-black-color has-text-color has-background has-link-color wp-element-button\" href=\"http://2024.wordpress.net/\" style=\"border-radius:0px;background:linear-gradient(150deg,rgb(207,202,190) 0%,rgb(234,233,231) 100%)\">Voir la démo de Twenty Twenty-Four</a></div>\n</div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=1024%2C666&amp;ssl=1\" alt=\"Cropped screenshots of the Twenty Twenty-Four theme, showing its diverse use cases for photographers, bloggers, and small businesses.\" class=\"wp-image-16274\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Profitez des améliorations apportées à la rédaction de contenu</h3>\n\n\n\n<p>De&nbsp;<a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">nouvelles améliorations</a>&nbsp;garantissent la fluidité de votre parcours de création de contenus. Vous trouverez de nouveaux raccourcis clavier dans la Vue en liste, une fusion de liste améliorée et un meilleur contrôle des réglages de lien. Une barre d’outils remaniée et cohérente pour les blocs Navigation, Liste et Citation vous permet de travailler efficacement avec les outils dont vous avez besoin.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=1024%2C666&amp;ssl=1\" alt=\"Screenshot of a Quote block showing its improved toolbar and the text &quot;Études has saved us thousands of hours of work and has unlock insights we never thought possible.&quot;\" class=\"wp-image-16275\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Obtenez plus de résultats avec la palette de commandes</h3>\n\n\n\n<p>Profitez d’un&nbsp;<a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\">nouveau design et d’un plus grand nombre de commandes (en anglais)</a>&nbsp;pour trouver ce que vous cherchez, effectuer des tâches de manière efficace et gagner du temps lors de vos créations.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=1024%2C666&amp;ssl=1\" alt=\"Screenshot of the refreshed UI of the Command Palette. It displays a search bar with the words &quot;Search for commands&quot; and a variety of shortcuts listed below, including &quot;Add new page,&quot; &quot;Preview in a new tab,&quot; and &quot;Patterns.&quot;\" class=\"wp-image-16276\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Catégorisez et filtrez les compositions</h3>\n\n\n\n<p>Organisez vos compositions synchronisées ou standards (non synchronisées) avec des catégories. Explorez le filtrage avancé dans la section Compositions de l’outil d’insertion pour les retrouver plus intuitivement.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=1024%2C666&amp;ssl=1\" alt=\"Screenshot of the Site Editor\'s patterns view which shows a list of patterns with custom categories, such as &quot;About,&quot; &quot;Banners,&quot; and &quot;Call to Action,&quot; patterns.\" class=\"wp-image-16278\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Développez votre créativité avec davantage d’outils de conception</h3>\n\n\n\n<p>Faites preuve de créativité avec de nouvelles images d’arrière-plan dans les blocs Groupe et veillez à ce que les dimensions des images soient cohérentes avec les proportions de taille des espaces réservés.</p>\n\n\n\n<p>Vous souhaitez ajouter des boutons à votre bloc Navigation&nbsp;? Vous pouvez désormais le faire en toute simplicité, sans CSS personnalisé. Si vous travaillez avec des compositions synchronisées, les réglages d’alignement restent intacts pour une expérience de création de compositions transparente.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=1024%2C666&amp;ssl=1\" alt=\"Decorative image with text &quot;Background images in Group blocks.&quot;\" class=\"wp-image-16279\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Ajoutez un effet de visionneuse aux images</h3>\n\n\n\n<p>Activez la fonctionnalité visionneuse (en anglais <em><bdo lang=\"en\" dir=\"ltr\">lightbox</bdo></em>) pour des images interactives en plein écran d’un simple clic. Appliquez-la globalement ou à des images spécifiques pour personnaliser l’expérience de visualisation.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=1024%2C666&amp;ssl=1\" alt=\"Decorative photo of a triangular building structure with a &quot;click to expand&quot; icon on the right top corner.\" class=\"wp-image-16280\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Renommez les blocs Groupe</h3>\n\n\n\n<p>Définissez des noms personnalisés pour vos blocs Groupe pour facilement organiser et différencier les parties de votre contenu. Ces noms seront visibles dans la Vue en liste.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=1024%2C666&amp;ssl=1\" alt=\"Screenshot of the List View tool. It shows a Group block renamed as &quot;Hero Area&quot; with inner Group blocks also with custom names, such as &quot;Content,&quot; &quot;Images,&quot; and &quot;Call to action.&quot;\" class=\"wp-image-16281\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Prévisualisez les images depuis la vue en liste</h3>\n\n\n\n<p>Les nouveaux aperçus des médias pour les blocs Galerie et Image dans la vue en liste vous permettent de visualiser et de localiser d’un coup d’œil les images de votre contenu.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=1024%2C666&amp;ssl=1\" alt=\"Screenshot of the List View tool, showing the new image previews for the Image and Gallery blocks.\" class=\"wp-image-16282\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Partagez des compositions entre sites</h3>\n\n\n\n<p>Besoin d’utiliser vos compositions personnalisées sur un autre site&nbsp;? Rien de plus simple&nbsp;! Importez et exportez-les sous forme de fichiers JSON à partir de la vue des compositions de l’éditeur de site.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns.png?resize=1024%2C666&amp;ssl=1\" alt=\"Screenshot showing the &quot;Import pattern from JSON files&quot; option from the Site Editor\'s patterns view.\" class=\"wp-image-16283\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Présentation des crochets de bloc</h3>\n\n\n\n<p>Les <a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">crochets de bloc (documentation technique en anglais)</a> sont une nouvelle fonctionnalité puissante qui permet aux extensions d’insérer automatiquement des blocs dans le contenu d’un autre bloc. Il s’agit de recommandations qui rendent votre travail avec les blocs plus intuitif. Un nouveau panneau «&nbsp;Extensions&nbsp;» vous permet de les adapter à vos besoins&nbsp; : ajoutez, supprimez et réorganisez les crochets de bloc à votre guise.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=1024%2C666&amp;ssl=1\" alt=\"Cropped screenshot showing a mini shopping cart (in a red dotted circle) inserted into a navigation menu by Block Hooks.\" class=\"wp-image-16284\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performances</h3>\n\n\n\n<p>WordPress 6.4 comprend plus de 100 mises à jour de performances pour une expérience plus rapide et plus efficace. Les améliorations se concentrent sur les performances de chargement des modèles pour les thèmes basés sur des blocs et les thèmes classiques, l’utilisation des stratégies de chargement de script «&nbsp;defer&nbsp;» et «&nbsp;async&nbsp;» dans le cœur, les blocs et les thèmes, et l’optimisation des options chargées automatiquement.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibilité</h3>\n\n\n\n<p>Chaque version s’engage à rendre WordPress accessible à toutes et tous. La version 6.4 apporte des améliorations à l’affichage en liste et la prise en charge de l’attribut <code>aria-label</code> pour le bloc Navigation, parmi d’autres points forts. L’interface d’administration inclut des améliorations dans le placement des boutons, le contexte des éléments de menu permettant d’ajouter du contenu, et les messages affichés aux synthèses vocales sur l’écran de Santé du site.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Autres éléments notables</h3>\n\n\n\n<ul>\n<li>Même si WordPress 6.4 est compatible avec toutes les versions supérieures ou égales à PHP 7.0, nous&nbsp;<a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">recommendons d&rsquo;utiliser WordPress 6.4 avec PHP 8.1 ou 8.2 (en anglais)</a>.</li>\n\n\n\n<li>WordPress 6.4&nbsp;<a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">désactivera maintenant les pages de fichiers attachés (communiqué en anglais)</a>&nbsp;pour toutes les nouvelles installations.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">En savoir plus sur WordPress&nbsp;6.4</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a>&nbsp;est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées.&nbsp;Learn&nbsp;contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des&nbsp;<a href=\"https://learn.wordpress.org/online-workshops/\">évènements interactifs</a>&nbsp;pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress.</p>\n\n\n\n<p>Explorez le&nbsp;<a href=\"https://fr.wordpress.org/2023/10/30/guide-des-changements-techniques-de-wordpress-6-4/\">Guide des changements techniques de WordPress 6.4</a>. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous aident à construire avec WordPress.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/wordpress-version/version-6-4/\">Lisez les notes de version de WordPress 6.4</a>&nbsp;pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers.</p>\n\n\n\n<h2 class=\"wp-block-heading\">L’équipe de direction de WordPress&nbsp;6.4</h2>\n\n\n\n<p>​​La version 6.4 de WordPress 6.4 a été dirigée par une équipe entièrement composée de personnes appartenant à des genres sous-représentés dans le milieu «&nbsp;tech&nbsp;», ce qui est une façon pour le projet WordPress de souligner l&rsquo;importance de donner une voix à la diversité dans l&rsquo;écosystème <bdo lang=\"en\" dir=\"ltr\">open-source</bdo>.</p>\n\n\n\n<p>Voici l’équipe qui a coordonné le développement et la sortie de cette nouvelle version de WordPress&nbsp;:</p>\n\n\n\n<ul>\n<li><strong>Direction générale&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li>\n\n\n\n<li><strong>Coordination&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>,&nbsp;<a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>,&nbsp;<a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>,&nbsp;<a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, avec l&rsquo;appui de <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jaimieolmstead/\">Jaimie Olmstead</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a>,&nbsp;<a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li><strong>Direction technique Cœur&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>,&nbsp;<a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, avec l&rsquo;appui de&nbsp;<a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a></li>\n\n\n\n<li><strong>Direction technique de l’éditeur de blocs&nbsp;:&nbsp;</strong><a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>,&nbsp;<a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a>,&nbsp;<a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, avec l&rsquo;appui de <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/battelfred/\">Frédérique Battel</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a>,&nbsp;<a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a>,&nbsp;<a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>,&nbsp;<a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a></li>\n\n\n\n<li><strong>Gestion de projet côté Cœur WP&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a>,&nbsp;<a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a></li>\n\n\n\n<li><strong>Gestion de projet côté Éditeur</strong>&nbsp;:&nbsp;<a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, avec l&rsquo;appui de&nbsp;<a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a></li>\n\n\n\n<li><strong>Direction de la documentation&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>,&nbsp;<a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>,&nbsp;<a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a>, avec l&rsquo;appui de <a href=\"https://profiles.wordpress.org/itsjustdj/\">D.J. Billings</a>,&nbsp;<a href=\"https://wordpress.org/support/users/codente/\">Jamie VanRaalte</a>,&nbsp;<a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>,&nbsp;<a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a>,&nbsp;<a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a></li>\n\n\n\n<li><strong>Direction marketing et communications :</strong>&nbsp;<a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>,&nbsp;<a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a>, avec l&rsquo;appui de&nbsp;<a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>,&nbsp;<a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a></li>\n\n\n\n<li><strong>Direction des tests&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, avec l&rsquo;appui de&nbsp;<a href=\"https://profiles.wordpress.org/annebovelett/\">Anne Bovelett</a>,&nbsp;<a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a></li>\n\n\n\n<li><strong>Direction artistique&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>,&nbsp;<a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, avec l&rsquo;appui de&nbsp;<a href=\"https://profiles.wordpress.org/allisonplus/\">Allison Tarr</a>,&nbsp;<a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a>,&nbsp;<a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a></li>\n\n\n\n<li><strong>Direction des performances&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a>, avec l&rsquo;appui de <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a></li>\n\n\n\n<li><strong>Direction de l&rsquo;équipe formation&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney P.K.</a>,&nbsp;<a href=\"https://profiles.wordpress.org/courane01/\">Courtney Roberston</a></li>\n\n\n\n<li><strong>Direction du design et du développement du nouveau thème natif&nbsp;:</strong> <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>,&nbsp;<a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Merci aux contributeurs et contributrices</h2>\n\n\n\n<p>WordPress 6.4 n’aurait pas pu sortir sans la contribution passionnée de <strong>plus de 600 personnes provenant d’au moins 56 pays différents</strong>.</p>\n\n\n\n<p>Un remerciement tout spécial pour les 170 personnes qui ont contribué au cœur de WordPress pour la première fois avec WP&nbsp;6.4 <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p class=\"has-black-color has-text-color has-background has-link-color wp-elements-23bf3eb260701f65a723efb24326985a\" style=\"background:linear-gradient(150deg,rgb(207,202,190) 0%,rgb(234,233,231) 100%);font-size:11px\"><a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aayusha/\">aayusha</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/omarabid/\">Abid Omar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ajmcfadyen/\">admcfajn</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/adrianduffell/\">adrianduffell</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aegkr/\">aegkr</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ahardyjpl/\">ahardyjpl</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ahmedgeek/\">Ahmed Hussein</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ajakaroth/\">ajakaroth</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/akihiroharai/\">Akihiro Harai</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/alexkingorg/\">Alex King</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/alishabajracharya27/\">Alisha Bajracharya</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/allisonplus/\">allisonplus</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/amedv/\">amedv</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/anlino/\">Anders Norén</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/oandregal/\">André</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/l1nuxjedi/\">Andrew Hutchings</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/askdesign/\">Anne Katzeff</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/anphira/\">anphira</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aplauche/\">Anton Plauche</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/arena/\">arena</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/armondal/\">Arnab Mondal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/azharckra/\">azharckra</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/balub/\">Balu B</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/barbmiller/\">barbmiller</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/basiliskan/\">Basilis Kanonidis</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/behoney/\">behoney</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/benharri/\">ben</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bengreeley/\">Ben Greeley</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ubernaut/\">Ben Hansen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/benimub/\">benimub</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/benjaminknox/\">benjaminknox</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bernhard%20reiter/\">Bernhard Reiter</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/binsaifullah/\">Binsaifullah</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bplv/\">Biplav</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bradley2083/\">Block Themes Pro</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bmalsht/\">bmalsht</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/crazyjaco/\">Bradley Jacobs</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bvreeman22/\">Brandon Vreeman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/trynet/\">Bud Kraus</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ceer/\">ceer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chasedsiedu/\">chased@si.edu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chipbennett/\">Chip Bennett</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/crunnells/\">Chris Runnells</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chrisdesrochers/\">chrisdesrochers</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney Patubo Kranzke</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/didierjm/\">cybeardjm</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cyberchicken/\">Cyberchicken</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/extendwings/\">Daisuke Takahashi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dajeema/\">Dajeema Rai</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/damonsharp/\">Damon Sharp</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dantovbein/\">Dan Tovbein</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/queerdevperson/\">Danielle Zarcaro</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/darkfate/\">darkfate</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/davelo/\">Dave Loodts</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dave03/\">dave03</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dfavor/\">David Favor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dawidurbanski/\">Dawid Urbanski</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/arnedb/\">De Belser Arne</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dhamibirendra/\">dhamibirendra</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/itsjustdj/\">DJ</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cais/\">Edward Caissie</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van&nbsp;Durpe</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/emailjoey/\">emailjoey</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/enodekciw/\">enodekciw</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/floydwilde/\">floydwilde</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/battelfred/\">Fredde Battel</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/fzhantw/\">fzhantw</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pauthake015/\">Ganesh Dahal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gnanasekaran/\">Gnanasekaran Loganathan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/90lines/\">GOZER</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gpotter/\">gpotter</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gregross/\">Greg Ross</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gregfuller/\">gregfuller</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/guss77/\">Guss77</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/poran766/\">H.M. Mushfiqur Rahman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hlunter/\">hlunter</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/incursadesigns/\">Incursa Designs</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/itecrs/\">itecrs</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ivanzhuck/\">Ivan Zhuck</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jaimieolmstead/\">jaimieolmstead</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jakemgold/\">Jake Goldman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bonkerz/\">James</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thelovelist/\">James Janco</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/james%20roberts/\">James Roberts</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/james0r/\">james0r</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jamiemchale/\">Jamie McHale</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/perrelet/\">Jamie Perrelet</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/codente/\">Jamie VanRaalte</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jane/\">jane</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/yari2u/\">Jari Vuorenmaa</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jastos/\">jastos</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeffeverhart383/\">Jeff Everhart</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jick/\">Jick</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jivygraphics/\">jivygraphics</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/duck_/\">Jon Cave</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/varjodesigns/\">Joona</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jordanpak/\">JordanPak</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joshcanhelp/\">joshcanhelp</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jrtashjian/\">JR Tashjian</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ashikur698/\">K M Ashikur Rahman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kalmang/\">Kalmang</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/bosskhj/\">Kamrul Hasan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/karlijnbk/\">Karlijn Bok</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/karmacharya50/\">karmacharya50</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kawsaralameven/\">kawsaralameven</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/p51labs/\">Kevin Miller</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kimannwall/\">Kim Coleman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/olein/\">Koji Kuno</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kovshenin/\">Konstantin Kovshenin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/kopila47/\">Kopila Shrestha</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/krokodok/\">krokodok</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ktaron/\">ktaron</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/labunchemjong/\">Labun Chemjong</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lhe2012/\">LarryWEB</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/laumindproductscomau/\">lau@mindproducts.com.au</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/launchinteractive/\">launchinteractive</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lada7042/\">Laura Adamonis</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/luckybhumkar/\">Laxmikant Bhumkar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lloydbudd/\">Lloyd Budd</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lunaluna/\">lunaluna</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/lyndauwp/\">lyndauwp</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pagelab/\">Márcio Duarte</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maciejmackowiak/\">maciejmackowiak</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mhimon/\">Mahbub Hasan Imon</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maahrokh/\">Mahrokh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mai21/\">Mai</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maltfield/\">maltfield</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/marcelle42/\">marcelle42</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/marcoevich/\">Marcoevich</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/masoudnkh/\">Masoud NKH</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mklute101/\">Matthaus Klute</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/matthewfarlymn/\">Matthew Farlymn</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mattheu/\">Matthew Haines-Young</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maxinacube/\">Maxwell Morgan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/maysi/\">maysi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hrshahin/\">Md HR Shahin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/meaganhanes/\">meagan hanes</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mer00x/\">mer00x</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/merel1988/\">merel1988</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mshowes/\">Michael Showes</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/michalooki/\">Michalooki</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/michelleblanchette/\">Michelle Blanchette</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/michi91/\">Michi91</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski – Gonzo</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mhshujon/\">Monir</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/webdev8800/\">Myles Taylor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nandhuraj/\">nandhuraj</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nazsabuz/\">Nazmul Sabuz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/neilorangepeel/\">Neil Hainsworth</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">niravsherasiya7707</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/okat/\">okat</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pannelars/\">pannelars</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/petrosparaskevopoulos/\">petrosparaskevopoulos</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/piyushdeshmukh/\">piyushdeshmukh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/plugindevs/\">Plugin Devs</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pranavjoshi/\">pranavjoshi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rlmc/\">r-c</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rebekowitz/\">Rebekah Markowitz</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/renyot/\">ren</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O’Rourke</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/robpetrin/\">robpetrin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ryanduff/\">Ryan Duff</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ohryan/\">Ryan Neudorf</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/samba45/\">samba45</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sarahwilliams889/\">sarahwilliams889</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/saulirajala/\">saulirajala</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/saxonfletcher/\">saxonfletcher</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/seedsca/\">Sergio Scabuzzo</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shiloey/\">shilo-ey</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shivashankerbhatta/\">Shiva Shanker Bhatta</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shresthaaman/\">shresthaaman</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shubhamsedani/\">Shubham Sedani</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sofiashendi/\">sofiashendi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/virtality-marketing-solutions/\">SourceView</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/stephenerdelyi/\">Steve Erdelyi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/stevejonesdev/\">Steve Jones</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/subodhsun/\">Subodh Sunuwar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sujichandran14/\">Suji K Chandran</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sumisubedi/\">Sumi Subedi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sunitarai/\">Sunita Rai</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/suprsam/\">suprsam</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/takayukister/\">Takayuki Miyoshi</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tejadev/\">tejadev</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thinkluke/\">thinkluke</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tibbsa/\">tibbsa</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/timdix/\">timdix</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tomybyte/\">Tom</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/thomashorta/\">Tom H</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tomluckies/\">tomluckies</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/toscho/\">toscho</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/rilwis/\">Tran Ngoc Tuan Anh</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/trinisha/\">Trinisha</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/trishasalas/\">Trisha Salas</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/tv-productions/\">TV productions</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/valentindu62/\">valentindu62</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/valmedia2023/\">Valerie Blackburn</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/vipuljnext/\">Vipul Ghori</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/webashrafians/\">webashrafians</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/whsajid/\">WHSajid</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wvega/\">Willington Vega</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/winterstreet/\">winterstreet</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/wyrfel/\">wyrfel</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/yosephtamang/\">Yoseph Tamang</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a>&nbsp;·&nbsp;<a href=\"https://profiles.wordpress.org/letraceursnork/\">Илья</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">Merci aux personnes ayant contribué à traduire WordPress&nbsp;6.4 en français</h3>\n\n\n\n<p>WordPress est un projet international et la version 6.4 est déjà complètement disponible dans plus de 70 langues différentes.</p>\n\n\n\n<p>Nous souhaitons remercier ici les personnes ayant participé à la traduction de WordPress 6.4 en français&nbsp;:</p>\n\n\n\n<p class=\"has-black-color has-text-color has-background has-link-color wp-elements-d500b1c10e58470623e88d20959e16d7\" style=\"background:linear-gradient(150deg,rgb(207,202,190) 0%,rgb(234,233,231) 100%)\"><a href=\"https://profiles.wordpress.org/wolforg\">Didier Demory</a>, <a href=\"https://profiles.wordpress.org/fxbenard\">FX</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jdy68\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/xibe\">Xavier Borderie</a>, <a href=\"https://profiles.wordpress.org/antoinepaufichet\">Antoine Paufichet</a>, <a href=\"https://profiles.wordpress.org/maigret\">Aurélien Denis</a>, <a href=\"https://profiles.wordpress.org/beryldlg\">Béryl de La Grandière</a>, <a href=\"https://profiles.wordpress.org/bonaldi\">Bonaldi</a>, <a href=\"https://profiles.wordpress.org/btpub\">Bruno Tritsch</a>, <a href=\"https://profiles.wordpress.org/charlie67p\">charlie67p</a>, <a href=\"https://profiles.wordpress.org/clementpolito\">Clément Polito</a>, <a href=\"https://profiles.wordpress.org/coralietixeront\">coralietixeront</a>, <a href=\"https://profiles.wordpress.org/dacobah\">dacobah</a>, <a href=\"https://profiles.wordpress.org/milouze\">Emil1</a>, <a href=\"https://profiles.wordpress.org/emlebrun\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/scoco\">Emilien M.</a>, <a href=\"https://profiles.wordpress.org/este1\">este1</a>, <a href=\"https://profiles.wordpress.org/gaeldenysiak\">Gael Denysiak</a>, <a href=\"https://profiles.wordpress.org/guillaumeturpin\">Guillaume TURPIN</a>, <a href=\"https://profiles.wordpress.org/jaz_on\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/leprincenoir\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/wplmillet\">Laurent MILLET</a>, <a href=\"https://profiles.wordpress.org/webaxones\">Loïc Antignac</a>, <a href=\"https://profiles.wordpress.org/oellin\">Magali</a>, <a href=\"https://profiles.wordpress.org/nuryko\">Marianna</a>, <a href=\"https://profiles.wordpress.org/chaton666\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marineevain\">Marine EVAIN</a>, <a href=\"https://profiles.wordpress.org/maxpertici\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/nandow\">nandow</a>, <a href=\"https://profiles.wordpress.org/nelsj5r\">Nels</a>, <a href=\"https://profiles.wordpress.org/nicolasricher\">Nicolas Richer</a>, <a href=\"https://profiles.wordpress.org/larrach\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/simonjanin\">Simon Janin</a>, <a href=\"https://profiles.wordpress.org/srossignol\">srossignol</a>, <a href=\"https://profiles.wordpress.org/spaceshipone\">Timothée Brosille</a>, <a href=\"https://profiles.wordpress.org/virgar\">Virginie Garnier</a> et <a href=\"https://profiles.wordpress.org/whaze\">whaze</a></p>\n\n\n\n<p>N’hésitez pas à&nbsp;<a href=\"https://fr.wordpress.org/team/handbook/\">rejoindre les équipes de contribution francophones&nbsp;!</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://fr.wordpress.org/2023/11/07/wordpress-6-4-shirley/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:76:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Guide des changements techniques de WordPress 6.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://fr.wordpress.org/2023/10/30/guide-des-changements-techniques-de-wordpress-6-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://fr.wordpress.org/2023/10/30/guide-des-changements-techniques-de-wordpress-6-4/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Oct 2023 22:30:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:5:\"Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2873\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"WordPress 6.4 sort dans une semaine ! Ce guide des changements techniques vous aidera à vous préparer à cette nouvelle version majeure du CMS.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:29422:\"\n<p>Ce guide décrit les principaux changements techniques que vous trouverez sur WordPress&nbsp;6.4, dont la sortie est prévue le 7 novembre 2023.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2023/10/wp64-banniere-guide-changements-techniques.png\"><img decoding=\"async\" width=\"1024\" height=\"572\" src=\"https://fr.wordpress.org/files/2023/10/wp64-banniere-guide-changements-techniques-1024x572.png\" alt=\"\" class=\"wp-image-2874\" srcset=\"https://fr.wordpress.org/files/2023/10/wp64-banniere-guide-changements-techniques-1024x572.png 1024w, https://fr.wordpress.org/files/2023/10/wp64-banniere-guide-changements-techniques-300x168.png 300w, https://fr.wordpress.org/files/2023/10/wp64-banniere-guide-changements-techniques-768x429.png 768w, https://fr.wordpress.org/files/2023/10/wp64-banniere-guide-changements-techniques.png 1492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">L&rsquo;équipe de direction de WordPress 6.4</a>&nbsp;et les contributrices et contributeurs du projet qui ont travaillé sur cette version souhaitent mettre en valeur à travers ce guide les avancées majeures proposées, parmi les <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.4&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">284 tickets</a> traités, dont <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.4&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">113 correspondent à des améliorations et nouvelles fonctionnalités</a>, tandis que <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=defect+(bug)&amp;milestone=6.4&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">134 tickets sont des corrections de bugs</a>, auxquels s&rsquo;ajoutent <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=task+(blessed)&amp;milestone=6.4&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">21 tâches diverses</a>.</p>\n\n\n\n<p>Cette version implémente par ailleurs <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~performance&amp;milestone=6.4&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">64 tickets ayant un focus sur les performances</a> et <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~accessibility&amp;milestone=6.4&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">17 sur l&rsquo;accessibilité</a>, tandis que <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~coding-standards&amp;milestone=6.4&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">33 tickets sont liés à la modernisation du code du CMS</a>.</p>\n\n\n\n<p>Le projet Gutenberg inclut quant à lui plus de <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">1400 <em>pull requests</em></a>, dont 420 correspondent à des améliorations, 445 à des correctifs de bugs et 42 à des améliorations de l&rsquo;accessibilité.</p>\n\n\n\n<p>Les modifications de WordPress 6.4 se répartissent dans 45 composants <em>Core</em>, et vous trouverez dans ce communiqué les modifications les plus impactantes, composant par composant.</p>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-background has-link-color wp-elements-6c0d769c72143285f7a28c717fcd52ef\" style=\"background:linear-gradient(135deg,rgb(0,0,0) 0%,rgb(57,57,131) 100%)\">En route pour un petit tour d’horizon des<br>nouveautés techniques de WordPress&nbsp;6.4&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Tous les liens de cet article pointent vers des notes de développement rédigées en anglais.</p>\n\n\n\n<p>L’objectif est de fournir un panorama général des changements techniques apportés par cette version, en français, puis de diriger les personnes qui souhaitent en savoir plus vers les notes de développement en anglais.</p>\n\n\n\n<p class=\"has-white-color has-text-color has-background has-link-color wp-elements-9f583c827bd068f0baf1f547423238d4\" style=\"background:linear-gradient(135deg,rgb(0,0,0) 0%,rgb(57,57,131) 100%)\">À noter : certaines modifications listées ici vont nécessiter des actions de la part des auteurs et autrices de thèmes et d’extensions, qui devront adapter ou modifier leur code. Si cela vous concerne, veuillez lire consciencieusement les notes de développement listées dans cet article afin de vous assurer que votre code fonctionnera avec WordPress 6.4 lorsque cette version sortira le 7 novembre 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Themes\">Changements sur l’éditeur de blocs</h2>\n\n\n\n<p>WordPress 6.4 implémente 6 versions de l&rsquo;extension Gutenberg&nbsp;: <a href=\"https://make.wordpress.org/core/2023/07/14/whats-new-in-gutenberg-16-2-12-july/\">16.2</a>, <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">16.3</a>, <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">16.4</a>, <a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\">16.5</a>, <a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">16.6</a>, et <a href=\"https://make.wordpress.org/core/2023/09/28/whats-new-in-gutenberg-16-7-27-september/\">16.7</a>. Vous trouverez une nouvelle API <code>Block Hooks</code> pour filtrer vos blocs, la possibilité de déclarer vos propres catégories de médias, des modifications sur le paquet <code>@wordpress/components</code>, des mises à jour des composants d’interface et de nombreuses autres modifications.</p>\n\n\n\n<p>L&rsquo;API&nbsp;<code>Block&nbsp;Hooks</code>&nbsp;(<a href=\"https://github.com/WordPress/gutenberg/issues/53987\">#53987</a>) est un mécanisme d&rsquo;extensibilité pour les thèmes basés sur des blocs. C&rsquo;est une première étape pour apporter aux thèmes basés sur des blocs le concept bien connu de crochets (en anglais <bdo lang=\"en\" dir=\"ltr\"><em>hooks</em></bdo>) qui permet d&rsquo;étendre les fonctionnalités des thèmes classiques avec des filtres et des actions.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"eCOpGmyU6E\"><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Introducing Block Hooks for dynamic blocks</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing Block Hooks for dynamic blocks&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/embed/#?secret=3cdpsA5tMk#?secret=eCOpGmyU6E\" data-secret=\"eCOpGmyU6E\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div><figcaption class=\"wp-element-caption\">La note de développement suivante présente quant à elle l&rsquo;API de déclaration de catégories de médias&nbsp;:</figcaption></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"zjr1yVUIwu\"><a href=\"https://make.wordpress.org/core/2023/10/16/new-registerinsertermediacategory-api/\">New `registerInserterMediaCategory` API</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;New `registerInserterMediaCategory` API&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/16/new-registerinsertermediacategory-api/embed/#?secret=mmOfruLFx0#?secret=zjr1yVUIwu\" data-secret=\"zjr1yVUIwu\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Un nombre important de modifications ont été apportées au paquet&nbsp;<code>@wordpress/components</code>&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"V5Lhksisv2\"><a href=\"https://make.wordpress.org/core/2023/10/16/editor-components-updates-in-wordpress-6-4/\">Updates to user-interface components in WordPress 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Updates to user-interface components in WordPress 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/16/editor-components-updates-in-wordpress-6-4/embed/#?secret=SLkxbtlqHh#?secret=V5Lhksisv2\" data-secret=\"V5Lhksisv2\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Il y a également beaucoup d&rsquo;autres modifications de l’éditeur, comme une nouvelle prise en charge des images d&rsquo;arrière-plan pour les blocs, la typographie fluide, la possibilité de désactiver globalement ou spécifiquement les options de mise en page des blocs à l&rsquo;aide du fichier <code>theme.json</code>, une API stabilisée pour les <code>Innerblocks</code>, et bien plus encore&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"0u3dYzIgLd\"><a href=\"https://make.wordpress.org/core/2023/10/17/miscellaneous-editor-changes-in-wordpress-6-4/\">Miscellaneous Editor changes in WordPress 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous Editor changes in WordPress 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/17/miscellaneous-editor-changes-in-wordpress-6-4/embed/#?secret=4tKgpn2kHx#?secret=0u3dYzIgLd\" data-secret=\"0u3dYzIgLd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Notifications sur l’administration</h2>\n\n\n\n<p>Deux nouvelles fonctions permettent une abstraction de la génération du balisage HTML afin de simplifier la maintenance, d&rsquo;encourager une plus grande cohérence et de permettre d&rsquo;activer le passage de paramètres et le fitrage des messages sur toutes les notifications employées sur l&rsquo;interface d&rsquo;administration de WordPress.</p>\n\n\n\n<p>Ces fonctions sont destinées au cœur du CMS lui-même mais leur utilisation est aussi recommandée aux personnes qui développent des extensions&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"So9AIeXux7\"><a href=\"https://make.wordpress.org/core/2023/10/16/introducing-admin-notice-functions-in-wordpress-6-4/\">Introducing admin notice functions in WordPress 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing admin notice functions in WordPress 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/16/introducing-admin-notice-functions-in-wordpress-6-4/embed/#?secret=ruXvcthj66#?secret=So9AIeXux7\" data-secret=\"So9AIeXux7\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Général</h2>\n\n\n\n<p>Une note de développement sera bientôt publiée afin de détailler une nouvelle fonction <code>wp_trigger_error()</code> qui vient en complément de la fonction préexistante <code>_doing_it_wrong()</code> (voir le ticket #57686).</p>\n\n\n\n<h2 class=\"wp-block-heading\">API HTML</h2>\n\n\n\n<p>WordPress 6.4 poursuit le développement de l’API <code>HTML</code> en introduisant un premier processeur HTML minimaliste comprenant le concept de fil d&rsquo;Ariane, et rend par exemple possible de rechercher des images étant enfants directs de élément <code>div</code> donné.</p>\n\n\n\n<p>6.4 ajoute également plusieurs fonctionnalités liées à CSS et aux classes dans le processeur de balises, ce qui rend possible de rechercher une balise contenant plus d&rsquo;un nom de classe, ou de rechercher une balise ne contenant pas un nom de classe spécifié.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"NQc948MBkD\"><a href=\"https://make.wordpress.org/core/2023/10/21/updates-to-the-html-api-in-6-4/\">Updates to the HTML API in 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Updates to the HTML API in 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/21/updates-to-the-html-api-in-6-4/embed/#?secret=FO06m0gdUe#?secret=NQc948MBkD\" data-secret=\"NQc948MBkD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Médias</h2>\n\n\n\n<p>Les nouvelles installations WordPress n’auront désormais plus de page de fichier attaché par défaut, la fonctionnalité étant maintenant désactivée complètement pour tous les nouveaux sites. Cela bénéficiera au référencement des sites en évitant de faire perdre du temps aux moteurs d&rsquo;indexations qui doivent indexer ces pages par défaut alors que ces pages ne sont souvent pas pertinentes pour les personnes visitant votre site.</p>\n\n\n\n<p>Cette modification introduit une nouvelle option<code> wp_attachment_pages_enabled</code> permettant de contrôler le comportement des pages de fichiers attachés pour les sites existants : </p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"skxKN6zjUR\"><a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">Changes to attachment pages</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Changes to attachment pages&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/embed/#?secret=K6ufsaECNL#?secret=skxKN6zjUR\" data-secret=\"skxKN6zjUR\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Améliorations des performances</h2>\n\n\n\n<p>Une grande partie des travaux sur WordPress 6.4 a tourné autour des améliorations de performances et d&rsquo;efficience du CMS, et en particulier sur la gestion du cache objet&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"m1QIxSmdfo\"><a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-object-caching-in-wordpress-6-4/\">Improvements to Object Caching in WordPress 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Improvements to Object Caching in WordPress 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/17/improvements-to-object-caching-in-wordpress-6-4/embed/#?secret=RR4Uq2FiXC#?secret=m1QIxSmdfo\" data-secret=\"m1QIxSmdfo\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Les nouvelles fonctions <code>get_options()</code>, <code>wp_prime_option_caches()</code>, et <code>wp_set_option_autoload_values()</code>&nbsp;permettent de mettre en place des solutions plus performantes lorsque l&rsquo;on récupère des options stockées en base de données&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"rgra6lLh1g\"><a href=\"https://make.wordpress.org/core/2023/10/17/new-option-functions-in-6-4/\">New option functions in 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;New option functions in 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/17/new-option-functions-in-6-4/embed/#?secret=KNCpZNpc2d#?secret=rgra6lLh1g\" data-secret=\"rgra6lLh1g\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Le chargement des fichiers modèles a également été amélioré&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"mJ2QXU5yip\"><a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">Improvements to Template Loading in WordPress 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Improvements to Template Loading in WordPress 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/embed/#?secret=Tg8enG23lY#?secret=mJ2QXU5yip\" data-secret=\"mJ2QXU5yip\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Chargement des images</h3>\n\n\n\n<p>Plusieurs améliorations ont été faites sur la fonction <code>wp_get_loading_optimization_attributes()</code>, qui fournit un lieu unique pour gérer l&rsquo;optimisation des attributs de gestion du chargement, tout spécialement concernant les images et les iframes.&nbsp; </p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"rycL52lgbs\"><a href=\"https://make.wordpress.org/core/2023/10/18/image-loading-optimization-enhancements-in-6-4/\">Image loading optimization enhancements in 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Image loading optimization enhancements in 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/18/image-loading-optimization-enhancements-in-6-4/embed/#?secret=q3SjCAvF6i#?secret=rycL52lgbs\" data-secret=\"rycL52lgbs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Chargement des scripts</h3>\n\n\n\n<p>À partir de WordPress 6.4, des stratégies de chargement des scripts seront employées pour les scripts chargés par le cœur du CMS ou par les thèmes natifs de WordPress sur l&rsquo;interface publique (en anglais <em><bdo lang=\"en\" dir=\"ltr\">front-end</bdo></em>) de vos sites. La plupart du temps, la stratégie de chargement <code>defer</code> est utilisée puisqu&rsquo;elle est la plus cohérente dans son comportement de chargement à partir du moment où l’attribut <code>defer</code> s&rsquo;exécute toujours une fois que le <abbr lang=\"en\" dir=\"ltr\" title=\"Document Object Model\">DOM</abbr> est chargé. Un script utilisant l&rsquo;attribut <code>async</code> pourrait de son côté bloquer le rendu du script s&rsquo;il est déjà mis en cache. Par ailleurs, le chargement à l&rsquo;aide de <code>defer</code> a été déplacé du pied du document en direction de la partie <code>&lt;head&gt;</code> afin que les ressources concernées soient identifiées le plus tôt possible lors du chargement de la page, et que la stratégie de chargement soit appliquée le plus tôt possible.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"3lzb8vkoPF\"><a href=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/\">Script loading changes in WordPress 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Script loading changes in WordPress 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/embed/#?secret=GqrmbugFi5#?secret=3lzb8vkoPF\" data-secret=\"3lzb8vkoPF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Chargement des feuilles de styles</h3>\n\n\n\n<p>La note de développement suivante détaille les modifications faites sur le chargement des feuilles de styles. Le focus principal porte sur le remplacement des balises <code>style</code>&nbsp;affichées via l&rsquo;action <code>wp_head</code>&nbsp;avec des appels à la fonction&nbsp;<code>wp_add_inline_style()</code>&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"xdp3DZFyHv\"><a href=\"https://make.wordpress.org/core/2023/10/17/replacing-hard-coded-style-tags-with-wp_add_inline_style/\">Replacing hard-coded style tags with wp_add_inline_style()</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Replacing hard-coded style tags with wp_add_inline_style()&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/17/replacing-hard-coded-style-tags-with-wp_add_inline_style/embed/#?secret=0ls6rnySpJ#?secret=xdp3DZFyHv\" data-secret=\"xdp3DZFyHv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Autres améliorations concernant les performances</h3>\n\n\n\n<ul>\n<li>Des gains significatifs ont été obtenus en introduisant une gestion du cache objet dans la nouvelle méthode&nbsp;<code>WP_Theme::get_block_patterns()</code>.</li>\n\n\n\n<li>Des vérifications non indispensables ont été retirées sur l&rsquo;API <code>Themes</code>. Ces vérifications portaient sur la correspondance entre le répertoire de la feuille de styles du thème courant et le répertoire des fichiers modèles.</li>\n\n\n\n<li>Une nouvelle méthode <code>WP_Theme::get_block_template_folders()</code> améliore quand à elle les performances de la fonction <code>get_block_theme_folders()</code> et la gestion des erreurs. La vérification des modèles de blocs au sein des thèmes est ainsi plus rapide.</li>\n\n\n\n<li>Taxonomies&nbsp;: une double sanitisation de la fonction <code>get_term</code> a été retirée. Ce changement retire des appels inutiles à <code>sanitize_term</code>, ce qui améliore les performances de la fonction (<a href=\"https://core.trac.wordpress.org/ticket/58329\">ticket #58329</a>).</li>\n\n\n\n<li>Thèmes&nbsp;: les constantes&nbsp;<code>TEMPLATEPATH</code>&nbsp;et&nbsp;<code>STYLESHEETPATH</code>&nbsp;on été dépréciées. Les fonctions&nbsp;<code>get_template_directory()</code>&nbsp;et&nbsp;<code>get_stylesheet_directory()</code>&nbsp;doivent maintenant être utilisées à la place (<a href=\"https://core.trac.wordpress.org/ticket/18298\">ticket #18298</a>).</li>\n</ul>\n\n\n\n<p>Globalement, WordPress 6.4 présente de meilleures performances et les développeur·euses apprécieront la réduction de la charge pesant sur les processus d&rsquo;entrée/sortie.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Autres changements techniques</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Comptes</h3>\n\n\n\n<p>WordPress 6.4 apporte plusieurs améliorations importantes au balisage HTML de la page <code>wp-login.php</code>&nbsp;pour rendre sa structure plus optimale et pour faciliter la mise en forme de cette page pour les personnes qui souhaitent la personnaliser (<a href=\"https://core.trac.wordpress.org/ticket/30685\">ticket #30685</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Clarification des liens <bdo lang=\"en\" dir=\"ltr\">« Add New »</bdo> pour une meilleure accessibilité de l’administration</h3>\n\n\n\n<p>À partir de WordPress 6.4, les valeurs par défaut du libellé <code>add_new</code> utilisé dans les types de publications personnalisés ont été modifiées afin d&rsquo;y intégrer le nom du type de publication. Cela apporte une correspondance avec le libellé <code>add_new_item</code> et fournit un meilleur contexte ce qui améliore l&rsquo;accessibilité des boutons et liens présents dans l&rsquo;interface d&rsquo;administration (<a href=\"https://core.trac.wordpress.org/ticket/47125\">ticket #47125</a>).</p>\n\n\n\n<p>Si vous utilisiez auparavant la déclaration suivante&nbsp;: <br><code>\'add_new\' =&gt; _x( \'Add New\', \'Book\', \'my-plugin\' )</code><br><br>alors nous vous encourageons à la remplacer par :<br><code>\'add_new\' =&gt; __( \'Add New Book\', \'my-plugin\' )</code></p>\n\n\n\n<h3 class=\"wp-block-heading\">Modifications des prérequis pour les tests d&rsquo;intégration</h3>\n\n\n\n<p><bdo lang=\"en\" dir=\"ltr\">PHPUnit Polyfills</bdo> version 1.1.0 est requis pour faire tourner des tests d&rsquo;intégration sur WordPress 6.4 (<a href=\"https://core.trac.wordpress.org/ticket/59510\">ticket #59510</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">API HTTP</h3>\n\n\n\n<p>Les classes, méthodes et filtres de <code>WP_Http_Curl</code>&nbsp;et&nbsp;<code>WP_Http_Streams</code>&nbsp;ont été dépréciés car ces classes ne sont plus utilisées dans le cœur de WordPress depuis l&rsquo;implémentation de la bibliothèque <code>Request</code> (<a href=\"https://core.trac.wordpress.org/ticket/58705\">ticket #58705</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Révisions</h3>\n\n\n\n<p>Les révisions sont maintenant utilisables sur les champs personnalisés des publications (<a href=\"https://core.trac.wordpress.org/ticket/20564\">ticket #20564</a>)&nbsp;: </p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"7LJ1HvQcY9\"><a href=\"https://make.wordpress.org/core/2023/10/24/framework-for-storing-revisions-of-post-meta-in-6-4/\">Framework for storing revisions of Post Meta in 6.4</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Framework for storing revisions of Post Meta in 6.4&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/10/24/framework-for-storing-revisions-of-post-meta-in-6-4/embed/#?secret=YnNkuFb3KA#?secret=7LJ1HvQcY9\" data-secret=\"7LJ1HvQcY9\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p class=\"has-white-color has-text-color has-background has-link-color wp-elements-14da766d1f09ca850985b43024f4cbf9\" style=\"background:linear-gradient(135deg,rgb(0,0,0) 0%,rgb(57,57,131) 100%)\">Que vous développiez des thèmes ou des extensions, pensez à tester et retester votre code pour vous assurer de sa compatibilité avec ces changements. Vous pouvez utiliser&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\" rel=\"noreferrer noopener\">l’extension Beta Tester</a>&nbsp;sur un site de test pour vérifier la compatibilité de vos développements avec la version de test <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-2/\">WordPress 6.4&nbsp;Release Candidate&nbsp;2</a>.&nbsp;Nous comptons sur vous pour vérifier que votre code fonctionne correctement avec le cœur du CMS, pour le bien des millions d’utilisateurs et utilisatrices de WordPress&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Ce guide a été traduit et réadapté à partir du <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\"><em>Field Guide</em> de WP 6.4</a> par <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://fr.wordpress.org/2023/10/30/guide-des-changements-techniques-de-wordpress-6-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Questionnaire annuel sur votre utilisation de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://fr.wordpress.org/2023/10/10/questionnaire-annuel-sur-votre-utilisation-de-wordpress-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://fr.wordpress.org/2023/10/10/questionnaire-annuel-sur-votre-utilisation-de-wordpress-2023/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Oct 2023 13:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Questionnaires/sondages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2852\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"Comme chaque année, l’équipe «&#160;Community&#160;» soumet un petit questionnaire à l&#8217;ensemble de la communauté WordPress. En effet, votre voix compte&#160;! Si vous êtes un utilisateur ou une utilisatrice de WordPress, si vous concevez des sites avec ce CMS, si vous développez des thèmes ou des extensions, si vous contribuez à la traduction, si vous participez [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jenny Dupuy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6355:\"\n<p>Comme chaque année, l’équipe «&nbsp;<a href=\"https://make.wordpress.org/community/\" data-type=\"link\" data-id=\"https://make.wordpress.org/community/\">Community</a>&nbsp;» soumet un petit questionnaire à l&rsquo;ensemble de la communauté WordPress.</p>\n\n\n\n<p><strong>En effet, votre voix compte&nbsp;!</strong> Si vous êtes un utilisateur ou une utilisatrice de WordPress, si vous concevez des sites avec ce CMS, si vous développez des thèmes ou des extensions, si vous contribuez à la traduction, si vous participez au développement du cœur de WordPress ou à sa communauté, alors vous êtes concerné·e·s par ce questionnaire.</p>\n\n\n\n<p>Les principales conclusions et tendances qui émergent de ce questionnaire sont communiquées dans la conférence annuelle&nbsp;<em><strong>State of the Word</strong></em>, puis partagées dans les blogs publics du projet et auront une influence sur la direction stratégique du projet dans les années à venir.</p>\n\n\n\n<p>En d‘autres termes, cette enquête aidera celles et ceux qui construisent WordPress à mieux comprendre comment le logiciel est utilisé et par qui. L‘enquête permet également aux responsables du projet open source WordPress d‘en savoir plus sur les expériences des personnes qui contribuent au projet.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-3 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://survey.alchemer.com/s3/7439442/2023-WordPress-Annual-Survey\" target=\"_blank\" rel=\"noreferrer noopener\">C’est parti ! Je remplis le questionnaire 2023</a></div>\n</div>\n\n\n\n<p>Le questionnaire est disponible en différentes langues, dont le français, merci aux contributeurs polyglotes pour leurs traductions.</p>\n\n\n\n<p>L’enquête est ouverte pour cinq semaines et les résultats seront publiés début décembre sur le <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/\" data-type=\"link\" data-id=\"https://wordpress.org/news/\" target=\"_blank\">blog News</a>.</p>\n\n\n\n<p>Cette année, comme l’année dernière, l’enquête a fait l’objet de quelques améliorations au niveau du déroulement et de l’ensemble des questions. Une nouvelle plateforme est également à l’essai, offrant une interface actualisée, un support multilingue amélioré, des outils d’analyse et de visualisation des résultats élargis, et bien plus encore. La nouvelle plateforme intègre également des contrôles d’accessibilité et de confidentialité, ce qui garantit que l’enquête répond aux divers besoins de la communauté WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Passez le mot</h2>\n\n\n\n<p>Aidez-nous à faire connaître l’enquête en la partageant avec votre réseau, via Slack, ou sur vos comptes de médias sociaux. Plus il y aura de personnes qui répondront à l’enquête et qui partageront leur expérience avec WordPress, plus le projet en bénéficiera.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sécurité et vie privée</h2>\n\n\n\n<p>La sécurité et la confidentialité des données sont primordiales pour le projet et la communauté WordPress. Dans cette optique, toutes les données seront anonymisées : aucune adresse e-mail ou adresse IP ne sera associée aux résultats publiés. Pour en savoir plus sur les pratiques de WordPress.org en matière de confidentialité, consultez la <a href=\"https://wordpress.org/about/privacy/\" data-type=\"link\" data-id=\"https://wordpress.org/about/privacy/\">politique de confidentialité (en anglais)</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Merci</h2>\n\n\n\n<p>Nous remercions les contributeurs WordPress suivants pour leur aide dans le projet d’enquête annuelle, y compris la création des questions, la stratégie, l’élaboration de l&rsquo;enquête et la traduction :</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein/\">adamsilverstein</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/alvarogois/\">alvarogóis</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschi</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbénard</a>, <a href=\"https://profiles.wordpress.org/hassantafreshi/\">hassantafreshi</a>, <a href=\"https://profiles.wordpress.org/juliagasparyan/\">juliagasparyan</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">kittmedia</a>, <a href=\"https://profiles.wordpress.org/manudavidos/\">manudavidos</a>,<a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nilovelez/\">nilovelez</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a> et <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner</a>.</p>\n\n\n\n<p>Merci à&nbsp;<a href=\"https://www.hostinger.com/\">Hostinger</a>,&nbsp;<a href=\"https://cloud.jetpack.com/\">Jetpack</a>, and&nbsp;<a href=\"http://wordpress.com/\">WordPress.com</a>, pour avoir contribué à la promotion de l’enquête auprès de leurs clients respectifs.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://survey.alchemer.com/s3/7439442/2023-WordPress-Annual-Survey\" target=\"_blank\" rel=\"noreferrer noopener\">C’est parti ! Je remplis le questionnaire 2023</a></div>\n</div>\n\n\n\n<p>L’enquête sera close le <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20231031T1600\"><time datetime=\"2023-10-31T16:00:00-04:00\">mardi 31 octobre 2023 à 17:00 UTC+1</time></a>.</p>\n\n\n\n<p>Merci à <a href=\"https://profiles.wordpress.org/audrasjb\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/audrasjb\">JB Audras</a> et <a href=\"https://profiles.wordpress.org/fxbenard/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/fxbenard/\">FX Bénard</a> pour leur relecture de cet article.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://fr.wordpress.org/2023/10/10/questionnaire-annuel-sur-votre-utilisation-de-wordpress-2023/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"WordPress 6.3 « Lionel »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://fr.wordpress.org/2023/08/08/wordpress-6-3-lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://fr.wordpress.org/2023/08/08/wordpress-6-3-lionel/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 22:03:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2817\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:424:\"Nous vous présentons WordPress 6.3 «&#160;Lionel&#160;», nommé après la jazzman américain&#160;Lionel Hampton. Il fut un vibraphoniste, pianiste et percussionniste de jazz prolifique et obtint sa notoriété en jouant avec des grands du jazz comme&#160;Charles Mingus&#160;ou&#160;Quincy Jones, et en tant que leader du Lionel Hampton Orchestra. Ses travaux ont été récompensés par un Grammy, une étoile [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:66474:\"\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image.png\"><img decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image-1024x683.png\" alt=\"\" class=\"wp-image-2834\" srcset=\"https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image-1024x683.png 1024w, https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image-300x200.png 300w, https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image-768x512.png 768w, https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image-1536x1024.png 1536w, https://fr.wordpress.org/files/2023/08/6.3-Release-Edition-Main-Image-2048x1365.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Nous vous présentons WordPress 6.3 «&nbsp;Lionel&nbsp;», nommé après la jazzman américain&nbsp;<a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>. Il fut un vibraphoniste, pianiste et percussionniste de jazz prolifique et obtint sa notoriété en jouant avec des grands du jazz comme&nbsp;<a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a>&nbsp;ou&nbsp;<a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a>, et en tant que <bdo lang=\"en\" dir=\"ltr\">leader</bdo> du <em><bdo lang=\"en\" dir=\"ltr\">Lionel Hampton Orchestra</bdo></em>. Ses travaux ont été récompensés par un <em><bdo lang=\"en\" dir=\"ltr\">Grammy</bdo></em>, une étoile sur le <bdo lang=\"en\" dir=\"ltr\"><em>Hollywood Walk of Fame</em></bdo>, et la <em><bdo lang=\"en\" dir=\"ltr\">National Medal of Arts</bdo></em> américaine.</p>\n\n\n\n<p>Avec WordPress 6.3, vous pourrez créer de beaux sites web plus efficacement que jamais. Que vous souhaitiez créer un site complet sans coder ou que vous cherchiez à personnaliser chaque détail avec votre propre code, WordPress 6.3 a quelque chose à vous offrir.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>«&nbsp;Lionel&nbsp;» marque un chapitre majeur dans l’évolution de WordPress. C’est le point culminant d’années de travail par des centaines de contributeurs et contributrices pour faire évoluer l’expérience d’édition de votre site WordPress vers davantage de cohérence, à l’aide des blocs. Mais notre quête de vouloir démocratiser la publication sur le web n’est pas finie pour autant&nbsp;!</p>\n<cite><strong>Matías Ventura, Directeur de la version 6.3</strong></cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill has-medium-font-size\"><a class=\"wp-block-button__link has-vivid-cyan-blue-background-color has-background wp-element-button\" href=\"https://fr.wordpress.org/download/\" style=\"border-radius:0px;padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)\">Télécharger WordPress 6.3 «&nbsp;Lionel&nbsp;»</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Bienvenue sur WordPress 6.3</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Tout faire dans l’Éditeur de site</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh3.googleusercontent.com/ECKi32pUTHxKbtb7u2yXNt9VgtbETFiOhEXsmkTg-kwtTWz6Hors0QmayvKH57LONBPvrztSU29SIOYyUeMQJFfbZ3sHeml1bPGVyqHtMtgjCFv8yVkUhkxBYZhf2ZiKNW_GgbcT_SZ9tAkQjyxe1_c\" alt=\"\" /></figure>\n\n\n\n<p>WordPress 6.3 rassemble pour la première fois votre contenu, vos modèles et vos compositions dans l’éditeur de site. Ajoutez des pages, parcourez les variations de styles, créez des compositions synchronisées et bénéficiez d’un contrôle précis sur vos menus de navigation. Vous ne perdrez plus de temps à passer d’une zone de site à l’autre, et vous pourrez vous concentrer sur ce qui compte le plus. De la création à la publication, en un seul endroit.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Prévisualiser les thèmes basés sur des blocs</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh6.googleusercontent.com/tqCEcJeH36DRnaTb-clxC54AoEYEy-GVea8AGiDU8_F5Z98x_DdllvuYVLNacitS3uS4Oy3fEzs3u_ESELe2K5KF2tX_ikroxHe9sanJ5pYVhVnoAnG_mtcrRmUFXTx5ug1Bl2YwwPvnBRZj-fHrym8\" alt=\"\" /></figure>\n\n\n\n<p>Expérimentez les thèmes basés sur des blocs avant de les choisir et prévisualisez l’éditeur de site, avec des options à personnaliser directement avant d’activer un nouveau thème.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Créez et synchronisez vos compositions</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh3.googleusercontent.com/rdzZc0SGnFQ188wmNqBhUMpq3fStbcUlZzSM_DwWdNgM-0fALWPWEzMfjCuOsLqpw6uNcI1i1AAiiDiLnHWSSVO3TtliLD2QNkhGuQ1qpaogZ3RrNHAtSG_85ai4zqZk2fF2ae7AEnliDWxRpf1ocDA\" alt=\"\" /></figure>\n\n\n\n<p>Disposez les blocs avec un nombre infini de variantes et enregistrez-les en tant que compositions pour les utiliser sur l’ensemble de votre site. Vous pouvez même indiquer si vous souhaitez synchroniser vos compositions (précédemment appelés «&nbsp;blocs réutilisables&nbsp;») afin qu’une modification s’applique à toutes les parties de votre site. Vous pouvez également garder la possibilité de personnaliser chaque instance.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Travaillez plus rapidement avec la palette de commandes</h2>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh3.googleusercontent.com/IASpGRTrnrOzs4pvDPgEKqMQwuXNJRBqbDRHXlzLmvcsKvlIv_D2Iax_IzZ0eP15i2Xq8YDo288lB9WJGjbk_aceRQgDZGBMgMOzcPxG3L4xo92aGqlb9nbqdup6Qwt3vISHCz4wjylYAgGJwLdwbpw\" alt=\"\" /></figure>\n\n\n\n<p>Basculez sur un modèle spécifique ou ouvrez les préférences de votre éditeur à l’aide d’un nouvel outil qui vous aide à naviguer rapidement dans les fonctionnalités étendues. Grâce à de simples raccourcis clavier (⌘+k sur Mac ou CTRL+k sur Windows), en cliquant sur l’icône de recherche de la colonne latérale de l’éditeur de site, ou en cliquant sur la barre de titre, vous pouvez vous rendre où vous voulez et faire ce que vous voulez en quelques secondes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><br>Affinez vos designs avec de nouveaux outils</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh3.googleusercontent.com/C44Qs_vplLP0rB_ZUERqipYWXuFzdnvu8nxmz6EpUW3vyXnWbfbfwbvYvzfaQyu24F7nxRjKossThzuXqJNKnUyQBjShITCVwhhKYUhwa14UyL2JwVn7D71zV0yyZVYm7ASyRO1whyHfOT4zgqFpizQ\" alt=\"\" /></figure>\n\n\n\n<p>Les nouveaux réglages de design offrent une plus grande polyvalence pour affiner vos mises en pages, à commencer par la possibilité de personnaliser les styles de vos légendes à partir de l’interface des styles, sans codage. Vous pouvez gérer vos filtres duotone dans les réglages de style et choisir parmi les options fournies par votre thème, mais aussi les désactiver complètement. Le bloc Bannière bénéficie de réglages supplémentaires pour la couleur du texte, les réglages de mise en page et de bordure, ce qui rend ce bloc puissant encore plus pratique.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Suivez vos modifications de design avec les révisions de styles</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh3.googleusercontent.com/1al2dPJV09Plk8suFtnJI81L754Jl6QCq30_UTbGJ9ln0zJ3ig8BEIVU_BX8zRvZst8KUFxr6ny7Ohv3lNEgp4cZruSdrcuZjT8efmIifW1G3-lP4H4J1qWhby9RfCUSBaMmarBqwM3Kp22m-38hesc\" alt=\"\" /></figure>\n\n\n\n<p>Vous pouvez désormais voir à quoi ressemblait votre site à un moment précis. Visualisez ces révisions sur une chronologie et accédez à une option de restauration des styles antérieurs en un seul clic.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Annotez vos publications avec le bloc «&nbsp;Notes de bas de page&nbsp;»</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh4.googleusercontent.com/94NEMrm0MHPM8QtVzM1W61Pz452Jgp_xzDhHR-35QgOlkABny_gzjmTh-Z-ij8cAH8C_rp0ggLp2VB5AAOtCwJrTJ4Q6rUpehnL-tFxnTw75AaMVInZfChWg2VudW6yKUthshxnQLM3xmQmtmDnFexs\" alt=\"\" /></figure>\n\n\n\n<p>Les notes de bas de page ajoutent des annotations pratiques à votre contenu. Vous pouvez désormais ajouter et lier des notes de bas de page à n’importe quel mot d’un paragraphe.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Affichez ou masquez du contenu avec le bloc Détails</h3>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://lh5.googleusercontent.com/Ed5esxwS6U5Z3sBWkeV7ZuNau-izTZQqwxzz6F0ww9qx4XnyqKVT8JZTP0eahDDO73psW7gOxz3KghGyBOeuNW5L3LKw0MJAeISUhAtvqNyThT1Or8gybCIJGhHFyh6njVun5_KumEkMoR5cgXBK_-Q\" alt=\"\" /></figure>\n\n\n\n<p>Utilisez ce bloc pour éviter de divulgâcher une surprise, pour créer une section de foire aux questions interactive, ou pour masquer un long paragraphe derrière un titre.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Amélioration des performances</h3>\n\n\n\n<p>WordPress 6.3 contient plus de <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170 mises à jour de performances (en anglais)</a>, comprenant la prise en charge des attributs&nbsp;<code>defer</code>&nbsp;et&nbsp;<code>async</code>&nbsp;pour l’API Scripts et&nbsp;<code>fetchpriority</code>&nbsp;pour les images. Avec les évolutions concernant la résolution des modèles de blocs, le chargement différé des images et le chargement des emojis, ces améliorations peuvent diminuer le temps de chargement de votre site web tel qu’il est perçu par les visiteurs.</p>\n\n\n\n<h3 class=\"wp-block-heading\">L‘accessibilité reste une priorité</h3>\n\n\n\n<p>Avec plus de 50 améliorations de l’accessibilité sur l’ensemble de la plateforme, WordPress 6.3 est plus accessible que jamais. L’amélioration des libellés, l’optimisation de la navigation par onglets et par touches fléchées, la révision de la hiérarchie des titres et les nouveaux contrôles dans l’éditeur d’images de l’administrateur permettent aux personnes qui utilisent des technologies d’assistance d’administrer plus facilement leur site.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Autres améliorations</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Définir les proportions de taille des images</h4>\n\n\n\n<p>Spécifiez vos proportions et assurez l’intégrité de la conception, en particulier lorsque vous utilisez des images dans des compositions.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Construire son site sans distraction</h4>\n\n\n\n<p>La conception sans distraction est désormais disponible dans l’Éditeur de site.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Redécouvrez la barre d’outils supérieure</h4>\n\n\n\n<p>La barre d’outils supérieure remaniée propose des sélecteurs de parents pour les blocs imbriqués, des options pour la sélection de plusieurs blocs, ainsi qu’une nouvelle interface intégrée à la barre de titre avec de nouvelles fonctionnalités à l’esprit.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Améliorations de la vue de la liste</h4>\n\n\n\n<p>Faites un glisser-déposer vers un autre emplacement et supprimez les blocs de votre choix dans la vue en liste mise à jour en temps réel.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Construire des modèles grâce aux compositions</h4>\n\n\n\n<p>Créez des compositions uniques pour accélérer la création de modèles grâce à une nouvelle fenêtre modale permettant d’accéder à la sélection des compositions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">En savoir plus sur WordPress 6.3</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress (en anglais)</a>&nbsp;est une ressource gratuite pour les utilisateurs/utilisatrices de WordPress, qu’ils/elles soient débutant·e·s ou expérimenté·e·s. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des&nbsp;<a href=\"https://learn.wordpress.org/online-workshops/\">évènements interactifs (en anglais)</a>&nbsp;pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress.</p>\n\n\n\n<p>Consultez notre&nbsp;<a href=\"https://fr.wordpress.org/2023/07/18/guide-des-changements-techniques-de-wordpress-6-3/\">guide des changements techniques introduits par WordPress 6.3</a>. Il contient toutes les notes techniques que vous devez connaître si vous développez sur WordPress.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/wordpress-version/version-6-3/\">Consultez les notes de version de WordPress 6.3 (en anglais)</a>&nbsp;pour obtenir plus d’informations sur les améliorations proposées et les anomalies corrigées, les informations d’installation, les notes et ressources à destination des développeuses et des développeurs, connaître les personnes ayant contribué à cette version et pour obtenir la liste des fichiers modifiés.</p>\n\n\n\n<h3 class=\"wp-block-heading\">L’équipe de direction de WordPress 6.3</h3>\n\n\n\n<p>Voici l’équipe qui a coordonné le développement et la sortie cette nouvelle version de WordPress&nbsp;:</p>\n\n\n\n<ul>\n<li><strong>Direction générale&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li><strong>Coordination de la version&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>,&nbsp;<a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li><strong>Direction technique du cœur WP&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a></li>\n\n\n\n<li><strong>Direction technique de l’éditeur&nbsp;:</strong>&nbsp;&nbsp;<a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li><strong>Gestion de projet côté Cœur WP&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>,&nbsp;<a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li><strong>Gestion de projet côté Éditeur&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>,&nbsp;<a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li><strong>Direction de la documentation&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>,&nbsp;<a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>,&nbsp;<a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>,&nbsp;<a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li><strong>Direction marketing &amp; communication&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>,&nbsp;<a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li><strong>Direction des tests&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>,&nbsp;<a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>,&nbsp;<a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a></li>\n\n\n\n<li><strong>Direction du design&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>,&nbsp;<a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li><strong>Responsables des performances&nbsp;:</strong>&nbsp;<a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>,&nbsp;<a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Merci aux contributeurs et contributrices</h3>\n\n\n\n<p>WordPress 6.3 n’aurait pas pu sortir sans la contribution passionnée de plus de 650 personnes provenant d’au moins 52 pays différents. Un remerciement tout spécial pour les 207 personnes qui ont contribué au cœur de WordPress pour la première fois avec WP 6.3 <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p style=\"font-size:11px\"><a href=\"https://profiles.wordpress.org/254volkan/\">254volkan</a> · <a href=\"https://profiles.wordpress.org/mercime/\">@mercime</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/aeg0125/\">Aaron Graham</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abidhasan112/\">Abid Hasan</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/abtop/\">ABTOP</a> · <a href=\"https://profiles.wordpress.org/ace100/\">ace100</a> · <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/admwgn/\">Adam Wiltgen</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> · <a href=\"https://profiles.wordpress.org/adityaarora010196/\">adityaarora010196</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/ajmaurya/\">Ajay Maurya</a> · <a href=\"https://profiles.wordpress.org/ajayver/\">ajayver</a> · <a href=\"https://profiles.wordpress.org/seakashdiu/\">Akash Mia</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> · <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a> · <a href=\"https://profiles.wordpress.org/albarin/\">albarin</a> · <a href=\"https://profiles.wordpress.org/alberuni-azad/\">Alberuni Azad.</a> · <a href=\"https://profiles.wordpress.org/alecgeatches/\">alecgeatches</a> · <a href=\"https://profiles.wordpress.org/aleksganev/\">Aleks Ganev</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alvastar/\">alvastar</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/amirrezatm/\">amirrezatm</a> · <a href=\"https://profiles.wordpress.org/amitbarai013/\">Amit Barai Alit</a> · <a href=\"https://profiles.wordpress.org/paulamit/\">Amit Paul</a> · <a href=\"https://profiles.wordpress.org/anantajitjg/\">Anantajit JG</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andreaboe/\">andreaboe</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/apmatthe/\">Andrew Matthews</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/aparnajl/\">Aparna Adhun</a> · <a href=\"https://profiles.wordpress.org/arrasel403/\">AR Rasel</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aravindajith/\">Aravind Ajith</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arnolp/\">arnolp</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashrafulsarkar/\">Ashraful Sarkar Naiem</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bart/\">Bart</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benish74/\">benish74</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a> · <a href=\"https://profiles.wordpress.org/bgin/\">bgin</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bjorn2404/\">Bjorn Holine</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/bonjour52/\">bonjour52</a> · <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/buutqn/\">buutqn</a> · <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> · <a href=\"https://profiles.wordpress.org/mcaskill/\">Chauncey McAskill</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chocofc1/\">chocofc1</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/chrisbaltazar/\">chrisbaltazar</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/chrystl/\">Chrystl</a> · <a href=\"https://profiles.wordpress.org/ckanderson22/\">ckanderson22</a> · <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a> · <a href=\"https://profiles.wordpress.org/cnspecialcolor/\">cnspecialcolor</a> · <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a> · <a href=\"https://profiles.wordpress.org/codingchicken/\">Coding Chicken</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">Cory Birdsong</a> · <a href=\"https://profiles.wordpress.org/craigfrancis/\">Craig Francis</a> · <a href=\"https://profiles.wordpress.org/craiglpeters/\">craiglpeters</a> · <a href=\"https://profiles.wordpress.org/geisthanen/\">Creative Andrew</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dalirajab/\">dali-rajab</a> · <a href=\"https://profiles.wordpress.org/dalleyne/\">Damien Alleyne</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/wirecat/\">Daniel Johnson</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine (AxePress)</a> · <a href=\"https://profiles.wordpress.org/davefx/\">David Marín Carreño</a> · <a href=\"https://profiles.wordpress.org/dperonne/\">David Péronne</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dennisatyoast/\">Dennis Claassen</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/devanshijoshi/\">Devanshi Joshi</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doctorlai/\">doctorlai</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donncha/\">Donncha O Caoimh (a11n)</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">DSIGNED</a> · <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a> · <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/emanuelx/\">emanuelx</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/edanzer/\">Erick Danzer</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> · <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fosuahmed/\">Faisal Ahmed</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fasuto/\">fasuto</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/felipelavinz/\">Felipe Lavín</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a> · <a href=\"https://profiles.wordpress.org/franz00/\">Fransisca H</a> · <a href=\"https://profiles.wordpress.org/fuadragib/\">Fuad Ragib</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/grl570810/\">grl570810</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a> · <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a> · <a href=\"https://profiles.wordpress.org/hanshenrik/\">hanshenrik</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/ehtmlu/\">Helmut Wandl</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hiren1094/\">hiren sanja</a> · <a href=\"https://profiles.wordpress.org/patelhitesh/\">Hitesh Patel</a> · <a href=\"https://profiles.wordpress.org/hughiemolloy/\">hughie.molloy</a> · <a href=\"https://profiles.wordpress.org/hugodevos/\">hugodevos</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/iazel/\">Iazel</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a> · <a href=\"https://profiles.wordpress.org/inwerpsel/\">inwerpsel</a> · <a href=\"https://profiles.wordpress.org/iqbalrony/\">iqbalrony</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/ivanjeronimo/\">ivanjeronimo</a> · <a href=\"https://profiles.wordpress.org/jhoffmann/\">j.hoffmann</a> · <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a> · <a href=\"https://profiles.wordpress.org/jaedm97/\">Jaed Mosharraf</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> · <a href=\"https://profiles.wordpress.org/janusdev/\">janusdev</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jeanphilippegreen/\">Jean-Philippe Green</a> · <a href=\"https://profiles.wordpress.org/jeawhanlee/\">jeawhanlee</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/lobeless14/\">Jeremy Lind</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jhned/\">jhned</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jokerrs/\">Jokerrs</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/jongycastillo/\">Jong</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/jornp/\">jornp</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/welenofsky/\">Justin Welenofsky</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lenasterg/\">Lena Stergatou</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leonidas Milosis</a> · <a href=\"https://profiles.wordpress.org/lifeboat/\">lifeboat</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a> · <a href=\"https://profiles.wordpress.org/webaxones/\">Loïc Antignac</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/dreadlox/\">Lox</a> · <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a> · <a href=\"https://profiles.wordpress.org/lucius0101/\">lucius0101</a> · <a href=\"https://profiles.wordpress.org/lucymtc/\">Lucy Tomas</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Márcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mahbubshovan/\">Mahbub Shovan</a> · <a href=\"https://profiles.wordpress.org/mahekkalola/\">Mahek Kalola</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manojkpatil/\">Manoj Patil</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/marissamakes/\">Marissa Matthews</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/marksabbath/\">marksabbath</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/matclayton/\">matclayton</a> · <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a> · <a href=\"https://profiles.wordpress.org/paapst/\">Mathieu Paapst</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matthiasreinholz/\">Matthias Reinholz</a> · <a href=\"https://profiles.wordpress.org/h4l9k/\">Mauricio</a> · <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maximej/\">Maxime J.</a> · <a href=\"https://profiles.wordpress.org/jamilbd07/\">MD Jamil Uddin</a> · <a href=\"https://profiles.wordpress.org/kawserz/\">Md Kawser Ahmed Khan Jami</a> · <a href=\"https://profiles.wordpress.org/rakibwordpress/\">Md Rakib Hossain</a> · <a href=\"https://profiles.wordpress.org/abirhasandipu/\">Md. Abir Hasan Dipu</a> · <a href=\"https://profiles.wordpress.org/reduanmasud/\">Md. Reduan Masud</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/meyegui/\">meyerdev.ch</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michael-kelly/\">Michael Kelly</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michelmany/\">Michel Many</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> · <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/presents111/\">miya</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/tanjimtc71/\">Musarrat Anjum Chowdhury</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> · <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a> · <a href=\"https://profiles.wordpress.org/nazmulhasan103/\">Nazmul Hasan</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nicholaswilson/\">nicholaswilson</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/itsnikhilpatel/\">NikhilPatel</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/rnitinb/\">Nitin Rathod</a> · <a href=\"https://profiles.wordpress.org/nitman43/\">nitman43</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a> · <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a> · <a href=\"https://profiles.wordpress.org/obayedmamur/\">Obayed Mamur</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a> · <a href=\"https://profiles.wordpress.org/oh_hello/\">oh_hello</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoney/\">PabloHoney</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a> · <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a> · <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a> · <a href=\"https://profiles.wordpress.org/phil-webster/\">Phil Webster</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/iapial/\">Pial</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/knowingart_com/\">PJ Brunet</a> · <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Ptah Dunbar</a> · <a href=\"https://profiles.wordpress.org/raduiason/\">raduiason</a> · <a href=\"https://profiles.wordpress.org/initsogar/\">Rafael Agostini</a> · <a href=\"https://profiles.wordpress.org/rafinkhan/\">Rafin</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajeshraval786/\">Rajesh Raval</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/razthee007/\">Razthee Md. Yakini</a> · <a href=\"https://profiles.wordpress.org/renatoagds/\">Renato Augusto Gama dos Santos</a> · <a href=\"https://profiles.wordpress.org/rezakhan995/\">Reza Khan</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riccardodicurti/\">Riccardo Di Curti</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinkychowdhury9/\">Rinky Chowdhury</a> · <a href=\"https://profiles.wordpress.org/ritteshpatel/\">Ritesh Patel</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robin-labadie/\">Robin Labadie</a> · <a href=\"https://profiles.wordpress.org/rodage/\">rodage</a> · <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/digical/\">Ross Gile</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/re_enter_rupok/\">Rupok</a> · <a href=\"https://profiles.wordpress.org/rryyaanndd/\">Ryan</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/stalukder03/\">Sajib Talukder</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/sam1el/\">sam1el</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samruddhikhandale/\">samruddhikhandale</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sanjucta/\">sanjucta</a> · <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/sapayth/\">sapayth</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> · <a href=\"https://profiles.wordpress.org/saumil1611/\">Saumil Nerpagar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">saxonfletcher</a> · <a href=\"https://profiles.wordpress.org/ira2910/\">Sazia Faizunnessa Ira</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/countrymusicchicago/\">Scott Winterroth</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> · <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seriouslysenpai/\">seriouslysenpai</a> · <a href=\"https://profiles.wordpress.org/wandering-aramean/\">Seth Miller</a> · <a href=\"https://profiles.wordpress.org/shahidul95/\">Shahidul Islam</a> · <a href=\"https://profiles.wordpress.org/shamayel007/\">Shamayel</a> · <a href=\"https://profiles.wordpress.org/shamimmiashuhagh/\">Shamim Mia</a> · <a href=\"https://profiles.wordpress.org/smeunus/\">Sharif Mohammad Eunus</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shubham1gupta/\">shubham1gupta</a> · <a href=\"https://profiles.wordpress.org/silicium23/\">Silicium</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simongomes02/\">Simon Gomes</a> · <a href=\"https://profiles.wordpress.org/slieschke/\">Simon Lieschke</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/calvinalkan/\">snicco.io</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/sruthi90/\">sruthi90</a> · <a href=\"https://profiles.wordpress.org/steelwagstaff/\">SteelWagstaff</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephym/\">Stephy Miehle</a> · <a href=\"https://profiles.wordpress.org/stephymiehle/\">stephymiehle</a> · <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sun/\">sun</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/afrin29/\">Syeda Sanjida Afrin</a> · <a href=\"https://profiles.wordpress.org/syhc/\">syhc</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/syntaxart/\">syntaxart</a> · <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/tahminar27/\">Tahmina Rahman</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/tanazmasaba/\">Tanaz Masaba</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/rahmantasnia/\">Tasnia Rahman Raima</a> · <a href=\"https://profiles.wordpress.org/teebee/\">teebee</a> · <a href=\"https://profiles.wordpress.org/tekapo/\">tekapo</a> · <a href=\"https://profiles.wordpress.org/thedaysse/\">thedaysse</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/theode/\">theode</a> · <a href=\"https://profiles.wordpress.org/griffinjt/\">Thomas Griffin</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/timbroddin/\">timbroddin</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timothée Brosille</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/dziudek/\">Tomasz Dziuda</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a> · <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/travisaxton/\">travisaxton</a> · <a href=\"https://profiles.wordpress.org/triumvirate/\">triumvirate</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a> · <a href=\"https://profiles.wordpress.org/virgar/\">Virginie Garnier</a> · <a href=\"https://profiles.wordpress.org/elifvish/\">Vishal Kumar</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a> · <a href=\"https://profiles.wordpress.org/vykesmac/\">vykesmac</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webrocker/\">Webrocker</a> · <a href=\"https://profiles.wordpress.org/websitegenii/\">websitegenii</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/winterpsv/\">winterpsv</a> · <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a> · <a href=\"https://profiles.wordpress.org/wojtekn/\">Wojtek Naruniec</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yuliyan/\">Yuliyan Slavchev</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zevilz/\">zevilz</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">Merci aux personnes ayant contribué à traduire WordPress&nbsp;6.3 en français</h3>\n\n\n\n<p>WordPress est un projet international et la version 6.3 est déjà complètement disponible dans plus de 70 langues différentes.</p>\n\n\n\n<p>Nous souhaitons remercier ici les personnes ayant participé à la traduction de WordPress 6.3 en français&nbsp;:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/antoinepaufichet\">Antoine Paufichet</a>, <a href=\"https://profiles.wordpress.org/beryldlg/\">beryldlg</a>, <a href=\"https://profiles.wordpress.org/clementpolito\">Clément Polito</a>, <a href=\"https://profiles.wordpress.org/btpub/\">Bruno Tritsch</a>, <a href=\"https://profiles.wordpress.org/coralietixeront/\">coralietixeront</a>, <a href=\"https://profiles.wordpress.org/dacobah/\">dacobah</a>, <a href=\"https://profiles.wordpress.org/wolforg\">Didier Demory</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/este1/\">este1</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">FX</a>, <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a>, <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/oellin/\">Magali</a>, <a href=\"https://profiles.wordpress.org/nuryko/\">Marianna</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/nandow/\">nandow</a>, <a href=\"https://profiles.wordpress.org/pasglop\">pasglop</a>, <a href=\"https://profiles.wordpress.org/petitphp\">petitphp</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/ravanh\">Rolf Allard van Hagen</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sebastienserre\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/simonjanin/\">Simon Janin</a>, <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timothée Brosille</a>, <a href=\"https://profiles.wordpress.org/virgar/\">Virginie Garnier</a>, <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a>, et <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a>.</p>\n\n\n\n<p>N’hésitez pas à <a href=\"https://fr.wordpress.org/team/handbook/\">rejoindre les équipes de contribution francophones&nbsp;!</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Et pour la suite&nbsp;?</h2>\n\n\n\n<p>Il y a 20 ans, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress sortait sa première version, la version 0.7</a>. Ce qui a commencé par un article de blog de Matt Mullenweg et un commentaire enthousiaste du co-fondateur Mike Little a évolué pour devenir la plateforme de publication web la plus populaire du monde&nbsp;!</p>\n\n\n\n<p>WordPress continue d’évoluer et d’itérer pour devenir toujours plus robuste et pour répondre aux attentes de sa communauté. Cette version clôture la <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2 (en anglais)</a>&nbsp;de notre <a href=\"https://wordpress.org/about/roadmap/\">feuille de route (en anglais)</a>. Tous les efforts vont maintenant se tourner vers la&nbsp;<a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, qui vise a apporter une gestion collaborative au sein de votre CMS favori.</p>\n\n\n\n<p>Pour finir l’année 2023 en beauté, l’équipe de direction de WordPress&nbsp;6.4 sera entièrement composée de femmes et de personnes non-binaires, tout comme l’avait été la version 5.6 en 2020.</p>\n\n\n\n<p class=\"has-text-align-right\" style=\"font-size:14px\">Article rédigé/traduit par <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, avec la relecture de <a href=\"https://profiles.wordpress.org/jdy68\">Jenny Dupuy</a> et <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien Serre</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://fr.wordpress.org/2023/08/08/wordpress-6-3-lionel/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:76:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Guide des changements techniques de WordPress 6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://fr.wordpress.org/2023/07/18/guide-des-changements-techniques-de-wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://fr.wordpress.org/2023/07/18/guide-des-changements-techniques-de-wordpress-6-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2023 18:07:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:5:\"Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2742\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:417:\"Ce guide décrit les principaux changements techniques que vous trouverez sur WordPress&#160;6.3, dont la sortie est prévue le 8 août 2023. Cette version implémente 345 tickets&#160;: 126 tickets correspondent à des améliorations et nouvelles fonctionnalités, tandis que 198 tickets sont des corrections de bugs, auxquels s&#8217;ajoutent 21 tâches diverses. Cette version implémente par ailleurs 68 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:39646:\"\n<p>Ce guide décrit les principaux changements techniques que vous trouverez sur WordPress&nbsp;6.3, dont la sortie est prévue le 8 août 2023.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"458\" src=\"https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3-1024x458.png\" alt=\"WordPress 6.3 : le guide des changements techniques !\" class=\"wp-image-2745\" srcset=\"https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3-1024x458.png 1024w, https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3-300x134.png 300w, https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3-768x343.png 768w, https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3-1536x687.png 1536w, https://fr.wordpress.org/files/2023/07/changements-techniques-wordpress-6-3.png 1986w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Cette version implémente <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">345</a> tickets&nbsp;: <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.3&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">126 tickets correspondent à des améliorations et nouvelles fonctionnalités</a>, tandis que <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=defect+(bug)&amp;milestone=6.3&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">198 tickets sont des corrections de bugs</a>, auxquels s&rsquo;ajoutent <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=task+(blessed)&amp;milestone=6.3&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">21 tâches diverses</a>.</p>\n\n\n\n<p>Cette version implémente par ailleurs <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~performance&amp;milestone=6.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">68 tickets ayant un focus sur les performances</a> et <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~accessibility&amp;milestone=6.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">23 sur l&rsquo;accessibilité</a>, tandis que <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~coding-standards&amp;milestone=6.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">33 tickets sont liés à la modernisation du code du CMS.</a></p>\n\n\n\n<p>Le projet Gutenberg inclut quant à lui <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">1737 <em>pull requests</em></a>, dont 307 correspondent à des améliorations, 481 à des correctifs de bugs et 55 à des améliorations d&rsquo;accessibilité.</p>\n\n\n\n<p>Les modifications de WordPress 6.3 se répartissent dans 43 composants <em>Core</em>, et vous trouverez dans ce communiqué les modifications les plus impactantes, composant par composant.</p>\n\n\n\n<p class=\"has-text-align-center has-background\" style=\"background-color:#fee7af\">En route pour un petit tour d’horizon des<br>nouveautés techniques de WordPress&nbsp;6.3&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Tous les liens de cet article pointent vers des notes de développement rédigées en anglais.</p>\n\n\n\n<p>L’objectif est de fournir un panorama général des changements techniques apportés par cette version, en français, puis de diriger les personnes qui souhaitent en savoir plus vers les notes de développement en anglais.</p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\">À noter&nbsp;: certaines modifications listées ici vont nécessiter des actions de la part des auteurs et autrices de thèmes et d’extensions, qui devront adapter ou modifier leur code. Si vous êtes concerné·e, veuillez lire les notes de développement listées dans cet article consciencieusement afin de vous assurer que votre code fonctionnera avec WordPress&nbsp;6.3 lorsque cette version sortira le 8&nbsp;août 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Themes\">L’éditeur de blocs</h2>\n\n\n\n<p>WordPress 6.3 n&rsquo;implémente pas moins de 10 versions de l&rsquo;extension Gutenberg&nbsp;: <a href=\"https://make.wordpress.org/core/2023/02/24/whats-new-in-gutenberg-15-2-22-february/\">15.2</a>, <a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/\">15.3</a>, <a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/\">15.4</a>, <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">15.5</a>, <a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/\">15.6</a>, <a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\">15.7</a>, <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">15.8</a>, <a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\">15.9</a>, <a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">16.0</a> et <a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">16.1</a>. Vous trouverez de nouvelles API, de nouvelles propriétés de blocs, un mode d&rsquo;édition de blocs, des classes de couleurs et de nombreuses autres modifications.</p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\">À noter&nbsp;: les blocs réutilisables ont été renommés en «&nbsp;compositions synchronisées&nbsp;».</p>\n\n\n\n<p>Pour en savoir plus, consultez les notes de développement suivantes&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"L20XnOVu1h\"><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing the Block Selectors API&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/embed/#?secret=pG9aZ0Miyt#?secret=L20XnOVu1h\" data-secret=\"L20XnOVu1h\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"g3oscpQMGD\"><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing the WordPress Command Palette API&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/embed/#?secret=iU5bxQBp4V#?secret=g3oscpQMGD\" data-secret=\"g3oscpQMGD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"THL7StpItm\"><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Layout updates in the editor for WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/embed/#?secret=B4affEPWBs#?secret=THL7StpItm\" data-secret=\"THL7StpItm\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ivk0xhlnAo\"><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/embed/#?secret=OjOXo4fv13#?secret=ivk0xhlnAo\" data-secret=\"ivk0xhlnAo\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"9Yhxa7HGYY\"><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous Editor changes in WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/embed/#?secret=suRGrJ6Mwq#?secret=9Yhxa7HGYY\" data-secret=\"9Yhxa7HGYY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Thèmes natifs</h2>\n\n\n\n<p>Les thèmes natifs ont abandonné le support du navigateur Internet Explorer et n&rsquo;incluent donc plus aucun script ou feuille de styles destinée à ce navigateur. Les scripts HTML5 Shiv ne sont d&rsquo;ailleurs plus chargés non plus dans les thèmes <em>Twenty Thirteen</em>, <em>Twenty Fifteen</em> et <em>Twenty Seventeen</em> (ticket <a href=\"https://core.trac.wordpress.org/ticket/56699\">#56699</a>).</p>\n\n\n\n<p>Les personnes qui souhaitent continuer à supporter IE peuvent cependant utiliser un bout de code pour restaurer ces fonctionnalités.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Vlf50ZB1Ge\"><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Bundled themes dropping Internet Explorer scripts and styles&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/embed/#?secret=bZB0K4OvNF#?secret=Vlf50ZB1Ge\" data-secret=\"Vlf50ZB1Ge\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">API de gestion du cache</h2>\n\n\n\n<p>L&rsquo;API de gestion du cache a reçu de nombreuses améliorations, notamment l&rsquo;introduction de nouveaux groupes de cache spécifiques aux requêtes afin d&rsquo;offrir un meilleur contrôle aux développeur·euses.</p>\n\n\n\n<p>Vous pouvez maintenant définir le moment d&rsquo;expiration du cache d&rsquo;un groupe, vider le cache de groupes spécifiques, modifier la dernière valeur d&rsquo;un groupe ou encore déclarer certains groupes d&rsquo;objets mis en cache comme n&rsquo;étant pas persistants. Avec ces changements, vous pouvez implémenter votre propre stratégie personnalisée d&rsquo;invalidation du cache.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"7bVhV9c8DD\"><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Improvements to the Cache API in WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/embed/#?secret=XgZni932MZ#?secret=7bVhV9c8DD\" data-secret=\"7bVhV9c8DD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">API de gestion du système de fichiers</h2>\n\n\n\n<p>Les fichiers masqués (préfixés par <code>.</code>) peuvent maintenant être inclus dans la fonction <code>list_files()</code> avec un nouveau paramètre optionnel <code>$include_hidden</code>. Sa valeur par défaut est <code>false</code> pour cause de rétrocompatibilité (ticket <a href=\"https://core.trac.wordpress.org/ticket/53659\">#53659</a>).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mode développement</h2>\n\n\n\n<p>Une nouvelle constante <code>WP_DEVELOPMENT_MODE</code> a été introduite afin de déterminer un contexte de développement spécifique. Les valeurs reconnues pour cette constante sont <code>core</code>, <code>plugin</code>, <code>theme</code>, <code>all</code>, ou une chaîne vide, valeur par défaut indiquant que le site n&rsquo;est pas dans un contexte de développement.</p>\n\n\n\n<p>Deux nouvelles fonctions ont été ajoutées pour interagir avec le mode développement&nbsp;: <code>wp_in_development_mode( $mode )</code> et <code>wp_get_development_mode()</code>.</p>\n\n\n\n<p>Les différents contextes de développement affectent des fonctionnalités de mise en cache spécifiques. Par exemple, le cache est surchargé lorsque le site se situe en mode développement de thème, mais pas si l&rsquo;on est en mode développement <code>core</code> (ticket <a href=\"https://core.trac.wordpress.org/ticket/57487\">#57487</a>).</p>\n\n\n\n<p>La valeur actuelle de la constante <code>WP_DEVELOPMENT_MODE</code> est aussi accessible sur l&rsquo;écran <em>Outils &gt; Santé du site &gt; Informations</em>, dans la section listant les constantes WordPress (<a href=\"https://core.trac.wordpress.org/ticket/58646\">#58646</a>).</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"dvM295fJom\"><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Configuring development mode in 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/embed/#?secret=Lh6gKzzH8V#?secret=dvM295fJom\" data-secret=\"dvM295fJom\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Prise en charge de PHP</h2>\n\n\n\n<p>La prise en charge de PHP 5 a été abandonnée dans WordPress 6.3.</p>\n\n\n\n<p>La nouvelle version minimale prise en charge est PHP 7.0.</p>\n\n\n\n<p>La version recommandée de PHP demeure toujours 7.4 ou plus (ticket <a href=\"https://core.trac.wordpress.org/ticket/57345\">#57345</a>).</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"6gfDoEvvm1\"><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Dropping support for PHP 5&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/embed/#?secret=aA9rmaRizu#?secret=6gfDoEvvm1\" data-secret=\"6gfDoEvvm1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Internationalisation</h2>\n\n\n\n<p>Plusieurs améliorations, dont la possibilité de court-circuiter le filtre <code>load_textdomain</code> et de réduire le temps de chargement des traductions en temps réel.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"TW1F45zj57\"><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;I18N Improvements in 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/embed/#?secret=fL2ntxjWyU#?secret=TW1F45zj57\" data-secret=\"TW1F45zj57\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Médias</h2>\n\n\n\n<p>Le composant Médias a reçu plusieurs améliorations destinées à diminuer le temps de chargement des contenus comprenant des images. WordPress ajoute maintenant automatiquement l&rsquo;attribut <code>fetchpriority</code> avec la valeur <code>high</code> à l&rsquo;image qui est la plus susceptible d’être considérée comme l&rsquo;image « LCP » (<em>Largest Contentful Paint</em>).</p>\n\n\n\n<p>D&rsquo;autres améliorations ont été faites sur la gestion automatique du chargement différé des images afin de mieux détecter les moments où l&rsquo;attribut doit être omis, sur certaines images.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"PlLoKkDiiQ\"><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Image performance enhancements in WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/embed/#?secret=E5FecmehIe#?secret=PlLoKkDiiQ\" data-secret=\"PlLoKkDiiQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">API de gestion des métadonnées</h2>\n\n\n\n<p>Les performances de la gestion des métadonnées ont été grandement améliorées en développant la capacité de WordPress a charger de façon conditionnelle certaines métadonnées des termes de taxonomies, des commentaires ou encore des sites d&rsquo;un multisite. Ce chargement conditionnel permet d&rsquo;éviter de demander la récupération de données alors qu&rsquo;elles ne sont pas utilisées dans l&rsquo;écran. Cela réduit les requêtes inutiles en base de données et améliore les performances d&rsquo;ensemble de votre site.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"070KRCIIpE\"><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Improvements to the metadata API in WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/embed/#?secret=zLd56waD70#?secret=070KRCIIpE\" data-secret=\"070KRCIIpE\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Gestion des publications</h2>\n\n\n\n<p>La fonction <code>get_pages()</code> a été refactorisée afin d&rsquo;utiliser <code>WP_Query</code>. Cette amélioration réduit significativement la complexité de la fonction historique <code>get_pages()</code> en déchargeant la responsabilité des performances et de la gestion du cache sur la classe <code>WP_Query</code> (tickets <a href=\"https://core.trac.wordpress.org/ticket/55806\">#55806</a> et <a href=\"https://core.trac.wordpress.org/ticket/12821\">#12821</a>).</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Fx0YGPZreg\"><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;WP_Query used internally in get_pages()&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/embed/#?secret=QoK2oOt1Fu#?secret=Fx0YGPZreg\" data-secret=\"Fx0YGPZreg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Chargement des scripts</h2>\n\n\n\n<p>La prise en charge des attributs HTML5 <code>async</code> et <code>defer</code> a été ajoutée, ce qui permet aux développeur·euses de définir une stratégie de chargement de leurs scripts. La stratégie de chargement peut être activée en modifiant le paramètre <code>$in_footer</code> pour lui fournir un tableau contenant une stratégie de chargement pour les fonctions <code>wp_register_script()</code> et <code>wp_enqueue_script()</code>. Si elle est présente, la stratégie de chargement sera ajoutée à la balise <code>script</code> associée.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"xaQ5HItuFL\"><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Registering scripts with `async` and `defer` attributes in WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/embed/#?secret=cIT0T6547d#?secret=xaQ5HItuFL\" data-secret=\"xaQ5HItuFL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Gestion des mises à jour des extensions et des thèmes</h2>\n\n\n\n<p>WordPress 6.3 propose une nouvelle fonctionnalité de restauration. Cela permettra à WordPress de restaurer automatiquement la version précédente d&rsquo;un thème ou d&rsquo;une extension si la mise à jour automatique associée a fait planter le site.</p>\n\n\n\n<ul>\n<li>Lorsqu&rsquo;un thème ou une extension est mise à jour, la version précédente est déplacée dans un répertoire de sauvegarde temporaire&nbsp;:\n<ul>\n<li><code>wp-content/upgrade-temp-backup/plugins/[slug]</code> pour les extensions&nbsp;;</li>\n\n\n\n<li><code>wp-content/upgrade-temp-backup/themes/[slug]</code> pour les thèmes.</li>\n</ul>\n</li>\n\n\n\n<li>Si la mise à jour échoue, alors la sauvegarde est restaurée dans son emplacement d&rsquo;origine.</li>\n\n\n\n<li>Si la mise à jour réussit, la sauvegarde temporaire est supprimée.</li>\n</ul>\n\n\n\n<p>Deux nouveaux tests sont également ajoutés à l&rsquo;écran de Santé du site&nbsp;:</p>\n\n\n\n<ul>\n<li>Vérification que le répertoire <code>upgrade-temp-backup</code> est accessible en écriture&nbsp;;</li>\n\n\n\n<li>Vérification qu&rsquo;il y a assez d&rsquo;espace disque disponible pour effectuer les mises à jour sans risque.</li>\n</ul>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\">Veuillez noter que cette fonctionnalité de restauration ne peut pas être utilisée pour remettre en place la version précédente d&rsquo;un thème ou d&rsquo;une extension après une mise à jour réussie. Cela ne fonctionne que si le site a rencontré une erreur fatale et que le site est donc considéré comme étant non fonctionnel.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Icw0l4iAb1\"><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;New in 6.3: Rollback for failed manual plugin and theme updates&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/embed/#?secret=zzCgZgz5QF#?secret=Icw0l4iAb1\" data-secret=\"Icw0l4iAb1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Gestion des comptes</h2>\n\n\n\n<p>La classe <code>WP_User_Query</code> était la dernière classe de ce type qui ne permettait pas encore la mise en cache des résultats, c&rsquo;est maintenant chose faite. Chaque appels à la classe <code>WP_User_Query</code> sera maintenant automatiquement mis en cache par défaut, à moins qu&rsquo;un paramètre n&rsquo;indique de ne pas le faire. Il est aussi possible de désactiver la mise en cache globalement en utilisant un filtre.</p>\n\n\n\n<p>Les résultats des requêtes sont placés dans le groupe de cache <code>user-queries</code>. La mise en cache est désactivée pour les requêtes utilisant le paramètre <code>field</code> et pour les requêtes comprenant plus de 3 champs.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"J6E0gf6gkC\"><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Improved Caching for Database Queries in WP_User_Query&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/embed/#?secret=XtSF1Kcjfm#?secret=J6E0gf6gkC\" data-secret=\"J6E0gf6gkC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Autres changements techniques</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"PpKZ52n0G9\"><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous developer changes in WordPress 6.3&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/embed/#?secret=QMr9n5x0bD#?secret=PpKZ52n0G9\" data-secret=\"PpKZ52n0G9\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">API CRON</h3>\n\n\n\n<p>La limite de la mémoire CRON a été agrandie sur la constante <code>WP_MAX_MEMORY_LIMIT</code> (par défaut de 256&nbsp;Mo). Un nouveau filtre <code>cron_memory_limit</code> a été ajouté pour ajuster cette valeur si nécessaire (ticket <a href=\"https://core.trac.wordpress.org/ticket/56628\">#56628</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Éditeur</h3>\n\n\n\n<p>Un nouvel attribut <code>source</code> a été ajouté sur les compositions de blocs afin de permettre de les filtrer à partir de cette source (ticket <a href=\"https://core.trac.wordpress.org/ticket/58622\">#58622</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Contenus embarqués</h3>\n\n\n\n<ul>\n<li>Anghami a été ajouté en tant que fournisseur oEmbed de confiance (ticket <a href=\"https://core.trac.wordpress.org/ticket/49850\">#49850</a>)&nbsp;;</li>\n\n\n\n<li>La prise en charge des profils de créateur·ice TikTok a été ajoutée (ticket <a href=\"https://core.trac.wordpress.org/ticket/55784\">#55784</a>).</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Formatage</h3>\n\n\n\n<ul>\n<li>Ajout des attributs ARIA suivants aux attributs autorisés dans les fonctions KSES&nbsp;: <code>aria-controls</code>, <code>aria-expanded</code>, and <code>aria-current</code> (ticket <a href=\"https://core.trac.wordpress.org/ticket/55370\">#55370</a>)&nbsp;;</li>\n\n\n\n<li>La fonction CSS <code>repeat()</code> a été ajoutée aux éléments autorisés dans les fonctions KSES (ticket <a href=\"https://core.trac.wordpress.org/ticket/58551\">#58551</a>).</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Divers</h3>\n\n\n\n<ul>\n<li>Dans les fonctions KSES, la fonction <code>safecss_filter_attr()</code> a été revue afin d&rsquo;autoriser la propriété <code>filter</code> à recevoir une URL en référence à un élément SVG (ticket <a href=\"https://core.trac.wordpress.org/ticket/57780\">#57780</a>)&nbsp;;</li>\n\n\n\n<li><code>strpos()</code> a été remplacé par différentes fonctions PHP modernes afin de faire évoluer le code du CMS (tickets <a href=\"https://core.trac.wordpress.org/ticket/58012\">#58012</a>, <a href=\"https://core.trac.wordpress.org/ticket/58206\">#58206</a> et <a href=\"https://core.trac.wordpress.org/ticket/58220\">#58220</a>)&nbsp;;</li>\n\n\n\n<li>Dans la classe WP_Comments_List_Table, lorsque la fonction <code>get_comments()</code> est appelée, le paramètre <code>update_comment_post_cache</code> est passé avec la valeur <code>true</code>, afin d&rsquo;améliorer les performances (<a href=\"https://core.trac.wordpress.org/ticket/57802\">#57802</a>)&nbsp;;</li>\n\n\n\n<li>La fonction <code>_wp_array_get()</code> est la fonction la plus appelée sur l&rsquo;interface publique de tous les sites WordPress, puisqu&rsquo;elle est appelée environ 23&nbsp;000 fois sur chaque chargement de page sur un thème basé sur des blocs. WordPress 6.3 ajoute quelques améliorations de performances sur cette fonction (ticket <a href=\"https://core.trac.wordpress.org/ticket/58376\">#58376</a>)&nbsp;;</li>\n\n\n\n<li>Un nouveau crochet d&rsquo;action <code>bulk_edit_posts</code> a été ajouté afin de permettre de déclencher une action après que les données d&rsquo;une édition par lot aient été traitées et avant de renvoyer les résultats. Cela permet notamment aux développeurs et développeuses d&rsquo;ajouter d&rsquo;autres modifications sans avoir besoin de greffer des appels AJAX supplémentaires (ticket <a href=\"https://core.trac.wordpress.org/ticket/28112\">#28112</a>).</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">API REST</h3>\n\n\n\n<ul>\n<li>L&rsquo;API REST <code>Themes</code> permet maintenant de savoir si un thème prend en charge l&rsquo;éditeur de site, grâce à la propriété <code>is_block_theme </code>située dans la réponse API du point de terminaison <code>wp/v2/themes</code> (ticket <a href=\"https://core.trac.wordpress.org/ticket/58123\">#58123</a>) ;</li>\n\n\n\n<li>Un point de terminaison a été ajouté afin d&rsquo;obtenir les révisions des styles globaux, accessible sur <code>/wp/v2/global-styles/revisions</code> (ticket <a href=\"https://core.trac.wordpress.org/ticket/58524\">#58524</a>) ;</li>\n\n\n\n<li><code>WP_REST_Templates_Controller</code> a été modifié afin d&rsquo;inclure un champ <code>modified</code> pour connaître la date de modification des modèles et des éléments de modèles (ticket <a href=\"https://core.trac.wordpress.org/ticket/58540\">#58540</a>).</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Thèmes</h3>\n\n\n\n<p>La nouvelle fonction publique <code>wp_get_remote_theme_patterns()</code> a été ajoutée afin d&rsquo;effectuer des requêtes sur les <code>patterns</code> provenant du <code>theme.json</code> et se substitue aux précédents usages d&rsquo;API privées (<a href=\"https://core.trac.wordpress.org/ticket/58460\">#58460</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">Nouveaux crochets d&rsquo;actions</h3>\n\n\n\n<ul>\n<li><code>bulk_edit_posts</code> (<a href=\"https://core.trac.wordpress.org/ticket/28112\">#28112</a>)</li>\n\n\n\n<li><code>wp_update_user</code> (<a href=\"https://core.trac.wordpress.org/ticket/57843\">#57843</a>)</li>\n\n\n\n<li><code>wp_cache_set_last_changed</code> (<a href=\"https://core.trac.wordpress.org/ticket/57905\">#57905</a>)</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Nouveaux filtres</h3>\n\n\n\n<ul>\n<li><code>plugins_list</code> (<a href=\"https://core.trac.wordpress.org/ticket/57278\">#57278</a>)</li>\n\n\n\n<li><code>pre_load_textdomain</code> (<a href=\"https://core.trac.wordpress.org/ticket/58035\">#58035</a>)</li>\n\n\n\n<li><code>wp_get_attachment_image_context</code> (<a href=\"https://core.trac.wordpress.org/ticket/58212\">#58212</a>)</li>\n\n\n\n<li><code>get_pages_query_args</code> (<a href=\"https://core.trac.wordpress.org/ticket/12821\">#12821</a>)</li>\n\n\n\n<li><code>cron_memory_limit</code> (<a href=\"https://core.trac.wordpress.org/ticket/56628\">56628</a>)</li>\n\n\n\n<li><code>nav_menu_item_attributes</code> (<a href=\"https://core.trac.wordpress.org/ticket/57140\">#57140</a>)</li>\n\n\n\n<li><code>nav_menu_link_attributes</code> (<a href=\"https://core.trac.wordpress.org/ticket/57140\">#57140</a>)</li>\n\n\n\n<li><code>nav_menu_submenu_attributes</code> (<a href=\"https://core.trac.wordpress.org/ticket/57140\">#57140</a>)</li>\n\n\n\n<li><code>pre_wp_setup_nav_menu_item</code> (<a href=\"https://core.trac.wordpress.org/ticket/56577\">#56577</a>)</li>\n\n\n\n<li><code>site_editor_no_javascript_message</code> (<a href=\"https://core.trac.wordpress.org/ticket/56228\">#56228</a>)</li>\n\n\n\n<li><code>image_edit_thumbnails_separately</code> (<a href=\"https://core.trac.wordpress.org/ticket/57685\">#57685</a>)</li>\n\n\n\n<li><code>wp_navigation_should_create_fallback</code> (<a href=\"https://core.trac.wordpress.org/ticket/58750\">#58750</a>)</li>\n\n\n\n<li><code>wp_min_priority_img_pixels</code> (<a href=\"https://core.trac.wordpress.org/ticket/58235\">#58235</a>)</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Crochets d&rsquo;actions et filtres modifiés</h3>\n\n\n\n<ul>\n<li><code>rest_allowed_cors_headers</code> (<a href=\"https://core.trac.wordpress.org/ticket/57752\">#57752</a>) et <code>rest_exposed_cors_headers</code> (<a href=\"https://core.trac.wordpress.org/ticket/57752\">#57752</a>)</li>\n\n\n\n<li><code>edit_custom_thumbnail_sizes</code> a été déprécié et remplacé par <code>image_edit_thumbnails_separately</code> (<a href=\"https://core.trac.wordpress.org/ticket/57685\">#57685</a>)</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Fichiers dépréciés</h3>\n\n\n\n<ul>\n<li>Le fichier <code>wp-admin/media.php</code> a été déprécié. Les personnes visitant cette page seront redirigées sur la médiathèque, avec une notification (ticket <a href=\"https://core.trac.wordpress.org/ticket/57612\">#57612</a>).</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Mise à jour de bibliothèques externes</h3>\n\n\n\n<p>Les bibliothèques externes suivantes ont été mises à jour&nbsp;:</p>\n\n\n\n<ul>\n<li><code>PHPMailer</code> vers la version 6.8.0 (<a href=\"https://core.trac.wordpress.org/ticket/57873\">#57873</a>)</li>\n\n\n\n<li><code>Requests library</code> vers la version 2.0.6 (<a href=\"https://core.trac.wordpress.org/ticket/58079\">#58079</a>)</li>\n\n\n\n<li><code>jQuery</code> vers la version 3.7.0 (<a href=\"https://core.trac.wordpress.org/ticket/58083\">#58083</a>)</li>\n\n\n\n<li><code>Sodium Compat</code> vers la version 1.20.0 (<a href=\"https://core.trac.wordpress.org/ticket/58224\">#58224</a>)</li>\n\n\n\n<li><code>jQuery Migrate</code> vers la version 3.4.1 (<a href=\"https://core.trac.wordpress.org/ticket/58451\">#58451</a>)</li>\n\n\n\n<li><code>npm</code> vers la dernière version disponible (<a href=\"https://core.trac.wordpress.org/ticket/58623\">#58623</a>)</li>\n</ul>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\">Que vous développiez des thèmes ou des extensions, pensez à tester et retester votre code pour vous assurer de sa compatibilité avec ces changements. Vous pouvez utiliser&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">l’extension Beta Tester</a>&nbsp;sur un site de test pour vérifier la compatibilité de vos développements avec <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3&nbsp;Release Candidate&nbsp;1</a>.&nbsp;Nous comptons sur vous pour vérifier que votre code fonctionne correctement avec le cœur du CMS, pour le bien des millions d’utilisateurs et utilisatrices de WordPress&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p class=\"has-text-color has-background has-link-color wp-elements-a06990637d92bf8571342f708e11d9bd\" style=\"color:#feffff;background-color:#0f29a9\">Ce guide a été traduit puis adapté à partir du <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\"><em>Field Guide</em> de WP 6.3</a> par <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>.<br>Merci à <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> pour sa relecture attentive.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://fr.wordpress.org/2023/07/18/guide-des-changements-techniques-de-wordpress-6-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"WordPress 6.2 « Dolphy »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://fr.wordpress.org/2023/03/30/wordpress-6-2-dolphy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://fr.wordpress.org/2023/03/30/wordpress-6-2-dolphy/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Mar 2023 08:32:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2659\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:401:\"Surnommée «&#160;Dolphy&#160;» en l&#8217;honneur du jazzman américain Eric Allan Dolphy Jr, WordPress&#160;6.2 est la première version majeure de 2023, et contient plus de 900 améliorations et corrections de bugs. Cette version marque une transition dans la feuille de route générale du projet open-source WordPress, car la focalisation va désormais passer de l’éditeur et de la [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:64876:\"\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2023/03/dolphy.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://fr.wordpress.org/files/2023/03/dolphy-1024x683.png\" alt=\"\" class=\"wp-image-2721\" srcset=\"https://fr.wordpress.org/files/2023/03/dolphy-1024x683.png 1024w, https://fr.wordpress.org/files/2023/03/dolphy-300x200.png 300w, https://fr.wordpress.org/files/2023/03/dolphy-768x512.png 768w, https://fr.wordpress.org/files/2023/03/dolphy.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Surnommée «&nbsp;Dolphy&nbsp;» en l&rsquo;honneur du jazzman américain Eric Allan Dolphy Jr, WordPress&nbsp;6.2 est la première version majeure de 2023, et contient plus de 900 améliorations et corrections de bugs. Cette version marque une transition dans la feuille de route générale du projet open-source WordPress, car la focalisation va désormais passer de l’éditeur et de la personnalisation de sites à l&rsquo;exploration des flux de travail et de la collaboration.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-site-editor.png);background-position:25% 48%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-site-editor.png\" alt=\"\" class=\"wp-image-2662 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-site-editor.png 872w, https://fr.wordpress.org/files/2023/03/about-site-editor-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-site-editor-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-site-editor-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Explorez et modifiez tout votre site à partir de l’éditeur</h3>\n\n\n\n<p>L’interface de l&rsquo;édition de site a été revue afin de vous donner plus de contrôle sur l’expérience d’édition de votre site. Vous trouverez une prévisualisation complète de vos modèles et éléments de modèles, et pourrez passer à l’éditeur de site depuis n’importe quel écran.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-navigation.png);background-position:25% 47%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-navigation.png\" alt=\"\" class=\"wp-image-2663 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-navigation.png 872w, https://fr.wordpress.org/files/2023/03/about-navigation-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-navigation-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-navigation-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Améliorations du bloc de navigation</h3>\n\n\n\n<p>La nouvelle colonne latérale de réglages facilite la modification de la navigation de votre site. Ajoutez, supprimez et réordonnez vos éléments de menus plus rapidement, peu importe la complexité de vos menus.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-block-inserter.png);background-position:33% 52%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-block-inserter.png\" alt=\"\" class=\"wp-image-2664 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-block-inserter.png 872w, https://fr.wordpress.org/files/2023/03/about-block-inserter-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-block-inserter-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-block-inserter-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Une expérience plus fluide pour l’outil d’insertion de blocs</h3>\n\n\n\n<p>L’onglet «&nbsp;média&nbsp;» permet de glisser et déposer du contenu depuis votre médiathèque rapidement. La vue partagée facilite la navigation parmi les catégories et la prévisualisation des compositions.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-split-controls-fixed.png);background-position:24% 50%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-split-controls-fixed.png\" alt=\"\" class=\"wp-image-2665 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-split-controls-fixed.png 872w, https://fr.wordpress.org/files/2023/03/about-split-controls-fixed-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-split-controls-fixed-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-split-controls-fixed-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Une meilleure interface pour les réglages des blocs</h3>\n\n\n\n<p>La colonne latérale de réglages de vos blocs est mieux organisée, avec des onglets pour les réglages et pour les styles. Les outils dont vous avez besoin sont identifiables et facile d’accès.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-headers.png);background-position:20% 46%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-headers.png\" alt=\"\" class=\"wp-image-2666 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-headers.png 872w, https://fr.wordpress.org/files/2023/03/about-headers-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-headers-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-headers-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Des en-têtes et des pieds de page prêts à l&#8217;emploi</h3>\n\n\n\n<p>Découvrez une nouvelle collection de compositions d’en-têtes et de pieds de page. Utilisez-les avec n’importe quel thème basé sur des blocs pour en faire un point de départ rapide et de qualité pour les modèles de pages de votre site.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-openverse.png);background-position:27% 48%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-openverse.png\" alt=\"\" class=\"wp-image-2667 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-openverse.png 872w, https://fr.wordpress.org/files/2023/03/about-openverse-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-openverse-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-openverse-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Explorez les médias Openverse directement depuis l’éditeur</h3>\n\n\n\n<p>La bibliothèque d’Openverse répertorie plus de 600 millions d’images et de fichiers audio gratuits sous licence ouverte, et elle est désormais directement intégrée à l’éditeur.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-distraction-free.png);background-position:50% 50%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-distraction-free.png\" alt=\"\" class=\"wp-image-2668 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-distraction-free.png 872w, https://fr.wordpress.org/files/2023/03/about-distraction-free-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-distraction-free-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-distraction-free-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Un nouveau mode sans distraction</h3>\n\n\n\n<p>De temps en temps, il est bon de pouvoir se concentrer sur son travail. Vous pouvez maintenant masquer tous les panneaux et réglages pour vous concentrer sur l’écriture de votre contenu.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:30% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://fr.wordpress.org/files/2023/03/about-out-of-beta.png);background-position:44% 50%\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"872\" src=\"https://fr.wordpress.org/files/2023/03/about-out-of-beta.png\" alt=\"\" class=\"wp-image-2670 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-out-of-beta.png 872w, https://fr.wordpress.org/files/2023/03/about-out-of-beta-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-out-of-beta-150x150.png 150w, https://fr.wordpress.org/files/2023/03/about-out-of-beta-768x768.png 768w\" sizes=\"(max-width: 872px) 100vw, 872px\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">L’éditeur de site n’est officiellement plus en version bêta&nbsp;!</h3>\n\n\n\n<p>La version 6.2 est une invitation à découvrir le potentiel de la prochaine génération de thèmes WordPress.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 23%\"><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Un nouveau guide de styles à votre disposition</h3>\n\n\n\n<p>Utilisez le guide de style pour obtenir une vue d’ensemble de l’apparence de chaque bloc de votre site. Tout vos blocs sont affichés en un seul endroit, accessible en un clin d’œil.</p>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"560\" src=\"https://fr.wordpress.org/files/2023/03/about-style-book.png\" alt=\"\" class=\"wp-image-2671 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-style-book.png 560w, https://fr.wordpress.org/files/2023/03/about-style-book-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-style-book-150x150.png 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" /></figure></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 23%\"><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Copier / coller les styles en un clin d’œil</h3>\n\n\n\n<p>Travaillez votre design sur un type de bloc, puis copiez et collez ces styles sur d’autres blocs pour obtenir exactement l’aspect que vous souhaitez.</p>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"560\" src=\"https://fr.wordpress.org/files/2023/03/about-copy-paste.png\" alt=\"\" class=\"wp-image-2672 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-copy-paste.png 560w, https://fr.wordpress.org/files/2023/03/about-copy-paste-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-copy-paste-150x150.png 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" /></figure></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 23%\"><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">CSS personnalisé</h3>\n\n\n\n<p>Améliorez votre site à votre guise en ajoutant votre propre CSS sur votre site ou sur vos blocs, pour un niveau de contrôle encore plus important sur l’apparence de votre site.</p>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"560\" src=\"https://fr.wordpress.org/files/2023/03/about-custom-css.png\" alt=\"\" class=\"wp-image-2673 size-full\" srcset=\"https://fr.wordpress.org/files/2023/03/about-custom-css.png 560w, https://fr.wordpress.org/files/2023/03/about-custom-css-300x300.png 300w, https://fr.wordpress.org/files/2023/03/about-custom-css-150x150.png 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" /></figure></div>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Positionnement épinglé</h3>\n\n\n\n<p>Maintenez certains blocs important en haut de page lorsque les internautes la font défiler.</p>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Importation des widgets</h3>\n\n\n\n<p>Options pour importer vos widgets préférés depuis les thèmes classiques vers les thèmes basés sur des blocs.</p>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">Polices embarquées depuis les thèmes</h3>\n\n\n\n<p>Les thèmes par défaut proposés par WordPress offrent un meilleur respect des données personnelles en embarquant les polices Google en local.</p>\n\n\n\n<h3 class=\"wp-block-heading\">En savoir plus sur WordPress 6.2</h3>\n\n\n\n<p>Visitez&nbsp;<a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>&nbsp;pour des tutoriels vidéos, des ateliers en ligne, des cours et des plans de cours pour les personnes organisant des évènements, et pour des contenus présentant les nouvelles fonctionnalités de WordPress.</p>\n\n\n\n<p>Consultez notre&nbsp;<a href=\"https://fr.wordpress.org/2023/03/10/guide-des-changements-techniques-de-wordpress-6-2/\">guide des changements techniques introduits par WordPress 6.2</a>. Il contient toutes les notes techniques que vous devez connaître si vous développez sur WordPress.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/wordpress-version/version-6-2/\">Lire les notes de développement de WordPress 6.2 (en anglais)</a>&nbsp;pour obtenir plus d’informations sur les améliorations proposées et les anomalies corrigées, les informations d’installation, les notes et ressources à destination des développeuses et des développeurs, connaître les personnes ayant contribué à cette version et pour obtenir la liste des fichiers modifiés.</p>\n\n\n\n<h2 class=\"wp-block-heading\">L’équipe de direction de WP 6.2</h2>\n\n\n\n<p>Voici l’équipe qui a coordonné le développement et la sortie cette nouvelle version de WordPress&nbsp;:</p>\n\n\n\n<ul>\n<li>Direction générale&nbsp;: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Coordination de la version&nbsp;: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Direction technique du cœur WP&nbsp;: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a></li>\n\n\n\n<li>Direction technique Gutenberg&nbsp;: <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a></li>\n\n\n\n<li>Gestion de projet côté cœur WP : <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a></li>\n\n\n\n<li>Gestion de projet côté Gutenberg&nbsp;: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Responsable du design&nbsp;: <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Coordination de la documentation&nbsp;: <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseet</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a></li>\n\n\n\n<li>Coordination de la communication&nbsp;: <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li>Coordination des tests&nbsp;: <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a>, <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a></li>\n\n\n\n<li>Responsable de l&rsquo;optimisation des performances&nbsp;: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Merci aux contributeurs et contributrices</h2>\n\n\n\n<p>WordPress 6.2 n&rsquo;aurait pas pu sortir sans la contribution passionnée de plus de 600 personnes provenant d&rsquo;au moins 50 pays différents. Un remerciement tout spécial pour les 178 personnes qui ont contribué au cœur de WordPress pour la première fois avec WP&nbsp;6.2 <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> </p>\n\n\n\n<p>Les personnes listées ci-dessous démontrent la vitalité et le dynamisme de notre belle communauté open-source, merci à elles&nbsp;!</p>\n\n\n\n<p style=\"font-size:12px\"><a href=\"https://profiles.wordpress.org/10upsimon/\">10upsimon</a> · <a href=\"https://profiles.wordpress.org/254volkan/\">254volkan</a> · <a href=\"https://profiles.wordpress.org/mercime/\">@mercime</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/aeg0125/\">Aaron Graham</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abidhasan112/\">Abid Hasan</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/abtop/\">ABTOP</a> · <a href=\"https://profiles.wordpress.org/ace100/\">ace100</a> · <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/admwgn/\">Adam Wiltgen</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> · <a href=\"https://profiles.wordpress.org/adityaarora010196/\">adityaarora010196</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ajmaurya/\">Ajay Maurya</a> · <a href=\"https://profiles.wordpress.org/ajayver/\">ajayver</a> · <a href=\"https://profiles.wordpress.org/seakashdiu/\">Akash Mia</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> · <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a> · <a href=\"https://profiles.wordpress.org/albarin/\">albarin</a> · <a href=\"https://profiles.wordpress.org/alberuni-azad/\">Alberuni Azad.</a> · <a href=\"https://profiles.wordpress.org/alecgeatches/\">alecgeatches</a> · <a href=\"https://profiles.wordpress.org/aleksganev/\">Aleks Ganev</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alvastar/\">alvastar</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/amirrezatm/\">amirrezatm</a> · <a href=\"https://profiles.wordpress.org/amitbarai013/\">Amit Barai Alit</a> · <a href=\"https://profiles.wordpress.org/paulamit/\">Amit Paul</a> · <a href=\"https://profiles.wordpress.org/anantajitjg/\">Anantajit JG</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andreaboe/\">andreaboe</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/apmatthe/\">Andrew Matthews</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/aparnajl/\">Aparna Adhun</a> · <a href=\"https://profiles.wordpress.org/arrasel403/\">AR Rasel</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aravindajith/\">Aravind Ajith</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arnolp/\">arnolp</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashrafulsarkar/\">Ashraful Sarkar Naiem</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bart/\">Bart</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benish74/\">benish74</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a> · <a href=\"https://profiles.wordpress.org/bgin/\">bgin</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>&nbsp;· <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> ·&nbsp;<a href=\"https://profiles.wordpress.org/bjorn2404/\">bjorn2404</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/bonjour52/\">bonjour52</a> · <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/buutqn/\">buutqn</a> · <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia Prim</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> · <a href=\"https://profiles.wordpress.org/mcaskill/\">Chauncey McAskill</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chocofc1/\">chocofc1</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/chrisbaltazar/\">chrisbaltazar</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/chrystl/\">Chrystl</a> · <a href=\"https://profiles.wordpress.org/ckanderson22/\">ckanderson22</a> · <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a> · <a href=\"https://profiles.wordpress.org/cnspecialcolor/\">cnspecialcolor</a> · <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a> · <a href=\"https://profiles.wordpress.org/codingchicken/\">Coding Chicken</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">Cory Birdsong</a> · <a href=\"https://profiles.wordpress.org/craigfrancis/\">Craig Francis</a> · <a href=\"https://profiles.wordpress.org/craiglpeters/\">craiglpeters</a> · <a href=\"https://profiles.wordpress.org/geisthanen/\">Creative Andrew</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/dperonne/\">D.PERONNE</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dalirajab/\">dali-rajab</a> · <a href=\"https://profiles.wordpress.org/dalleyne/\">Damien Alleyne</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/wirecat/\">Daniel Johnson</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/davefx/\">David Marín Carreño</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dennisatyoast/\">Dennis Claassen</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">derekblank</a> · <a href=\"https://profiles.wordpress.org/devanshijoshi/\">devanshijoshi</a> · <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doctorlai/\">doctorlai</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donncha/\">Donncha</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">DSIGNED</a> · <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a> · <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van&nbsp;Durpe</a> · <a href=\"https://profiles.wordpress.org/emanuelx/\">emanuelx</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/edanzer/\">Erick Danzer</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> · <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fosuahmed/\">Faisal Ahmed</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fasuto/\">fasuto</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/felipelavinz/\">Felipe Lavín</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a> · <a href=\"https://profiles.wordpress.org/franz00/\">franzaurus</a> · <a href=\"https://profiles.wordpress.org/fuadragib/\">Fuad Ragib</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/grl570810/\">grl570810</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a> · <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a> · <a href=\"https://profiles.wordpress.org/hanshenrik/\">hanshenrik</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/ehtmlu/\">Helmut Wandl</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hiren1094/\">hiren sanja</a> · <a href=\"https://profiles.wordpress.org/patelhitesh/\">Hitesh Patel</a> · <a href=\"https://profiles.wordpress.org/hughiemolloy/\">hughie.molloy</a> · <a href=\"https://profiles.wordpress.org/hugodevos/\">hugodevos</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">hztyfoon</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/iazel/\">Iazel</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">ingeniumed</a> · <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a> · <a href=\"https://profiles.wordpress.org/inwerpsel/\">inwerpsel</a> · <a href=\"https://profiles.wordpress.org/iqbalrony/\">iqbalrony</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/ivanjeronimo/\">ivanjeronimo</a> · <a href=\"https://profiles.wordpress.org/jhoffmann/\">j.hoffmann</a> · <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a> · <a href=\"https://profiles.wordpress.org/jaedm97/\">Jaed Mosharraf</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> · <a href=\"https://profiles.wordpress.org/janusdev/\">janusdev</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jeanphilippegreen/\">Jean-Philippe Green</a> · <a href=\"https://profiles.wordpress.org/jeawhanlee/\">jeawhanlee</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/lobeless14/\">Jeremy Lind</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jhned/\">jhned</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jokerrs/\">Jokerrs</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/jongycastillo/\">Jong</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/jornp/\">jornp</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/welenofsky/\">Justin Welenofsky</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lenasterg/\">Lena Stergatou</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leo Milo</a> · <a href=\"https://profiles.wordpress.org/lifeboat/\">lifeboat</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a> · <a href=\"https://profiles.wordpress.org/webaxones/\">Loïc Antignac</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/dreadlox/\">Lox</a> · <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a> · <a href=\"https://profiles.wordpress.org/lucius0101/\">lucius0101</a> · <a href=\"https://profiles.wordpress.org/lucymtc/\">Lucy Tomas</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Márcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mahbubshovan/\">Mahbub Shovan</a> · <a href=\"https://profiles.wordpress.org/mahekkalola/\">Mahek Kalola</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manojkpatil/\">Manoj Patil</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/marissamakes/\">Marissa Matthews</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/marksabbath/\">marksabbath</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/matclayton/\">matclayton</a> · <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a> · <a href=\"https://profiles.wordpress.org/paapst/\">Mathieu Paapst</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">matiasbenedetto</a> · <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/matthiasreinholz/\">Matthias Reinholz</a> · <a href=\"https://profiles.wordpress.org/h4l9k/\">Mauricio</a> · <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maximej/\">Maxime J.</a> · <a href=\"https://profiles.wordpress.org/jamilbd07/\">MD Jamil Uddin</a> · <a href=\"https://profiles.wordpress.org/kawserz/\">Md Kawser Ahmed Khan Jami</a> · <a href=\"https://profiles.wordpress.org/rakibwordpress/\">Md Rakib Hossain</a> · <a href=\"https://profiles.wordpress.org/abirhasandipu/\">Md. Abir Hasan Dipu</a> · <a href=\"https://profiles.wordpress.org/reduanmasud/\">Md. Reduan Masud</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/meyegui/\">meyerdev.ch</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michael-kelly/\">Michael Kelly</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michelmany/\">Michel Many</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> · <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/presents111/\">miya</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/tanjimtc71/\">Musarrat Anjum Chowdhury</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> · <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a> · <a href=\"https://profiles.wordpress.org/nazmulhasan103/\">Nazmul Hasan</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nicholaswilson/\">nicholaswilson</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/itsnikhilpatel/\">NikhilPatel</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/rnitinb/\">Nitin Rathod</a> · <a href=\"https://profiles.wordpress.org/nitman43/\">nitman43</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a> · <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a> · <a href=\"https://profiles.wordpress.org/obayedmamur/\">Obayed Mamur</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a> · <a href=\"https://profiles.wordpress.org/oh_hello/\">oh_hello</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoney/\">PabloHoney</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a> · <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a> · <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a> · <a href=\"https://profiles.wordpress.org/phil-webster/\">Phil Webster</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/iapial/\">Pial</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/knowingart_com/\">PJ Brunet</a> · <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Ptah Dunbar</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a> · <a href=\"https://profiles.wordpress.org/raduiason/\">raduiason</a> · <a href=\"https://profiles.wordpress.org/initsogar/\">Rafael Agostini</a> · <a href=\"https://profiles.wordpress.org/rafinkhan/\">Rafin</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajeshraval786/\">Rajesh Raval</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/razthee007/\">Razthee Md. Yakini</a> · <a href=\"https://profiles.wordpress.org/renatoagds/\">Renato Augusto Gama dos Santos</a> · <a href=\"https://profiles.wordpress.org/rezakhan995/\">Reza Khan</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riccardodicurti/\">Riccardo Di Curti</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinkychowdhury9/\">Rinky Chowdhury</a> · <a href=\"https://profiles.wordpress.org/ritteshpatel/\">Ritesh Patel</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robin-labadie/\">Robin Labadie</a> · <a href=\"https://profiles.wordpress.org/rodage/\">rodage</a> · <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/digical/\">Ross Gile</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/re_enter_rupok/\">Rupok</a> · <a href=\"https://profiles.wordpress.org/rryyaanndd/\">Ryan</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/stalukder03/\">Sajib Talukder</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/sam1el/\">sam1el</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samruddhikhandale/\">samruddhikhandale</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sanjucta/\">sanjucta</a> · <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/sapayth/\">sapayth</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> · <a href=\"https://profiles.wordpress.org/saumil1611/\">Saumil Nerpagar</a> · <a href=\"https://profiles.wordpress.org/ira2910/\">Sazia Faizunnessa Ira</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/countrymusicchicago/\">Scott Winterroth</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> · <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seriouslysenpai/\">seriouslysenpai</a> · <a href=\"https://profiles.wordpress.org/wandering-aramean/\">Seth Miller</a> · <a href=\"https://profiles.wordpress.org/shahidul95/\">Shahidul Islam</a> · <a href=\"https://profiles.wordpress.org/shamayel007/\">Shamayel</a> · <a href=\"https://profiles.wordpress.org/shamimmiashuhagh/\">Shamim Mia</a> · <a href=\"https://profiles.wordpress.org/smeunus/\">Sharif Mohammad Eunus</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shubham1gupta/\">shubham1gupta</a> · <a href=\"https://profiles.wordpress.org/silicium23/\">Silicium</a> · <a href=\"https://profiles.wordpress.org/simongomes02/\">Simon Gomes</a> · <a href=\"https://profiles.wordpress.org/slieschke/\">Simon Lieschke</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/calvinalkan/\">snicco.io</a> · <a href=\"https://profiles.wordpress.org/sruthi90/\">sruthi90</a> · <a href=\"https://profiles.wordpress.org/steelwagstaff/\">SteelWagstaff</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephym/\">Stephy Miehle</a> · <a href=\"https://profiles.wordpress.org/stephymiehle/\">stephymiehle</a> · <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sun/\">sun</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/afrin29/\">Syeda Sanjida Afrin</a> · <a href=\"https://profiles.wordpress.org/syhc/\">syhc</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/syntaxart/\">syntaxart</a> · <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/tahminar27/\">tahminar27</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/tanazmasaba/\">Tanaz Masaba</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/rahmantasnia/\">Tasnia Rahman Raima</a> · <a href=\"https://profiles.wordpress.org/teebee/\">teebee</a> · <a href=\"https://profiles.wordpress.org/tekapo/\">tekapo</a> · <a href=\"https://profiles.wordpress.org/thedaysse/\">thedaysse</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/theode/\">theode</a> · <a href=\"https://profiles.wordpress.org/griffinjt/\">Thomas Griffin</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/timbroddin/\">timbroddin</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timothée Brosille</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/dziudek/\">Tomasz Dziuda</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a> · <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/travisaxton/\">travisaxton</a> · <a href=\"https://profiles.wordpress.org/triumvirate/\">triumvirate</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a> · <a href=\"https://profiles.wordpress.org/virgar/\">Virginie Garnier</a> · <a href=\"https://profiles.wordpress.org/elifvish/\">Vishal Kumar</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a> · <a href=\"https://profiles.wordpress.org/vykesmac/\">vykesmac</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webrocker/\">Webrocker</a> · <a href=\"https://profiles.wordpress.org/websitegenii/\">websitegenii</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/winterpsv/\">winterpsv</a> · <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a> · <a href=\"https://profiles.wordpress.org/wojtekn/\">Wojtek Naruniec</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yuliyan/\">Yuliyan Slavchev</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zevilz/\">zevilz</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">Merci aux personnes ayant contribué à traduire WordPress&nbsp;6.2 en français</h3>\n\n\n\n<p>WordPress est un projet international et la version 6.2 est déjà complètement disponible dans plus de 70 langues différentes.</p>\n\n\n\n<p>Nous souhaitons remercier ici les personnes ayant participé à la traduction de WordPress 6.2 en français&nbsp;:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/btpub\">Bruno Tritsch</a>,&nbsp;<a href=\"https://profiles.wordpress.org/clementpolito\">Clément Polito</a>,&nbsp;<a href=\"https://profiles.wordpress.org/fxbenard\">FX Bénard</a>, <a href=\"https://profiles.wordpress.org/eddystile\">Eddy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/emlebrun\">Emilie LEBRUN</a>,&nbsp;<a href=\"https://profiles.wordpress.org/gaellebesson\">gaellebesson</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/webaxones\">Loïc Antignac</a>,&nbsp;<a href=\"https://profiles.wordpress.org/lulucmy\">lulucmy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/oellin\">Magali</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nuryko\">Marianna</a>,&nbsp;<a href=\"https://profiles.wordpress.org/marineevain\">Marine EVAIN</a>,&nbsp;<a href=\"https://profiles.wordpress.org/maxpertici\">Maxime Pertici</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nandow\">nandow</a>,&nbsp;<a href=\"https://profiles.wordpress.org/petitphp\">petitphp</a>,&nbsp;<a href=\"https://profiles.wordpress.org/larrach\">Rachel Peter</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sebastienserre\">Sébastien SERRE</a>,&nbsp;<a href=\"https://profiles.wordpress.org/stephanepoisson\">Stéphane POISSON</a>,&nbsp;<a href=\"https://profiles.wordpress.org/spaceshipone\">Timothée Brosille</a>,&nbsp;<a href=\"https://profiles.wordpress.org/virgar\">Virginie Garnier</a>,&nbsp;<a href=\"https://profiles.wordpress.org/whaze\">whaze</a>,&nbsp;<a href=\"https://profiles.wordpress.org/alexisgrolot\">WordPress Express</a>, et&nbsp;<a href=\"https://profiles.wordpress.org/wplmillet\">wplmillet</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://fr.wordpress.org/2023/03/30/wordpress-6-2-dolphy/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:76:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Guide des changements techniques de WordPress 6.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://fr.wordpress.org/2023/03/10/guide-des-changements-techniques-de-wordpress-6-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://fr.wordpress.org/2023/03/10/guide-des-changements-techniques-de-wordpress-6-2/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2023 12:09:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:5:\"Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2612\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:475:\"Ce guide décrit les principaux changements techniques que vous trouverez sur WordPress&#160;6.2, dont la sortie est prévue le 28 mars 2023. WordPress 6.2 corrige quelque 300 tickets Trac&#160;:&#160;110 sont des améliorations et nouvelles fonctionnalités,&#160;166 sont des corrections de bogues et&#160;20 sont d’autres tâches courantes. On retrouvera 28 améliorations de performances,&#160;15 améliorations d’accessibilité et&#160;18 améliorations de [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:40678:\"\n<p>Ce guide décrit les principaux changements techniques que vous trouverez sur WordPress&nbsp;6.2, dont la sortie est prévue le 28 mars 2023.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2023/03/wp62-field-guide-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"591\" src=\"https://fr.wordpress.org/files/2023/03/wp62-field-guide-1-1024x591.png\" alt=\"\" class=\"wp-image-2614\" srcset=\"https://fr.wordpress.org/files/2023/03/wp62-field-guide-1-1024x591.png 1024w, https://fr.wordpress.org/files/2023/03/wp62-field-guide-1-300x173.png 300w, https://fr.wordpress.org/files/2023/03/wp62-field-guide-1-768x443.png 768w, https://fr.wordpress.org/files/2023/03/wp62-field-guide-1.png 1486w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>WordPress 6.2 corrige <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">quelque 300 tickets Trac</a>&nbsp;:&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.2&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">110 sont des améliorations et nouvelles fonctionnalités</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=defect+(bug)&amp;milestone=6.2&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">166 sont des corrections de bogues</a> et&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=task+(blessed)&amp;milestone=6.2&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">20 sont d’autres tâches courantes</a>.</p>\n\n\n\n<p>On retrouvera <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~performance&amp;milestone=6.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">28 améliorations de performances</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~accessibility&amp;milestone=6.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">15 améliorations d’accessibilité</a> et&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~coding-standards&amp;milestone=6.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=focuses&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">18 améliorations de code</a> notamment dédiées à la prise en charge des versions les plus récentes de PHP.</p>\n\n\n\n<p>Du côté du projet Gutenberg, <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.2\">1645 pull requests</a> ont été fusionnées au cœur de WordPress&nbsp;: 292 améliorations, 354&nbsp;corrections de bogues et 30 améliorations concernant l’accessibilité de l’éditeur.</p>\n\n\n\n<p>Les modifications apportées par WP&nbsp;6.2 concernent 44&nbsp;composants du cœur WordPress. Vous trouverez dans cet article des précisions concernant les modifications les plus impactantes.</p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#14825a\">En route pour un petit tour d’horizon des<br>nouveautés techniques de WordPress&nbsp;6.2&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Tous les liens de cet article pointent vers des notes de développement rédigées en anglais.</p>\n\n\n\n<p>L’objectif est de fournir un panorama général des changements techniques apportés par cette version, en français, puis de diriger les personnes qui souhaitent en savoir plus vers les notes de développement en anglais.</p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\">À noter&nbsp;: certaines modifications listées ici vont nécessiter des actions de la part des auteurs et autrices de thèmes et d’extensions, qui devront adapter ou modifier leur code. Si vous êtes concerné·e, veuillez lire les notes de développement listées dans cet article consciencieusement afin de vous assurer que votre code fonctionnera avec WordPress&nbsp;6.2 lorsque cette version sortira le 28&nbsp;mars 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Themes\">Les polices Google Font sont maintenant incluses localement dans les thèmes natifs</h2>\n\n\n\n<p>Suite aux incertitudes juridiques liées à l’utilisation des polices <em>Google Fonts</em> directement chargées depuis les serveurs de Google, les thèmes natifs qui embarquaient auparavant directement des polices provenant des serveurs de Google ne le feront plus à partir de WordPress 6.2.</p>\n\n\n\n<p>Cela concerne les thèmes suivants&nbsp;:</p>\n\n\n\n<ul>\n<li><em>Twenty Twelve</em> à partir de sa version 3.9</li>\n\n\n\n<li><em>Twenty Thirteen</em> à partir de sa version 3.8</li>\n\n\n\n<li><em>Twenty Fourteen</em> à partir de sa version 3.6</li>\n\n\n\n<li><em>Twenty Fifteen</em> à partir de sa version 3.4</li>\n\n\n\n<li><em>Twenty Sixteen</em> à partir de sa version 2.9</li>\n\n\n\n<li><em>Twenty Seventeen</em> à partir de sa version 3.2</li>\n</ul>\n\n\n\n<p>Les autres thèmes natifs n&rsquo;utilisent pas directement de polices Google et ne sont donc pas concernés par cette modification.</p>\n\n\n\n<p>À partir de maintenant, chaque thème concerné va servir une nouvelle feuille de styles depuis son propre répertoire, au sein du domaine de votre site. Si le thème embarque plusieurs polices différentes, votre thème les embarquera en les plaçant dans une seule feuille de styles pour de meilleures performances.</p>\n\n\n\n<p>Voici par exemple la déclaration de feuille de styles de Twenty Thirteen&nbsp;:</p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\">\n&lt;link\n rel=&quot;stylesheet&quot;\n id=&quot;twentythirteen-fonts-css&quot;\n href=&quot;https://example.com/wp-content/themes/twentythirteen/fonts/source-sans-pro-plus-bitter.css?ver=20230328&quot;\n media=&quot;all&quot;\n/&gt;\n</pre></div>\n\n\n<p>Comme vous pouvez le voir, les polices sont maintenant directement embarquées depuis les thèmes natifs, afin d’éviter toute dépendance tierce.</p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\"><strong>Attention&nbsp;: si vous avez déjà modifié ou retiré l’appel <em>Google Fonts</em> via un thème enfant ou via une extension, il est recommandé de vérifier que ce changement n’affecte pas votre site.</strong></p>\n\n\n\n<p>Pour en savoir plus, consultez la note de développement suivante&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Y9fix8byS8\"><a href=\"https://make.wordpress.org/core/2023/03/06/google-fonts-are-included-locally-in-bundled-themes/\">Google Fonts are included locally in bundled themes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Google Fonts are included locally in bundled themes&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/06/google-fonts-are-included-locally-in-bundled-themes/embed/#?secret=LQGDbnYuSO#?secret=Y9fix8byS8\" data-secret=\"Y9fix8byS8\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"blockeditor\">L’éditeur de blocs</h2>\n\n\n\n<p>WordPress 6.2 comprend 10 versions du projet Gutenberg –&nbsp;<a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">14.2</a>, <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">14.3</a>, <a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\">14.4</a>, <a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\">14.5</a>, <a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\">14.6</a>, <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">14.7</a>, <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">14.8</a>, <a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">14.9</a>, <a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">15.0</a> et <a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-1-8-february/\">15.1</a>. Vous y trouverez de nouvelles API, des mises à niveau de bibliothèques, des améliorations très utiles des Styles globaux, encore plus de fonctionnalités prises en charge nativement par les blocs, de nouveaux crochets d’action et filtres, ainsi que <a href=\"https://core.trac.wordpress.org/ticket/57471\">bien d&rsquo;autres modifications ayant été développées sur ces 10 versions de l’extension Gutenberg</a>.</p>\n\n\n\n<p>Pour en savoir plus, consultez les notes de développement suivantes&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"n2WFGSL2CC\"><a href=\"https://make.wordpress.org/core/2023/03/07/introducing-the-html-api-in-wordpress-6-2/\">Introducing the HTML API in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing the HTML API in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/introducing-the-html-api-in-wordpress-6-2/embed/#?secret=qWbjG7rDS3#?secret=n2WFGSL2CC\" data-secret=\"n2WFGSL2CC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"M82WlzFxsu\"><a href=\"https://make.wordpress.org/core/2023/03/07/upgrading-to-react-18-and-common-pitfalls-of-concurrent-mode/\">Upgrading to React 18 and common pitfalls of concurrent mode</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Upgrading to React 18 and common pitfalls of concurrent mode&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/upgrading-to-react-18-and-common-pitfalls-of-concurrent-mode/embed/#?secret=RpUH01kp4I#?secret=M82WlzFxsu\" data-secret=\"M82WlzFxsu\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"twZm3MCaTb\"><a href=\"https://make.wordpress.org/core/2023/03/06/custom-css-for-global-styles-and-per-block/\">Custom CSS for global styles and per block</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Custom CSS for global styles and per block&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/06/custom-css-for-global-styles-and-per-block/embed/#?secret=Gw8tU7aWEg#?secret=twZm3MCaTb\" data-secret=\"twZm3MCaTb\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ZNOpTU85lt\"><a href=\"https://make.wordpress.org/core/2023/02/19/style-book-preview-of-blocks-in-global-styles/\">Style Book preview of blocks in global styles</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Style Book preview of blocks in global styles&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/02/19/style-book-preview-of-blocks-in-global-styles/embed/#?secret=R3sVocacKE#?secret=ZNOpTU85lt\" data-secret=\"ZNOpTU85lt\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"qZ291B2NN6\"><a href=\"https://make.wordpress.org/core/2023/03/07/shadows-in-global-styles-with-wordpress-6-2/\">Shadows in Global Styles with WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Shadows in Global Styles with WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/shadows-in-global-styles-with-wordpress-6-2/embed/#?secret=jkJeKyBLSo#?secret=qZ291B2NN6\" data-secret=\"qZ291B2NN6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"PWtKtg9YUw\"><a href=\"https://make.wordpress.org/core/2023/03/07/sticky-position-block-support/\">Sticky position block support</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Sticky position block support&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/sticky-position-block-support/embed/#?secret=AtzJ8mk5KI#?secret=PWtKtg9YUw\" data-secret=\"PWtKtg9YUw\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"U2DStPkdCp\"><a href=\"https://make.wordpress.org/core/2023/03/06/minimum-height-dimensions-block-support/\">Minimum height dimensions block support</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Minimum height dimensions block support&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/06/minimum-height-dimensions-block-support/embed/#?secret=uWwtmaDTGe#?secret=U2DStPkdCp\" data-secret=\"U2DStPkdCp\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"BUfnEQcoGS\"><a href=\"https://make.wordpress.org/core/2023/02/28/custom-settings-wordpress-6-2/\">Customize settings for any block in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Customize settings for any block in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/02/28/custom-settings-wordpress-6-2/embed/#?secret=i3GL0VbSTi#?secret=BUfnEQcoGS\" data-secret=\"BUfnEQcoGS\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"pwoOs2XiSD\"><a href=\"https://make.wordpress.org/core/2023/03/07/introduction-of-block-inspector-tabs/\">Introduction of Block Inspector Tabs</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introduction of Block Inspector Tabs&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/introduction-of-block-inspector-tabs/embed/#?secret=Kwhyyzdi8U#?secret=pwoOs2XiSD\" data-secret=\"pwoOs2XiSD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"xxeDIgaDji\"><a href=\"https://make.wordpress.org/core/2022/12/09/update-to-content-only-editing-filter-namespace/\">Update to content only editing filter namespace</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Update to content only editing filter namespace&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/12/09/update-to-content-only-editing-filter-namespace/embed/#?secret=Od8kWWwqTv#?secret=xxeDIgaDji\" data-secret=\"xxeDIgaDji\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"8kFEsRew5m\"><a href=\"https://make.wordpress.org/core/2023/03/06/add-new-prop-to-serversiderender-component/\">Add new prop to ServerSideRender component</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Add new prop to ServerSideRender component&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/06/add-new-prop-to-serversiderender-component/embed/#?secret=SCVQjiLIpb#?secret=8kFEsRew5m\" data-secret=\"8kFEsRew5m\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"09NBil83hn\"><a href=\"https://make.wordpress.org/core/2023/03/03/editor-components-updates-in-wordpress-6-2/\">Editor Components updates in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Editor Components updates in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/03/editor-components-updates-in-wordpress-6-2/embed/#?secret=oQ4gEUSTac#?secret=09NBil83hn\" data-secret=\"09NBil83hn\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"JCZNnjDtnD\"><a href=\"https://make.wordpress.org/core/2023/03/07/patterns-api-expanded-to-include-template_types-property/\">Patterns API expanded to include template_types property</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Patterns API expanded to include template_types property&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/patterns-api-expanded-to-include-template_types-property/embed/#?secret=FcP78xalny#?secret=JCZNnjDtnD\" data-secret=\"JCZNnjDtnD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"4QJSGLeOEy\"><a href=\"https://make.wordpress.org/core/2023/03/07/miscellaneous-editor-changes-in-wordpress-6-2/\">Miscellaneous Editor changes in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous Editor changes in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/miscellaneous-editor-changes-in-wordpress-6-2/embed/#?secret=wSzZ6hh85H#?secret=4QJSGLeOEy\" data-secret=\"4QJSGLeOEy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Internationalisation</h2>\n\n\n\n<p>Dans WordPress 6.2, le composant internationalisation (abrégé «&nbsp;i18n&nbsp;») propose une nouvelle fonction conteneur et propose de faciliter le changement des traductions de l’administration du site pour chaque compte. Voici la note de développement dédiée aux modifications ayant eu lieu sur ce composant&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"PmeBBCqf9M\"><a href=\"https://make.wordpress.org/core/2023/03/03/i18n-improvements-in-6-2/\">I18N Improvements in 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;I18N Improvements in 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/03/i18n-improvements-in-6-2/embed/#?secret=oN9FSuxaex#?secret=PmeBBCqf9M\" data-secret=\"PmeBBCqf9M\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">API de gestion des fichiers système</h2>\n\n\n\n<p>Si vous utilisiez la fonction <code>copy_dir()</code> pour déplacer des répertoires, vous serez probablement heureux de découvrir la nouvelle fonction <code>move_dir()</code>, qui arrive avec WordPress 6.2.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"iD9AZGTuz0\"><a href=\"https://make.wordpress.org/core/2023/03/07/introducing-move_dir-in-wordpress-6-2/\">Introducing move_dir() in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing move_dir() in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/introducing-move_dir-in-wordpress-6-2/embed/#?secret=2lu0bdfgVX#?secret=iD9AZGTuz0\" data-secret=\"iD9AZGTuz0\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Notons également l&rsquo;apparition de la fonction <code>wp_opcache_invalidate()</code>&nbsp;qui sert à vider OPcache pour des fichiers PHP individuels après les avoir surchargés. La fonction &nbsp;<code>wp_opcache_invalidate_directory()</code>&nbsp;a été ajoutée dans le cadre du ticket <a href=\"https://core.trac.wordpress.org/ticket/57375\">#57375</a> afin de vider le cache OPcache de façon récursive pour les fichiers PHP après les avoir surchargés. Cette fonction accepte un paramètre unique <code>$dir</code>, pointant vers le répertoire contenant les fichiers PHP pour lesquels OPcache doit être vidé.</p>\n\n\n\n<p>Dans le ticket <a href=\"https://core.trac.wordpress.org/ticket/57375\">#57375</a>, la méthode&nbsp;<code>WP_Filesystem_Direct::move()</code>&nbsp;a reçu la possibilité de gérer des répertoires afin de la rendre cohérente par rapport aux méthodes <code>::move()</code> présentes dans <code>WP_Filesystem_FTPext</code>,&nbsp;<code>WP_Filesystem_ftpsockets</code>&nbsp;et&nbsp;<code>WP_Filesystem_SSH2</code>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Base de données</h2>\n\n\n\n<p>La possibilité de nettoyer les noms de tables et de champs a été ajoutée dans la méthode <code>wpdb::prepare()</code>. Plus d&rsquo;infos dans la note de développement dédiée&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"8Mu29VU4GA\"><a href=\"https://make.wordpress.org/core/2022/10/08/escaping-table-and-field-names-with-wpdbprepare-in-wordpress-6-1/\">Escaping Table and Field names with wpdb::prepare() in WordPress</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Escaping Table and Field names with wpdb::prepare() in WordPress&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/08/escaping-table-and-field-names-with-wpdbprepare-in-wordpress-6-1/embed/#?secret=du2jY7znoa#?secret=8Mu29VU4GA\" data-secret=\"8Mu29VU4GA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Gestion des publications</h2>\n\n\n\n<p>La fonction <code>get_page_by_title()</code> est maintenant dépréciée en faveur de l&rsquo;utilisation de <code>WP_Query</code>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"iFjyMSq3Ii\"><a href=\"https://make.wordpress.org/core/2023/03/06/get_page_by_title-deprecated/\">get_page_by_title() deprecated</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;get_page_by_title() deprecated&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/06/get_page_by_title-deprecated/embed/#?secret=LWF768ee3z#?secret=iFjyMSq3Ii\" data-secret=\"iFjyMSq3Ii\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"perfs\">Performances</h2>\n\n\n\n<p>WordPress 6.2 apporte plusieurs gains de temps de chargement importants au cœur du CMS. Cela est clairement visualisable dans les tests que nous avons conduits avec des mesures de <a href=\"https://docs.google.com/spreadsheets/d/1LroIJoYz-O9CpfJzaiKYYMWJ7GbE5RZoW1rf1R4FqyA/edit#gid=996638482\">signaux web essentiels (<em>Web Vitals</em> en anglais)</a> et de <a href=\"https://docs.google.com/spreadsheets/d/1LroIJoYz-O9CpfJzaiKYYMWJ7GbE5RZoW1rf1R4FqyA/edit#gid=0\">chargement côté serveur (<em>Server Timing</em> en anglais)</a>.</p>\n\n\n\n<p>Les performances des thèmes basés sur des blocs ont également été améliorées, avec un <a href=\"https://web.dev/ttfb/\">TTFB (en anglais <em>Time to First Byte</em>, ou temps de chargement du premier octet</a>) qui est environ 20&nbsp;% plus rapide, et aussi 14&nbsp;% d&rsquo;amélioration sur le <a href=\"https://web.dev/lcp/\">LCP (<em>Largest Contenful Paint</em>, représentant le temps avant que la page complète soit lisible)</a>. Sur des pages où vous utilisez de grandes bannières d’images, vous devriez même observer une amélioration du critère LCP d&rsquo;environ 19&nbsp;%.</p>\n\n\n\n<p>Autres améliorations de performances&nbsp;:</p>\n\n\n\n<ul>\n<li>Le nouveau filtre <code>pre_wp_load_alloptions</code> permet de court-circuiter le chargement des options auto-chargées de WordPress avec des conditions personnalisées. Voir le <a href=\"https://core.trac.wordpress.org/ticket/56045\">ticket #56045</a> pour plus d&rsquo;informations.</li>\n\n\n\n<li>Les résultats de la fonction <code>get_adjacent_post()</code> sont maintenant mis en cache. Voir le <a href=\"https://core.trac.wordpress.org/ticket/41131\">ticket #41131</a>.</li>\n\n\n\n<li>Les clés de mise en cache de <code>WP_Term_Query</code> sont dorénavant basées sur du SQL sans variables, afin de pouvoir être mises en cache. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57298\">ticket #57298</a>.</li>\n\n\n\n<li><code>WP_Query</code> ne parcourt désormais plus les publications deux fois avant de les retourner. Ça peut paraître une évidence, mais le <a href=\"https://core.trac.wordpress.org/ticket/57373\">ticket #57373</a> a nécessité beaucoup de travail sur ce point.</li>\n\n\n\n<li>Le chargement différé des métadonnées des termes de taxonomies est à présent plus rapide, grâce à l’utilisation de la fonction <code>wp_cache_get_multiple()</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57150\">ticket #57150</a>.</li>\n\n\n\n<li>Les résultats de <code>wp_get_global_settings()</code> sont maintenant placés en cache au sein d’une seule et unique requête, ce qui améliore de 8&nbsp;% les temps de réponse du cœur WordPress. Pour en savoir plus, voir le <a href=\"https://core.trac.wordpress.org/ticket/57502\">ticket #57502</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thèmes</h2>\n\n\n\n<p>Les développeuses et développeurs de thèmes WordPress pourront apprécier l&rsquo;arrivée de nouvelles fonctionnalités, et devront aussi prendre en compte la suppression de certains fonctionnalités obsolètes&nbsp;:</p>\n\n\n\n<ul>\n<li>La fonctionnalité «&nbsp;Variations de styles&nbsp;» a été ajoutée dans la liste des filtres sur les thèmes sur WordPress.org. Voir le <a href=\"https://core.trac.wordpress.org/ticket/56869\">ticket #56869</a>.</li>\n\n\n\n<li>Le fichier <code>theme.json</code> prend maintenant en charge davantage de pseudo-classes CSS liées aux liens hypertextes, comme <code>:link</code>&nbsp;ou&nbsp;<code>:any-link</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57053\">ticket #57053</a>.</li>\n\n\n\n<li>Les thèmes possédant un nom composé de chiffres sont désormais pris en charge par le CMS via un changement dans&nbsp;<code>WP_Theme::__construct()</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/54645\">ticket #54645</a>.</li>\n\n\n\n<li>Amélioration des performances des fonctions <code>_add_block_template_part_area_info</code> et <code>_add_block_template_info</code> en diminuant les appels à la fonction <code>get_option</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57077\">ticket #57077</a>.</li>\n\n\n\n<li>Une mise en cache a été ajoutée sur <code>WP_Theme::is_block_theme()</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57114\">ticket #57114</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Bibliothèques externes</h2>\n\n\n\n<p>La bibliothèque jQuery a été mise à jour, elle est passée de la version 3.6.3 à 3.6.4.</p>\n\n\n\n<p>En outre, la bibliothèque <code>Requests</code> a aussi été mise à jour. Une note de développement détaille d&rsquo;ailleurs les changements apportés&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"bkYeQfRrWr\"><a href=\"https://make.wordpress.org/core/2023/03/08/requests-library-upgraded-to-2-0-5-in-wordpress-6-2/\">Requests library upgraded to 2.0.5 in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Requests library upgraded to 2.0.5 in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/08/requests-library-upgraded-to-2-0-5-in-wordpress-6-2/embed/#?secret=KYn2V4QANu#?secret=bkYeQfRrWr\" data-secret=\"bkYeQfRrWr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Autres mises à jour</h2>\n\n\n\n<p>Plusieurs crochets d’action et filtres ont été mis à jour, vous les trouverez dans la note de développement suivante&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"NbmRoqD5xC\"><a href=\"https://make.wordpress.org/core/2023/03/07/miscellaneous-developer-changes-in-wordpress-6-2/\">Miscellaneous developer changes in WordPress 6.2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous developer changes in WordPress 6.2&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2023/03/07/miscellaneous-developer-changes-in-wordpress-6-2/embed/#?secret=mwuiUZgXSy#?secret=NbmRoqD5xC\" data-secret=\"NbmRoqD5xC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wait\">Mais ce n’est pas tout&nbsp;!</h2>\n\n\n\n<p>Voici d’autres composants qui ont reçu des mises à jour notables.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Processus de chargement de WP</h3>\n\n\n\n<p>Ajout d&rsquo;une vérification que les fonctions&nbsp;<code>mysqli_connect()</code>&nbsp;ou&nbsp;<code>mysql_connect()</code>&nbsp;sont bien disponibles. Cela résout une erreur fatale potentiellement provoquée par l&rsquo;absence de l’extension PHP <code>mysqli</code> sur le serveur, et affiche un message d&rsquo;erreur clair le cas échéant. Voir le ticket <a href=\"https://core.trac.wordpress.org/ticket/51988\">#51988</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Commentaires</h3>\n\n\n\n<p>Ajout de la possibilité de passer le paramètre&nbsp;<code>$comment_ID</code>&nbsp;aux fonctions <code>get_comment_time()</code> et <code>comment_time()</code>. Cela apporte une meilleure cohérence vis-à-vis des fonctions similaires <code>get_comment_date()</code> et <code>comment_date()</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/52322\">ticket #52322</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Mots de passe d’applications</h3>\n\n\n\n<p>Les URL en <code>HTTP</code> sont désormais autorisées pour la création de mots de passe d’applications dans le cadre d’un environnement local. Voir le <a href=\"https://core.trac.wordpress.org/ticket/52617\">ticket #52617</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bibliothèques externes</h3>\n\n\n\n<p>Les bibliothèques suivantes ont été mises à jour&nbsp;:</p>\n\n\n\n<ul>\n<li>jQuery (voir le <a href=\"https://core.trac.wordpress.org/ticket/57324\">ticket #57324</a>)</li>\n\n\n\n<li>jQuery Migrate (voir le <a href=\"https://core.trac.wordpress.org/ticket/56743\">ticket #56743</a>)</li>\n\n\n\n<li>PHPMailer (voir le <a href=\"https://core.trac.wordpress.org/ticket/57281\">ticket #57281</a>)</li>\n\n\n\n<li>element-closest (voir le <a href=\"https://core.trac.wordpress.org/ticket/52851\">ticket#52851</a>)</li>\n\n\n\n<li>regenerator runtime (voir le <a href=\"https://core.trac.wordpress.org/ticket/57646\">ticket #57646</a>)</li>\n\n\n\n<li>polyfill-library (voir le <a href=\"https://core.trac.wordpress.org/ticket/57646\">ticket #57646</a>)</li>\n\n\n\n<li>Requests 2.0 (voir le <a href=\"https://core.trac.wordpress.org/ticket/54504\">ticket #54504</a>). Pour en savoir plus sur cette mise à jour,&nbsp;<a href=\"https://github.com/WordPress/Requests/blob/stable/docs/upgrading.md\">voir la documentation de la bibliothèque Requests 2.0</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Formattage</h3>\n\n\n\n<p>Optimisation de la fonction de bas niveau&nbsp;<code>wp_kses_bad_protocol()</code>&nbsp;afin d&rsquo;améliorer les performances de la fonction d&rsquo;échappement&nbsp;<code>esc_url()</code>. Voir le <a href=\"https://core.trac.wordpress.org/ticket/52617\">ticket #22951</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Modernisation du code</h3>\n\n\n\n<p>Un énorme travail a été fait pour améliorer encore la conformité de la structure du code de WordPress vis-à-vis des versions de PHP supérieures à 8.0. Voir le <a href=\"https://core.trac.wordpress.org/ticket/56788\">ticket #56788</a>. </p>\n\n\n\n<h3 class=\"wp-block-heading\">E-mails</h3>\n\n\n\n<p>L&rsquo;ajout de pièce jointes avec noms de fichiers personnalisés dans la fonction <code>wp_mail()</code> est maintenant possible en passant un tableau associatif <code>$attachments</code>, où les chaînes utilisées en tant que clés seront employées pour déterminer les noms de fichiers. Voir le <a href=\"https://core.trac.wordpress.org/ticket/28407\">ticket #28407</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Médias</h3>\n\n\n\n<p>Il est maintenant possible de fournir explicitement une valeur booléenne <code>false</code> au paramètre&nbsp;<code>$attr</code>&nbsp;de la fonction <code>wp_get_attachment_image()</code> afin de s&rsquo;assurer que l&rsquo;attribut <code>decoding</code> n&rsquo;est pas ajouté au média. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57086\">ticket #57086</a>.</p>\n\n\n\n<p>La logique permettant de déterminer les images participant au <a href=\"https://web.dev/lcp/\">LCP (<em>Largest Contenful Paint</em>, représentant le temps avant que la page complète soit lisible)</a> au sein des thèmes basés sur des blocs a été grandement améliorée, afin de s&rsquo;assurer que ces images ne soient pas chargées en différé. Cela permet d&rsquo;améliorer la conformité LCP des thèmes basés sur des blocs. Cette modification tire par ailleurs profit du principe des éléments de modèles de l&rsquo;éditeur de site pour éviter de charger en différé les médias situés dans l&rsquo;entête du site. Un <a href=\"https://core.trac.wordpress.org/ticket/56930#comment:53\">test conduit sur une page créée via un thème basé sur des blocs</a> a permis de souligner une amélioration de <strong>19&nbsp;% du critère LCP sur WordPress 6.2</strong>. Voir les tickets <a href=\"https://core.trac.wordpress.org/ticket/56930\">#56930</a> et <a href=\"https://core.trac.wordpress.org/ticket/57490\">#57490</a> pour plus de détails.</p>\n\n\n\n<h3 class=\"wp-block-heading\">API REST</h3>\n\n\n\n<p>Ajout de la prise en charge de caractères non latins dans la Regex utilisée pour le point de terminaison <code>template</code>. Ces caractères sont encodés afin de pouvoir être utilisés dans une URL (exemple&nbsp;:&nbsp;<code>%cf%84%ce%b5%cf%83%cf%84</code>). Voir le <a href=\"https://core.trac.wordpress.org/ticket/57329\">ticket #57329</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gestion des comptes</h3>\n\n\n\n<p>Ajout du nouveau crochet d&rsquo;action&nbsp;<code>wp_set_password</code>, déclenché après la création d&rsquo;un mot de passe pour un compte déterminé. Cela aidera les auteur·ices d&rsquo;extensions à intercepter toutes les utilisations de <code>wp_set_password()</code>, qu&rsquo;elles proviennent du cœur de WordPress ou d&rsquo;autres extensions. Voir le <a href=\"https://core.trac.wordpress.org/ticket/57490\">ticket #57436</a>.</p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#fee7af\">Que vous développiez des thèmes ou des extensions, pensez à tester et retester votre code pour vous assurer de sa compatibilité avec ces changements. Vous pouvez utiliser&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">l’extension Beta Tester</a>&nbsp;sur un site de test pour vérifier la compatibilité de vos développements avec <a href=\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-1/\">WordPress 6.2&nbsp;Release Candidate&nbsp;1</a>.&nbsp;Nous comptons sur vous pour vous assurer que votre code fonctionne correctement avec le cœur du CMS, pour le bien des millions d’utilisateurs et utilisatrices de WordPress&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Ce guide a été traduit de l&rsquo;anglais puis adapté à partir du <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\"><em>Field Guide</em> de WP 6.2</a> par <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>. Merci à <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">FX Bénard</a> et <a href=\"https://profiles.wordpress.org/btpub/\">Bruno Tritsch</a> pour leur relecture attentive.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://fr.wordpress.org/2023/03/10/guide-des-changements-techniques-de-wordpress-6-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Questionnaire annuel sur votre expérience d’utilisation de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://fr.wordpress.org/2022/12/05/questionnaire-annuel-sur-votre-experience-dutilisation-de-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://fr.wordpress.org/2022/12/05/questionnaire-annuel-sur-votre-experience-dutilisation-de-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Dec 2022 10:33:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Questionnaires/sondages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2577\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:378:\"Chaque année, les membres de la communauté WordPress sont invités à donner leurs retours sur WordPress. Chaque personne gravitant autour de notre CMS est concernée, qu’elle en soit simple utilisatrice, ou qu’elle participe à la conception ou à la production de sites, d’extensions, de thèmes, ou même au développement de WordPress ou de sa communauté. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4827:\"\n<p>Chaque année, les membres de la communauté WordPress sont invités à donner leurs retours sur WordPress. Chaque personne gravitant autour de notre CMS est concernée, qu’elle en soit simple utilisatrice, ou qu’elle participe à la conception ou à la production de sites, d’extensions, de thèmes, ou même au développement de WordPress ou de sa communauté.</p>\n\n\n\n<p>Les retours obtenus par ce questionnaire sont utilisés pour la conférence annuelle du co-fondateur de WordPress, le <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\"><em lang=\"en\">State of the Word</em></a> et auront une influence sur la direction stratégique du projet dans les années à venir.</p>\n\n\n\n<p>Pour le dire plus simplement, ce questionnaire aide les personnes qui construisent WordPress à en savoir plus sur la façon dont ce logiciel est utilisé.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/fr-2022\">Je participe au questionnaire annuel&nbsp;!</a></div>\n</div>\n\n\n\n<span id=\"more-2577\"></span>\n\n\n\n<p>Cette année encore, le questionnaire est disponible en plusieurs langues – dont le français – grâce à l’aide des différentes équipes de traduction du CMS, merci à elles !</p>\n\n\n\n<p>Ce questionnaire sera accessible jusqu’à la fin de l’année 2022, et la publication des résultats est prévue courant 2023. Cette année, les questions ont été revues afin de faciliter le déroulement, la réalisation et l’analyse de l&rsquo;enquête. Certaines questions ont été supprimées, tandis que quelques nouvelles sont désormais présentes, reflétant le présent et l’avenir de WordPress. Si vous cherchez l’analyse des résultats de l’enquête de 2021, elle sera également partagée début 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Faites passer le message</h2>\n\n\n\n<p>Aidez à faire connaître le questionnaire en le partageant avec votre réseau, via Slack, ou sur vos comptes de réseaux sociaux. Plus il y aura de personnes qui répondront au questionnaire et partageront leur expérience avec WordPress, plus l’ensemble du projet en bénéficiera.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sécurité et confidentialité</h2>\n\n\n\n<p>La sécurité et la confidentialité des données sont primordiales pour le projet et la communauté WordPress. Dans cet esprit, toutes les données personnelles sont rendues anonymes&nbsp;: aucune adresse e-mail ou adresse IP ne sera associée aux résultats publiés. Pour en savoir plus sur les pratiques de WordPress.org en matière de confidentialité, consultez la <a href=\"https://fr.wordpress.org/about/privacy/\">politique de confidentialité</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Merci</h2>\n\n\n\n<p>Nous remercions les contributeurs et contributrices WordPress suivants pour leur aide à la mise en œuvre de ce questionnaire annuel, comprenant la création des questions, la réflexion stratégique, l’élaboration de l’enquête et sa traduction&nbsp;:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschin</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili/\">_dorsvenabili</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">angelasjin</a>, <a href=\"https://profiles.wordpress.org/arkangel/\">arkangel</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">fernandot</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">jpantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a>, <a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">nielslange</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">peiraisotta</a>, <a href=\"https://profiles.wordpress.org/piermario/\">piermario</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">santanainniss</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><small><em>Traduction du communiqué par <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> et <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>.</em></small></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://fr.wordpress.org/2022/12/05/questionnaire-annuel-sur-votre-experience-dutilisation-de-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 6.1 « Misha »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://fr.wordpress.org/2022/11/02/wordpress-6-1-misha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://fr.wordpress.org/2022/11/02/wordpress-6-1-misha/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Nov 2022 03:12:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions de WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2551\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"La troisième version majeure de WordPress pour l&#8217;année 2022 est disponible. Elle a été baptisée «&#160;Misha&#160;» en l&#8217;honneur du pianiste de jazz Michail Jefimowitsch Alperin. Nous vous invitons à effectuer cette mise à jour afin de bénéficier des améliorations de stabilité, de performances, et d&#8217;utilisabilité que propose cette nouvelle version majeure. Quoi de neuf dans [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:80292:\"\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2022/11/misha.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"679\" src=\"https://fr.wordpress.org/files/2022/11/misha-1024x679.png\" alt=\"\" class=\"wp-image-2554\" srcset=\"https://fr.wordpress.org/files/2022/11/misha-1024x679.png 1024w, https://fr.wordpress.org/files/2022/11/misha-300x199.png 300w, https://fr.wordpress.org/files/2022/11/misha-768x509.png 768w, https://fr.wordpress.org/files/2022/11/misha-1536x1019.png 1536w, https://fr.wordpress.org/files/2022/11/misha.png 1996w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p><span style=\"font-weight: 400\">La troisième version majeure de WordPress pour l&rsquo;année 2022 est disponible.</span> Elle a été baptisée «&nbsp;Misha&nbsp;» en l&rsquo;honneur du pianiste de jazz Michail Jefimowitsch Alperin.</p>\n\n\n\n<p>Nous vous invitons à effectuer cette mise à jour afin de bénéficier des améliorations de stabilité, de performances, et d&rsquo;utilisabilité que propose cette nouvelle version majeure.</p>\n\n\n\n<span id=\"more-2551\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Quoi de neuf dans WordPress&nbsp;6.1&nbsp;?</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Twenty Twenty-Three&nbsp;: un nouveau thème natif proposant 10 variations de styles distinctes</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2022/11/Style-Variation-News-1024x601.png\" alt=\"\" class=\"wp-image-13816\" /></figure>\n\n\n\n<p>S’appuyant sur les principes fondamentaux des versions 5.9 et 6.0 pour les thèmes de blocs et les variations de style, le nouveau thème par défaut, nommé <em>Twenty Twenty-Three</em>, comprend&nbsp;<a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">10 variations de styles différentes</a>&nbsp;et est&nbsp;<a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">accessible</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Une meilleure expérience de création avec de nouveaux modèles entièrement revus</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2022/11/Templates-News-1024x601.png\" alt=\"\" class=\"wp-image-13818\" /></figure>\n\n\n\n<p>Les&nbsp;<a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">nouveaux modèles (note de développement, en anglais)</a>&nbsp;comprennent un modèle personnalisé pour les publications dans l’éditeur de site. Les outils de recherche/remplacement accélèrent la conception des&nbsp;<a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">éléments de modèles (en anglais)</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Plus de cohérence et de contrôle sur les outils de conception</h3>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-7 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" data-id=\"13819\" src=\"https://wordpress.org/news/files/2022/11/Design-Tools-News-1024x601.png\" alt=\"\" class=\"wp-image-13819\" /></figure>\n</figure>\n\n\n\n<p>L’amélioration des&nbsp;commandes pour les éléments de conception et les blocs&nbsp;rendent le processus de mise en page et de création de site plus cohérent, complet et intuitif.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Les menus peuvent être créés et modifiés plus facilement</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2022/11/Navigation-1024x601.png\" alt=\"\" class=\"wp-image-13821\" /></figure>\n\n\n\n<p>Les&nbsp;<a href=\"https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/\">nouvelles options de récupération du bloc Navigation (en anglais)</a>&nbsp;vous permettent de modifier le menu que vous avez ouvert sans avoir besoin d’effectuer de recherche. De plus, les commandes pour choisir et travailler sur les menus sont dorénavant placées dans les réglages du bloc. Le système de menu mobile bénéficie également d’une mise à jour avec de nouvelles fonctionnalités comprenant plusieurs options d’icônes pour personnaliser le menu.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Amélioration de la mise en page et de la visualisation des réglages des publications</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2022/11/Document-settings-News-1024x601.png\" alt=\"\" class=\"wp-image-13825\" /></figure>\n\n\n\n<p>Un affichage plus propre et mieux organisé vous permet de visualiser et de gérer facilement les réglages importants des publications, en particulier au niveau du sélecteur de modèles et de l’outil de planification.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Réglage de verrouillage en un clic pour tous les blocs internes</h3>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-9 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" data-id=\"13824\" src=\"https://wordpress.org/news/files/2022/11/Lock-News-1024x601.png\" alt=\"\" class=\"wp-image-13824\" /></figure>\n</figure>\n\n\n\n<p>Lorsque vous verrouillez des blocs, une nouvelle option vous permet d’appliquer vos réglages de verrouillage à tous les blocs d’un bloc conteneur tel que le bloc Groupe, Couverture ou encore Colonnes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Amélioration des textes indicatifs des blocs</h3>\n\n\n\n<p>Les textes indicatifs de plusieurs blocs ont été améliorés, afin de mieux refléter les options de personnalisation qui vous permettent de concevoir votre site et son contenu. Par exemple, le texte d’aide du bloc Image affiche les réglages personnalisés des bordures et des filtres duotones avant même de sélectionner l’image à afficher.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Composez des listes et des citations enrichies en y plaçant des blocs internes</h3>\n\n\n\n<p>Les blocs Liste et Citation prennent désormais en charge les blocs internes, ce qui permet des compositions plus flexibles et plus riches, par exemple en vous permettant d’ajouter des titres à l’intérieur de vos blocs de citations.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Du texte plus <em>responsive</em> avec une typographie fluide</h3>\n\n\n\n<p>La <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/#fluid-typography-support\"></a><a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\">typographie fluide (en anglais)</a>&nbsp;vous permet de définir des tailles de police qui s’adaptent pour faciliter la lecture sur n’importe quelle taille d’écran.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Ajoutez des suggestions de compositions pour vos types de publications</h3>\n\n\n\n<p>Dans WordPress 6.0, lorsque vous ajoutiez une nouvelle page, vous pouviez voir des suggestions de compositions afin d’éviter de partir d’une page vide. Avec WordPress 6.1 vous verrez cette fenêtre modale lors de la création de n’importe quel type de publication.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Facilitation de la recherche de thèmes basés sur des blocs</h3>\n\n\n\n<p>Le répertoire des thèmes contient&nbsp;<a href=\"https://fr.wordpress.org/themes/tags/full-site-editing/\">un filtre pour les thèmes basés sur des blocs</a>, et l’aperçu des compositions donne une meilleure idée de ce à quoi le thème pourrait ressembler lorsque vous explorez les thèmes et les compositions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Conservez les réglages de l’éditeur de site pour plus tard</h3>\n\n\n\n<p>Les réglages de l’éditeur de site sont désormais&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">persistants pour chaque compte</a>. Cela signifie que vos réglages seront désormais cohérents sur tous les navigateurs et appareils.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Un système de gestion des styles simplifié</h3>\n\n\n\n<p>Les règles CSS pour les marges internes et externes, la typographie, les couleurs et les bordures du&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">moteur de styles</a>&nbsp;sont désormais regroupées au même endroit, ce qui diminue le temps consacré aux tâches de mise en page et aide à générer des noms de classes sémantiques.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Amélioration de l’accessibilité de l’administration et de l’éditeur</h3>\n\n\n\n<p>Plus de 40 améliorations de l’accessibilité ont été réalisées, comprenant la résolution des problèmes de perte de focus dans l’éditeur, l’amélioration des libellés de formulaires et de la restitution vocale des messages, l’amélioration de l’interface de modifications des textes alternatifs, la correction du débordement du menu d’administration sur les petits écrans ou en zoom navigateur. En savoir plus sur les&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">améliorations d’accessibilité apportées par WP 6.1</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Autres changements importants</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Éléments de modèles de blocs dans les thèmes classiques</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\"></a>Les éléments de modèles de blocs peuvent désormais être <a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">définis dans les thèmes classiques (en anglais)</a>&nbsp;en ajoutant les fichiers HTML appropriés au répertoire&nbsp;<code>parts</code>&nbsp;à la racine du thème.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Évolution des blocs de boucle de requête</h3>\n\n\n\n<p>Les&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\">nouveaux filtres</a>&nbsp;permettent aux variantes du bloc de requête de prendre en charge des requêtes personnalisées afin de créer des variantes plus spécifiques et des options avancées de filtrage des types de publication hiérarchiques.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Des filtres pour tous vos styles</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\"><a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\">Exploitez les filtres</a> dans la barre latérale « Styles » pour contrôler les réglages sur quatre niveaux de votre site, du moins spécifique au plus spécifique : principal, thème, compte, bloc.</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">Préréglages d’espacement pour une conception plus rapide et cohérente</h3>\n\n\n\n<p>Gagnez du temps et évitez de coder en dur des déclarations dans un thème grâce aux&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/\">valeurs de marge internes et externes prédéfinies pour de multiples blocs</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Modification limitée au contenu sur les blocs conteneurs</h3>\n\n\n\n<p>Grâce au&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/\">réglage de modification limitée au contenu</a>, les mises en page peuvent être verrouillées au sein des blocs conteneurs. Dans un bloc de contenu seul, ses blocs enfants sont invisibles dans la vue en liste et ne sont pas modifiables. Vous contrôlez donc la mise en page tandis que vos rédactrices et rédacteurs peuvent se concentrer sur le contenu.</p>\n\n\n\n<p>Combinez-la avec les options de verrouillage des blocs pour un contrôle encore plus poussé de vos blocs.</p>\n\n\n\n<h3 class=\"wp-block-heading\">De meilleures performances</h3>\n\n\n\n<p>WordPress 6.1 résout 25 tickets dédiés à l’amélioration des performances. De&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/10/performance-improvements-to-the-rest-api/\">l’API REST</a>&nbsp;au&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\">multisite</a>, en passant par&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/07/improvements-to-wp_query-performance-in-6-1/\"><code>WP_Query</code></a>&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/\">l’enregistrement des blocs du cœur WordPress</a>&nbsp;et par de&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/06/new-cache-site-health-checks-in-wordpress-6-1/\">nouvelles vérifications sur l’outil Santé du site</a>, ou par l’ajout des attributs&nbsp;<code>async</code>&nbsp;aux images, il y a des améliorations bénéfiques pour tous les types de sites. Un récapitulatif complet est disponible dans le&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">guide dédié aux performance de WP&nbsp;6.1</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Guide des changements techniques de WordPress 6.1</h2>\n\n\n\n<p>WordPress 6.1 comprend encore bien plus de nouvelles fonctionnalités et d’améliorations. Pour en savoir plus, et notamment si vous développez des sites WordPress, <a href=\"https://fr.wordpress.org/2022/10/12/guide-des-changements-techniques-de-wordpress-6-1/\" data-type=\"post\" data-id=\"2509\">consultez le guide des changements techniques de cette version</a>.</p>\n\n\n\n<h1 class=\"wp-block-heading\">Plus d’informations sur WordPress 6.1</h1>\n\n\n\n<p>Découvrez WordPress 6.1 en fonctionnement&nbsp;! Notre&nbsp;<a href=\"https://youtu.be/1w9oywSa6Hw\">vidéo de présentation</a>&nbsp;propose une vue d’ensemble des principales fonctionnalités qui sont sorties avec WordPress 6.1.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"612\" height=\"345\" src=\"https://www.youtube.com/embed/1w9oywSa6Hw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=fr-FR&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p><br></p>\n\n\n\n<p>Visitez&nbsp;<a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>&nbsp;pour des tutoriels vidéos, des ateliers en ligne, des cours et des plans de cours pour les personnes organisant des évènements, et pour des contenus présentant les nouvelles fonctionnalités de WordPress.</p>\n\n\n\n<p>Consultez notre&nbsp;<a href=\"https://fr.wordpress.org/2022/10/12/guide-des-changements-techniques-de-wordpress-6-1/\">guide des changements techniques introduits par WordPress 6.0</a>. Il contient toutes les notes techniques que vous devez connaître si vous développez sur WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">L’équipe de direction de WordPress&nbsp;6.1</h2>\n\n\n\n<p><span style=\"font-weight: 400\">Les personnes mentionnées ci-dessous ont participé à la direction de cette version majeure du CMS&nbsp;:</span></p>\n\n\n\n<ul>\n<li><span style=\"font-weight: 400\">Direction générale&nbsp;: </span><a href=\"https://profiles.wordpress.org/matt/\"><span style=\"font-weight: 400\">Matt Mullenweg</span></a><span style=\"font-weight: 400\">&nbsp;</span></li>\n\n\n\n<li><span style=\"font-weight: 400\">Coordinateurs de cette version&nbsp;: </span><a href=\"https://profiles.wordpress.org/priethor/\"><span style=\"font-weight: 400\">Héctor Prieto</span></a><span style=\"font-weight: 400\"> et </span><a href=\"https://profiles.wordpress.org/desrosj/\"><span style=\"font-weight: 400\">Jonathan Desrosiers</span></a><span style=\"font-weight: 400\">&nbsp;</span></li>\n\n\n\n<li><span style=\"font-weight: 400\">Direction technique côté Core&nbsp;: </span><a href=\"https://profiles.wordpress.org/mikeschroder/\"><span style=\"font-weight: 400\">Mike Schroder</span></a><span style=\"font-weight: 400\">, </span><a href=\"https://profiles.wordpress.org/davidbaumwald/\"><span style=\"font-weight: 400\">David Baumwald</span></a><span style=\"font-weight: 400\">, et </span><a href=\"https://profiles.wordpress.org/jeffpaul/\"><span style=\"font-weight: 400\">Jeff Paul</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\"><span style=\"font-weight: 400\">Direction</span> technique côté Gutenberg&nbsp;: </span><a href=\"https://profiles.wordpress.org/czapla/\"><span style=\"font-weight: 400\">Michal Czaplinski</span></a><span style=\"font-weight: 400\">, </span><a href=\"https://profiles.wordpress.org/bernhard-reiter/\"><span style=\"font-weight: 400\">Bernie Reiter</span></a><span style=\"font-weight: 400\">, et </span><a href=\"https://profiles.wordpress.org/cbravobernal/\"><span style=\"font-weight: 400\">Carlos Bravo</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\">Gestion de projet côté cœur&nbsp;: </span><a href=\"https://profiles.wordpress.org/audrasjb/\"><span style=\"font-weight: 400\">JB Audras</span></a><span style=\"font-weight: 400\"> et </span><a href=\"https://profiles.wordpress.org/chaion07/\"><span style=\"font-weight: 400\">Ahmed Chaion</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\"><span style=\"font-weight: 400\">Gestion de projet côté</span></span> Gutenberg&nbsp;<span style=\"font-weight: 400\">: </span><a href=\"https://profiles.wordpress.org/ndiego/\"><span style=\"font-weight: 400\">Nick Diego</span></a> <span style=\"font-weight: 400\">et </span><a href=\"https://profiles.wordpress.org/annezazu/\"><span style=\"font-weight: 400\">Anne McCarthy</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\">Documentation&nbsp;: </span><a href=\"https://profiles.wordpress.org/bph/\"><span style=\"font-weight: 400\">Birgit Pauli-Haack</span></a><span style=\"font-weight: 400\">, </span><a href=\"https://profiles.wordpress.org/milana_cap/\"><span style=\"font-weight: 400\">Milana Cap</span></a><span style=\"font-weight: 400\">, et </span><a href=\"https://profiles.wordpress.org/femkreations/\"><span style=\"font-weight: 400\">Femy Praseeth</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\">Communication&nbsp;:</span> <a href=\"https://profiles.wordpress.org/jpantani/\"><span style=\"font-weight: 400\">Jonathan Pantani</span></a> <span style=\"font-weight: 400\">et </span><a href=\"https://profiles.wordpress.org/dansoschin/\"><span style=\"font-weight: 400\">Dan Soschin</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\">Tests&nbsp;: </span><a href=\"https://profiles.wordpress.org/ironprogrammer/\"><span style=\"font-weight: 400\">Brian Alexander</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\">Design : </span><a href=\"https://profiles.wordpress.org/richtabor/\"><span style=\"font-weight: 400\">Rich Tabor</span></a></li>\n\n\n\n<li><span style=\"font-weight: 400\">Design et développement du nouveau thème natif&nbsp;: </span><a href=\"https://profiles.wordpress.org/beafialho/\"><span style=\"font-weight: 400\">Beatriz Fialho</span></a><span style=\"font-weight: 400\"> et </span><a href=\"https://profiles.wordpress.org/mikachan/\"><span style=\"font-weight: 400\">Sarah Norris</span></a></li>\n</ul>\n\n\n\n<p>Il n&rsquo;aurait pas été possible de sortir WordPress 6.1 sans le travail acharné de plus de 800 personnes situées dans au moins 60 pays différents. Merci à toutes celles et ceux qui ont travaillé sur cette nouvelle version de WordPress&nbsp;!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/hurayraiit/\">Abu Hurayra</a> · <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> · <a href=\"https://profiles.wordpress.org/adampickering/\">Adam Pickering</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/admwgn/\">Adam Wiltgen</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a> · <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a> · <a href=\"https://profiles.wordpress.org/oztaser/\">Adil Öztaşer</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/aezazshekh/\">Aezaz Shekh</a> · <a href=\"https://profiles.wordpress.org/afrid1719/\">afrid1719</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/kamig478/\">Akram Ul Haq</a> · <a href=\"https://profiles.wordpress.org/akshitsethi/\">Akshit Sethi</a> · <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> · <a href=\"https://profiles.wordpress.org/alamgircsebd/\">alamgircsebd</a> · <a href=\"https://profiles.wordpress.org/alanp57/\">AlanP57</a> · <a href=\"https://profiles.wordpress.org/alansyue/\">alansyue</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">albatross10</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a> · <a href=\"https://profiles.wordpress.org/alberuni-azad/\">Alberuni Azad.</a> · <a href=\"https://profiles.wordpress.org/elpanda13gmailcom/\">Alejandro J. Sanchez P.</a> · <a href=\"https://profiles.wordpress.org/zutigrm/\">Aleksej</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a> · <a href=\"https://profiles.wordpress.org/acoulombe/\">Alexis Coulombe</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/allisonplus/\">allisonplus</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro Gómez</a> · <a href=\"https://profiles.wordpress.org/amirkamizi/\">amirkamizi</a> · <a href=\"https://profiles.wordpress.org/amjadr360/\">Amjad Ali</a> · <a href=\"https://profiles.wordpress.org/anantajitjg/\">Anantajit JG</a> · <a href=\"https://profiles.wordpress.org/anariel-design/\">Anariel Design</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/deksar/\">Andreas</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/_smartik_/\">Andrei Surdu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a> · <a href=\"https://profiles.wordpress.org/andrewnz/\">AndrewNZ</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey « Rarst » Savchenko</a> · <a href=\"https://profiles.wordpress.org/andrija/\">Andrija Naglic</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andykeith/\">Andy Keith</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/anitanenova/\">anitanenova</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/annabansaghi/\">Anna Bansaghi</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/alaca/\">Ante Laca</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a> · <a href=\"https://profiles.wordpress.org/apokalyptik/\">apokalyptik</a> · <a href=\"https://profiles.wordpress.org/arrasel403/\">AR Rasel</a> · <a href=\"https://profiles.wordpress.org/arcangelini/\">arcangelini</a> · <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/yellyc/\">Ariel Chinn</a> · <a href=\"https://profiles.wordpress.org/xylocone/\">Arjun Singh</a> · <a href=\"https://profiles.wordpress.org/armondal/\">Arnab Mondal</a> · <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Kalwar</a> · <a href=\"https://profiles.wordpress.org/arturgrabo/\">Artur Grabowski</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/aspexi/\">Aspexi</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/baned/\">BaneD</a> · <a href=\"https://profiles.wordpress.org/barneydavey/\">barneydavey</a> · <a href=\"https://profiles.wordpress.org/bbobnis/\">Bartosz Bobnis</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/bengreeley/\">Ben Greeley</a> · <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/elten/\">Bing</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blockify/\">Blockify</a> · <a href=\"https://profiles.wordpress.org/boblindner/\">Bob</a> · <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/cantuaria/\">Bruno Cantuaria</a> · <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a> · <a href=\"https://profiles.wordpress.org/burgiuk/\">burgiuk</a> · <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a> · <a href=\"https://profiles.wordpress.org/bwbama/\">bwbama</a> · <a href=\"https://profiles.wordpress.org/cadlec/\">cadlec</a> · <a href=\"https://profiles.wordpress.org/cagsmith/\">cagsmith</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia Prim</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cavalierlife/\">cavalierlife</a> · <a href=\"https://profiles.wordpress.org/cdbessig/\">cdbessig</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/nhuja/\">Chandra M</a> · <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> · <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/chrisbudd1/\">Chris Budd</a> · <a href=\"https://profiles.wordpress.org/chrishardie/\">Chris Hardie</a> · <a href=\"https://profiles.wordpress.org/czarate/\">Chris Zarate</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/chrisguitarguy/\">chrisguitarguy</a> · <a href=\"https://profiles.wordpress.org/cwbudde/\">Christian-W. Budde</a> · <a href=\"https://profiles.wordpress.org/christinavoudouris/\">Christina Voudouris</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a> · <a href=\"https://profiles.wordpress.org/ryno267/\">Chuck Reynolds</a> · <a href=\"https://profiles.wordpress.org/chynnabenton/\">chynnabenton</a> · <a href=\"https://profiles.wordpress.org/ckanderson22/\">ckanderson22</a> · <a href=\"https://profiles.wordpress.org/design_dolphin/\">CodePoet</a> · <a href=\"https://profiles.wordpress.org/codewhy/\">codewhy</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/collieit/\">Collie-IT, Anne K. Frey</a> · <a href=\"https://profiles.wordpress.org/colonelphantom/\">colonelphantom</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">Cory Birdsong</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/craigfrancis/\">craigfrancis</a> · <a href=\"https://profiles.wordpress.org/crazycoders/\">crazycoders</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/curdin/\">Curdin Krummenacher</a> · <a href=\"https://profiles.wordpress.org/cyrillbolliger/\">cyrillbolliger</a> · <a href=\"https://profiles.wordpress.org/dxd5001/\">Daijiro Miyazawa</a> · <a href=\"https://profiles.wordpress.org/dainemawer/\">dainemawer</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/daledupreez/\">Dale du Preez</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/damonganto/\">damonganto</a> · <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/schutzsmith/\">Daniel Schutzsmith</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a> · <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a> · <a href=\"https://profiles.wordpress.org/darkog/\">Darko G.</a> · <a href=\"https://profiles.wordpress.org/darkskipper/\">darkskipper</a> · <a href=\"https://profiles.wordpress.org/uofaberdeendarren/\">Darren Coutts</a> · <a href=\"https://profiles.wordpress.org/htdat/\">Dat Hoang</a> · <a href=\"https://profiles.wordpress.org/datainterlock/\">datainterlock</a> · <a href=\"https://profiles.wordpress.org/dhilditch/\">Dave Hilditch</a> · <a href=\"https://profiles.wordpress.org/dave1010/\">dave1010</a> · <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dcowgill/\">David C</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a> · <a href=\"https://profiles.wordpress.org/dg12345/\">David Goring</a> · <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a> · <a href=\"https://profiles.wordpress.org/daymobrew/\">daymobrew</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/denishua/\">denishua</a> · <a href=\"https://profiles.wordpress.org/dennisatyoast/\">Dennis Claassen</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">derekblank</a> · <a href=\"https://profiles.wordpress.org/pcfreak30/\">Derrick Hammer</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhl/\">dhl</a> · <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dingdang/\">dingdang</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/dipakparmar443/\">Dipak Parmar</a> · <a href=\"https://profiles.wordpress.org/divyeshgodhani/\">divyeshgodhani</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a> · <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a> · <a href=\"https://profiles.wordpress.org/dougal/\">Dougal Campbell</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/dsas/\">dsas</a> · <a href=\"https://profiles.wordpress.org/dwainm/\">Dwain Maralack</a> · <a href=\"https://profiles.wordpress.org/kucrut/\">Dzikri Aziz</a> · <a href=\"https://profiles.wordpress.org/dovyp/\">Dōvy Paukstys</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a> · <a href=\"https://profiles.wordpress.org/eedee/\">eedee</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/eliezerspp/\">Eliezer Peña</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van&nbsp;Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/codekraft/\">Erik</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">estelaris</a> · <a href=\"https://profiles.wordpress.org/madpixels/\">eugene.manuilov</a> · <a href=\"https://profiles.wordpress.org/eugenemanuilov/\">Eugene.Manuilov</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/aaemnnosttv/\">Evan Mattson</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/faison/\">Faison</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/fellyph/\">Fellyph Cintra</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/fuadragib/\">Fuad Ragib</a> · <a href=\"https://profiles.wordpress.org/furi3r/\">furi3r</a> · <a href=\"https://profiles.wordpress.org/gabri3lmarques/\">gabri3lmarques</a> · <a href=\"https://profiles.wordpress.org/gdetassigny/\">Gabriel de Tassigny</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Gabriel Rose</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/garymatthews919/\">garymatthews919</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">gigitux</a> · <a href=\"https://profiles.wordpress.org/giox069/\">giox069</a> · <a href=\"https://profiles.wordpress.org/giuseppemazzapica/\">giuseppemazzapica</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/goldenapples/\">goldenapples</a> · <a href=\"https://profiles.wordpress.org/greglone/\">Grégory Viguier</a> · <a href=\"https://profiles.wordpress.org/graham73may/\">graham73may</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/greg24/\">greg24</a> · <a href=\"https://profiles.wordpress.org/gregorlove/\">gRegor Morrill</a> · <a href=\"https://profiles.wordpress.org/gunterer/\">gunterer</a> · <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a> · <a href=\"https://profiles.wordpress.org/h2ham/\">h2ham (Hiromu Hasegawa)</a> · <a href=\"https://profiles.wordpress.org/hakanca/\">hakanca</a> · <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a> · <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshvaishnav/\">harshvaishnav</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Iamarino</a> · <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a> · <a href=\"https://profiles.wordpress.org/here/\">here</a> · <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hiren1094/\">hiren sanja</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">hiyascout</a> · <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a> · <a href=\"https://profiles.wordpress.org/hugodevos/\">hugodevos</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">hztyfoon</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/iansvo/\">iansvo</a> · <a href=\"https://profiles.wordpress.org/icaspar/\">iCaspar</a> · <a href=\"https://profiles.wordpress.org/igmoweb/\">Ignacio Cruz Moreno</a> · <a href=\"https://profiles.wordpress.org/igorsch/\">Igor</a> · <a href=\"https://profiles.wordpress.org/igrigorik/\">igrigorik</a> · <a href=\"https://profiles.wordpress.org/ilovecats7/\">ilovecats7</a> · <a href=\"https://profiles.wordpress.org/ilunabar/\">ilunabar</a> · <a href=\"https://profiles.wordpress.org/imadarshakshat/\">imadarshakshat</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">ipajen</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/irecinius/\">irecinius</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a> · <a href=\"https://profiles.wordpress.org/ivanjeronimo/\">ivanjeronimo</a> · <a href=\"https://profiles.wordpress.org/iviweb/\">iviweb</a> · <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a> · <a href=\"https://profiles.wordpress.org/primetimejas/\">Jacob Schweitzer</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jamesckemp/\">James Kemp</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/jamieburchell/\">jamieburchell</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> · <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/trapsta/\">Jasper Kinoti</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/grandeljay/\">Jay Trees</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jeawhanlee/\">jeawhanlee</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> · <a href=\"https://profiles.wordpress.org/juberstine/\">Jeff Uberstine</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeroenreumkens/\">JeroenReumkens</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jhart35/\">jhart35</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/jnz31/\">jnz31</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joelhardi/\">joelhardi</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/johnmark8080/\">johnmark8080</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/jonmackintosh/\">jonmackintosh</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonny-s/\">jonny-s</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josvelasco/\">Jos Velasco</a> · <a href=\"https://profiles.wordpress.org/joegrainger/\">Joseph Grainger</a> · <a href=\"https://profiles.wordpress.org/jostnes/\">Josepha Dambul</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/joshuaabenazer/\">Joshua Abenazer</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jrbeilke/\">jrbeilke</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a> · <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> · <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/just0nequestion/\">just0nequestion</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/justinsainton/\">Justin Sainton</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/welenofsky/\">Justin Welenofsky</a> · <a href=\"https://profiles.wordpress.org/jyolsna/\">jyolsna</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karinclimber/\">Kari Anderson</a> · <a href=\"https://profiles.wordpress.org/karlgroves/\">karlgroves</a> · <a href=\"https://profiles.wordpress.org/karlijnbk/\">Karlijn Bok</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn Presner</a> · <a href=\"https://profiles.wordpress.org/kbrownkd/\">kbrownkd</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/killua99/\">killua99</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/blackawxs/\">klewis</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a> · <a href=\"https://profiles.wordpress.org/konradyoast/\">Konrad.K</a> · <a href=\"https://profiles.wordpress.org/kovshenin/\">Konstantin Kovshenin</a> · <a href=\"https://profiles.wordpress.org/kanlukasz/\">Kris Kelvin</a> · <a href=\"https://profiles.wordpress.org/krishaweb/\">KrishaWeb</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a> · <a href=\"https://profiles.wordpress.org/kwillmorth/\">kwillmorth</a> · <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a> · <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurent22777/\">laurent22777</a> · <a href=\"https://profiles.wordpress.org/lazam786/\">lazam786</a> · <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> · <a href=\"https://profiles.wordpress.org/lonnylot/\">lonnylot</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a> · <a href=\"https://profiles.wordpress.org/lucasbustamante/\">Lucas Bustamante</a> · <a href=\"https://profiles.wordpress.org/lucilastancato/\">lucilastancato</a> · <a href=\"https://profiles.wordpress.org/luigipulcini/\">luigipulcini</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/infolu/\">Luiz Araújo</a> · <a href=\"https://profiles.wordpress.org/mitweka/\">Lukas Niebler</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/msnewas/\">M S Newaz</a> · <a href=\"https://profiles.wordpress.org/maartenj/\">Maarten</a> · <a href=\"https://profiles.wordpress.org/mashikag/\">Maciej</a> · <a href=\"https://profiles.wordpress.org/maciejmackowiak/\">maciejmackowiak</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/patopaiar/\">magicoders</a> · <a href=\"https://profiles.wordpress.org/maahrokh/\">Mahrokh</a> · <a href=\"https://profiles.wordpress.org/maksimkuzmin/\">maksimkuzmin</a> · <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manishsongirkar36/\">Manish Songirkar</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a> · <a href=\"https://profiles.wordpress.org/marcyoast/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/nuryko/\">Marianna</a> · <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markbiek/\">Mark Biek</a> · <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/hinjiriyo/\">Martin Stehle</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/mashukushibiki/\">Mashu</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/msurdi/\">Matías Emanuel Surdi</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">matiasbenedetto</a> · <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattwondra/\">Matt Wondra</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a> · <a href=\"https://profiles.wordpress.org/matthiaspabst/\">Matthias Pabst</a> · <a href=\"https://profiles.wordpress.org/matthiasreinholz/\">Matthias Reinholz</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maximej/\">Maxime J.</a> · <a href=\"https://profiles.wordpress.org/maximemeganck/\">Maxime Meganck</a> · <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a> · <a href=\"https://profiles.wordpress.org/maythamalsudany/\">maythamalsudany</a> · <a href=\"https://profiles.wordpress.org/mayuge/\">Mayuge</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/rakibwordpress/\">Md Rakib Hossain</a> · <a href=\"https://profiles.wordpress.org/russel07/\">Md. Russel Hussain</a> · <a href=\"https://profiles.wordpress.org/mdrago/\">mdrago</a> · <a href=\"https://profiles.wordpress.org/mehedi890/\">Mehedi Foysal</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a> · <a href=\"https://profiles.wordpress.org/merkys/\">Merkys Maliukevičius</a> · <a href=\"https://profiles.wordpress.org/meysamnorouzi/\">meysam norouzi</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/michaelbourne/\">Michael Bourne</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mihaidumitrascu/\">Mihai Dumitrascu</a> · <a href=\"https://profiles.wordpress.org/mihai2u/\">Mike Crantea</a> · <a href=\"https://profiles.wordpress.org/mdgl/\">Mike Glendinning</a> · <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikemanzo/\">mikemanzo</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/milindmore22/\">Milind More</a> · <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/presents111/\">miya</a> · <a href=\"https://profiles.wordpress.org/mlajo/\">Mladen</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mjkhajeh/\">MohammadJafar Khajeh</a> · <a href=\"https://profiles.wordpress.org/mohitdadhich10/\">Mohit Dadhich</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrobit/\">mrobit</a> · <a href=\"https://profiles.wordpress.org/msolution/\">msolution</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/mvraghavan/\">mvraghavan</a> · <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">n8finch</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nhadsall/\">Nathan</a> · <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a> · <a href=\"https://profiles.wordpress.org/navigatrum/\">navigatrum</a> · <a href=\"https://profiles.wordpress.org/neffff/\">neffff</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikkigagency/\">nikkigagency</a> · <a href=\"https://profiles.wordpress.org/im_niloy/\">Niloy</a> · <a href=\"https://profiles.wordpress.org/ninos-ego/\">Ninos</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/noplanman/\">noplanman</a> · <a href=\"https://profiles.wordpress.org/nouarah/\">nouarah</a> · <a href=\"https://profiles.wordpress.org/numidwasnotavailable/\">NumidWasNotAvailable</a> · <a href=\"https://profiles.wordpress.org/nunomorgadinho/\">Nuno Morgadinho</a> · <a href=\"https://profiles.wordpress.org/zikubd/\">Nurul Umbhiya</a> · <a href=\"https://profiles.wordpress.org/nvartolomei/\">nvartolomei</a> · <a href=\"https://profiles.wordpress.org/obayedmamur/\">Obayed Mamur</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/oliverstapelfeldt/\">Oliver Stapelfeldt</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/oneearth27/\">oneearth27</a> · <a href=\"https://profiles.wordpress.org/onnimonni/\">Onni Hakala</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a> · <a href=\"https://profiles.wordpress.org/p_enrique/\">p_enrique</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/poliuk/\">Pablo Postigo</a> · <a href=\"https://profiles.wordpress.org/pablohoney/\">PabloHoney</a> · <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a> · <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/xparham/\">Parham Ghaffarian</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/patrickgroot/\">Patrick Groot</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/figureone/\">Paul Ryan</a> · <a href=\"https://profiles.wordpress.org/paulohcruz/\">Paulo Cruz</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pavelschoffer/\">pavelschoffer</a> · <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/mordauk/\">Pippin Williamson</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pratiweb/\">Pratiksha</a> · <a href=\"https://profiles.wordpress.org/nikeo/\">presscustomizr</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a> · <a href=\"https://profiles.wordpress.org/priyomukul/\">Priyo Mukul</a> · <a href=\"https://profiles.wordpress.org/prokium/\">prokium</a> · <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a> · <a href=\"https://profiles.wordpress.org/raduiason/\">raduiason</a> · <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a> · <a href=\"https://profiles.wordpress.org/tan007/\">Rahi Prajapati</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajeshraval786/\">Rajesh Raval</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">ralucastn</a> · <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/randhirexpresstech/\">randhirexpresstech</a> · <a href=\"https://profiles.wordpress.org/ravipatel/\">Ravikumar Patel</a> · <a href=\"https://profiles.wordpress.org/rcanepa/\">rcanepa</a> · <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/renegeuze/\">renegeuze</a> · <a href=\"https://profiles.wordpress.org/laboiteare/\">Reuhno</a> · <a href=\"https://profiles.wordpress.org/rflw/\">rflw</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a> · <a href=\"https://profiles.wordpress.org/rinkychowdhury9/\">Rinky Chowdhury</a> · <a href=\"https://profiles.wordpress.org/rishishah/\">Rishi Shah</a> · <a href=\"https://profiles.wordpress.org/rkaiser0324/\">rkaiser0324</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">robertght</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robmiller/\">robmiller</a> · <a href=\"https://profiles.wordpress.org/rodrigosevero/\">rodrigosevero</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a> · <a href=\"https://profiles.wordpress.org/rollybueno/\">rollybueno</a> · <a href=\"https://profiles.wordpress.org/rherault/\">Romain Herault</a> · <a href=\"https://profiles.wordpress.org/romulodl/\">romulodl</a> · <a href=\"https://profiles.wordpress.org/ross_ritchey/\">ross_ritchey</a> · <a href=\"https://profiles.wordpress.org/lev0/\">Roy</a> · <a href=\"https://profiles.wordpress.org/geekstreetwp/\">Russell Aaron</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/ryanmurphy/\">Ryan Murphy</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a> · <a href=\"https://profiles.wordpress.org/sabbirmc/\">Sabbir Ahmed</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/saggre/\">Sakri Koskimies</a> · <a href=\"https://profiles.wordpress.org/samikeijonen/\">Sami Keijonen</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal &#8211; a11n</a> · <a href=\"https://profiles.wordpress.org/sandrasanzdev/\">Sandra Sanz</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">santosguillamot</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a> · <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a> · <a href=\"https://profiles.wordpress.org/isaumya/\">Saumya Majumder</a> · <a href=\"https://profiles.wordpress.org/xconsau/\">Saurabh Sharma</a> · <a href=\"https://profiles.wordpress.org/scofennellgmailcom/\">Scott Fennell</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/gmagicscott/\">Scott Lesovic</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/seakashdiu/\">seakashdiu</a> · <a href=\"https://profiles.wordpress.org/sean212/\">Sean Fisher</a> · <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a> · <a href=\"https://profiles.wordpress.org/monolithon/\">seieric</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seedsca/\">Sergio Scabuzzo</a> · <a href=\"https://profiles.wordpress.org/seriouslysenpai/\">seriouslysenpai</a> · <a href=\"https://profiles.wordpress.org/sethta/\">Seth Alling</a> · <a href=\"https://profiles.wordpress.org/shanjidah/\">shangidah afroz</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/sharjeelkhanvmi/\">Sharjeel Khan</a> · <a href=\"https://profiles.wordpress.org/shetheliving/\">shetheliving</a> · <a href=\"https://profiles.wordpress.org/shoaibkarimali/\">Shoaib Ali</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirzooro/\">sirzooro</a> · <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a> · <a href=\"https://profiles.wordpress.org/slobodanmanic/\">Slobodan Manic</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/sobatkras/\">sobatkras</a> · <a href=\"https://profiles.wordpress.org/khromov/\">Stanislav Khromov</a> · <a href=\"https://profiles.wordpress.org/steelwagstaff/\">SteelWagstaff</a> · <a href=\"https://profiles.wordpress.org/ste_95/\">Stefano</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/camwynsp/\">Stephen Page</a> · <a href=\"https://profiles.wordpress.org/sterlo/\">Sterling Hamilton</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/steveo2000/\">steveo2000</a> · <a href=\"https://profiles.wordpress.org/studiolxv/\">studiolxv</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/5um17/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh (WP Lovers)</a> · <a href=\"https://profiles.wordpress.org/csesumonpro/\">Sumon Sarker</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">SunilPrajapati</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/system909/\">system909</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/taskotr/\">Taras Dashkevych</a> · <a href=\"https://profiles.wordpress.org/targz/\">targz</a> · <a href=\"https://profiles.wordpress.org/tlovett1/\">Taylor Lovett</a> · <a href=\"https://profiles.wordpress.org/tazotodua/\">tazotodua</a> · <a href=\"https://profiles.wordpress.org/tbember/\">tbember</a> · <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a> · <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a> · <a href=\"https://profiles.wordpress.org/edent/\">Terence Eden</a> · <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a> · <a href=\"https://profiles.wordpress.org/thijso/\">Thijs</a> · <a href=\"https://profiles.wordpress.org/griffinjt/\">Thomas Griffin</a> · <a href=\"https://profiles.wordpress.org/hyperbrand/\">Thorsten Schraut</a> · <a href=\"https://profiles.wordpress.org/threadi/\">threadi</a> · <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Krüss</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmooredev/\">Titus Moore</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomjdv/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/tj692/\">Tom Janssen</a> · <a href=\"https://profiles.wordpress.org/tommusrhodus/\">Tom Rhodes</a> · <a href=\"https://profiles.wordpress.org/tomasztunik/\">Tomasz Tunik</a> · <a href=\"https://profiles.wordpress.org/tomepajk/\">tomepajk</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a> · <a href=\"https://profiles.wordpress.org/tonylocalword/\">tony.localword</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a> · <a href=\"https://profiles.wordpress.org/wpsmith/\">Travis Smith</a> · <a href=\"https://profiles.wordpress.org/tremidkhar/\">Tremi Dkhar</a> · <a href=\"https://profiles.wordpress.org/trevorpfromsandee/\">TrevorPolischuk</a> · <a href=\"https://profiles.wordpress.org/nathannoom/\">Trinadin</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/turtlepod/\">turtlepod</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Tushar</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/utsavmadaan823/\">utsavmadaan823</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/evildon/\">varma</a> · <a href=\"https://profiles.wordpress.org/vasartam/\">vasartam</a> · <a href=\"https://profiles.wordpress.org/vdankbaar/\">vdankbaar</a> · <a href=\"https://profiles.wordpress.org/velochicdunord/\">Velochicdunord</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vikasprogrammer/\">vikasprogrammer</a> · <a href=\"https://profiles.wordpress.org/virgar/\">Virginie Garnier</a> · <a href=\"https://profiles.wordpress.org/vishalkakadiya/\">Vishal Kakadiya</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/webbeetle/\">webbeetle</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/whissi/\">Whissi</a> · <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/withinboredom/\">withinboredom</a> · <a href=\"https://profiles.wordpress.org/woji29911/\">woji29911</a> · <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a> · <a href=\"https://profiles.wordpress.org/yannielsen/\">Yan Knudtskov</a> · <a href=\"https://profiles.wordpress.org/collet/\">Yann</a> · <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a> · <a href=\"https://profiles.wordpress.org/byohann6/\">Yohann Billard</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/omaeyusuke/\">yuu</a> · <a href=\"https://profiles.wordpress.org/zaerl/\">zaerl</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/ziposc/\">ziposc</a> · <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a> · <a href=\"https://profiles.wordpress.org/shenyanzhi/\">沈唁</a></p>\n\n\n\n<p>Merci également à toutes celles et ceux qui ont traduit cette version en français&nbsp;:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/bonaldi\">Bonaldi</a>,&nbsp;<a href=\"https://profiles.wordpress.org/btpub\">Bruno Tritsch</a>,&nbsp;<a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>,&nbsp;<a href=\"https://profiles.wordpress.org/wolforg\">Didier Demory</a>, <a href=\"https://profiles.wordpress.org/eddystile\">Eddy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/emlebrun\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/fxbenard\">FX&nbsp;Bénard</a>,&nbsp;<a href=\"https://profiles.wordpress.org/florianv\">florianv</a>,&nbsp;<a href=\"https://profiles.wordpress.org/fred5550\">Frederic Nuyts</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ggwptranslate\">Gilbert GAYRAUD</a>,&nbsp;<a href=\"https://profiles.wordpress.org/guillaumeturpin\">Guillaume TURPIN</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ioanamuresan\">Ioana M.</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jaz_on\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/jdy68\">Jenny Dupuy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/loulou51\">Loulou51</a>, <a href=\"https://profiles.wordpress.org/lulucmy\">lulucmy</a>, <a href=\"https://profiles.wordpress.org/maecatnou\">maecatnou</a>,&nbsp;<a href=\"https://profiles.wordpress.org/oellin\">Magali</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nuryko\">Marianna</a>, <a href=\"https://profiles.wordpress.org/chaton666\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marineevain\">Marine EVAIN</a>,&nbsp;<a href=\"https://profiles.wordpress.org/maxpertici\">Maxime Pertici</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nandow\">nandow</a>,&nbsp;<a href=\"https://profiles.wordpress.org/pasglop\">pasglop</a>,&nbsp;<a href=\"https://profiles.wordpress.org/larrach\">Rachel Peter</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sebastienserre\">Sébastien SERRE</a>,&nbsp;<a href=\"https://profiles.wordpress.org/solaack\">solaack</a>,&nbsp;<a href=\"https://profiles.wordpress.org/stephanepoisson\">Stéphane POISSON</a>,&nbsp;<a href=\"https://profiles.wordpress.org/spaceshipone\">Timothée Brosille</a>,&nbsp;<a href=\"https://profiles.wordpress.org/translationsbyautomattic\">Translations by Automattic</a>,&nbsp;<a href=\"https://profiles.wordpress.org/virgar\">Virginie Garnier</a>,&nbsp;<a href=\"https://profiles.wordpress.org/virginienacci\">virginienacci</a>, <a href=\"https://profiles.wordpress.org/whaze\">whaze</a>,&nbsp;<a href=\"https://profiles.wordpress.org/whodunitagency\">Whodunit</a>,&nbsp;<a href=\"https://profiles.wordpress.org/wptranslationsorg\">WP-Translations</a>, et&nbsp;<a href=\"https://profiles.wordpress.org/wplmillet\">wplmillet</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://fr.wordpress.org/2022/11/02/wordpress-6-1-misha/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:77:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Guide des changements techniques de WordPress 6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://fr.wordpress.org/2022/10/12/guide-des-changements-techniques-de-wordpress-6-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://fr.wordpress.org/2022/10/12/guide-des-changements-techniques-de-wordpress-6-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Oct 2022 16:20:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2509\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Tour d\'horizon des changements techniques apportés par WordPress 6.1, la prochaine version majeure du CMS.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://make.wordpress.org/design/files/2022/09/tt3_variations.mp4\";s:6:\"length\";s:6:\"996018\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:45796:\"\n<p>La version&nbsp;<em>Release Candidate</em>&nbsp;de&nbsp;<strong>WordPress&nbsp;6.1</strong>&nbsp;est sortie mardi 11 octobre. Il est donc temps de parcourir les différents changements techniques qu’apportera cette prochaine version majeure de notre CMS.</p>\n\n\n\n<p><strong>La sortie finale de cette nouvelle version est planifiée pour le 1<sup>er</sup>&nbsp;novembre 2022.</strong></p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"2328\" height=\"1158\" src=\"https://fr.wordpress.org/files/2022/10/wp61-guide.png\" alt=\"WordPress 6.1 : Guide des changements techniques\" class=\"wp-image-2472\" srcset=\"https://fr.wordpress.org/files/2022/10/wp61-guide.png 2328w, https://fr.wordpress.org/files/2022/10/wp61-guide-300x149.png 300w, https://fr.wordpress.org/files/2022/10/wp61-guide-1024x509.png 1024w, https://fr.wordpress.org/files/2022/10/wp61-guide-768x382.png 768w, https://fr.wordpress.org/files/2022/10/wp61-guide-1536x764.png 1536w, https://fr.wordpress.org/files/2022/10/wp61-guide-2048x1019.png 2048w\" sizes=\"(max-width: 2328px) 100vw, 2328px\" /></figure>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/6-1/\">L’équipe de direction de WP 6.1</a>&nbsp;et plusieurs centaines de contributeurs et contributrices ont travaillé sur plus de&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.1&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">120 améliorations et nouvelles fonctionnalités</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=defect+(bug)&amp;milestone=6.1&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">241 correctifs</a>&nbsp;et&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;type=task+(blessed)&amp;milestone=6.1&amp;max=500&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;order=priority\">42 autres tâches variées</a>, ce qui représente plus de&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">400 tickets sur Trac</a>.</p>\n\n\n\n<p>À cela, il faut ajouter plus de&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56467\">50 pull requests</a>&nbsp;ayant permis de fusionner les différentes versions de Gutenberg dans le cœur du CMS. Du côté du projet Gutenberg il y a eu en tout 1684 pull requests apportant 425 nouvelles fonctionnalités et améliorations et 428&nbsp;correctifs de bugs, le reste concernant des tâches courantes de revue de qualité du code, de documentation ou d&rsquo;amélioration des outils de déploiement.</p>\n\n\n\n<p class=\"is-style-serif has-text-color\" style=\"color:#d95e43;font-size:18px\">En route pour un petit tour d’horizon des<br>nouveautés techniques de WordPress&nbsp;6.1&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<span id=\"more-2509\"></span>\n\n\n\n<p>Tous les liens de cet article pointent vers des notes de développement rédigées en anglais.</p>\n\n\n\n<p>L’objectif est de fournir un panorama général des changements techniques apportés par cette version, en français, puis de diriger les personnes qui souhaitent en savoir plus vers les notes de développement en anglais.</p>\n\n\n\n<p class=\"has-text-color has-background\" style=\"color:#ac270c;background-color:#f4e3da\">À noter&nbsp;: certaines modifications listées ici vont nécessiter des actions de la part des auteurs et autrices de thèmes et d’extensions, qui devront adapter ou modifier leur code. Si vous êtes concerné·e, veuillez lire les notes de développement listées dans cet article consciencieusement afin de vous assurer que votre code fonctionnera avec WordPress&nbsp;6.1 lorsque cette version sortira le 1<sup>er</sup>&nbsp;novembre 2022.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performances</h2>\n\n\n\n<p>Avec&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~performance&amp;milestone=6.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=version&amp;col=focuses&amp;col=keywords&amp;order=priority\">45 tickets sur Trac</a>&nbsp;pour WP&nbsp;6.1, l’amélioration des performances et des temps de chargement de WordPress a été l’un des enjeux principaux de cette version. Les changements les plus significatifs portent sur les requêtes&nbsp;<code>WP_Query</code>&nbsp;et sur l’API REST, deux points qui impactent grandement les temps de chargement de votre site. L’un des changements les plus attendus concernait notamment la mise en cache des requêtes&nbsp;<code>WP_Query</code>, et c’est maintenant une réalité avec WP&nbsp;6.1.</p>\n\n\n\n<p>De nouveaux points de contrôle ont aussi été ajoutés dans l’écran de&nbsp;<em>Santé du site</em>, qui vous indiquera maintenant si la mise en cache des pages et le cache persistant fonctionnent correctement sur votre site.</p>\n\n\n\n<p>Plusieurs améliorations conséquentes sur l’API de mise en cache de WordPress ont également été mises en œuvre, et l’ordre d’exécution général des crochets d’action a été optimisé pour retarder le moins possible l’affichage des pages.</p>\n\n\n\n<p>L’enregistrement de blocs personnalisés pour l’éditeur à l’aide de fichiers&nbsp;<code>block.json</code>&nbsp;a aussi été rendu bien plus performant.</p>\n\n\n\n<p>Et ce n’est qu’une petite partie des améliorations de performances de WP 6.1. Pour en découvrir plus, voici un guide spécifique sur les performances dans cette nouvelle version de WP&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"qnD9kaPwLM\"><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Performance Field Guide for WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/embed/#?secret=S9AxfZHdKy#?secret=qnD9kaPwLM\" data-secret=\"qnD9kaPwLM\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Accessibilité</h2>\n\n\n\n<p>Il s’agit du second focus principal de WordPress 6.1, avec&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;focuses=~accessibility&amp;milestone=6.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=focuses&amp;col=version&amp;col=keywords&amp;order=priority\">28 tickets sur Trac</a>, concernant 13 des principaux composants du CMS. De nombreuses améliorations ont été faites sur l’éditeur de blocs et sur la fonctionnalité d’édition complète du site, quelques éléments encore non conformes sur les différents écrans d’administration ont été corrigés, et beaucoup d’autres améliorations ont été faites pour faciliter l’utilisation de WordPress par toutes et tous.</p>\n\n\n\n<p>Une attention particulière a également été portée sur la gestion des champs requis sur les différents formulaires de l’interface d’administration&nbsp;: pour faciliter leur maintenance, une petite API a été créée afin de gérer de façon centralisée leur affichage. Celle-ci est publique et peut donc être utilisée par les personnes réalisant des développements sur mesure.</p>\n\n\n\n<p>Notons également qu’avec WordPress 6.1, les deux thèmes natifs&nbsp;<a href=\"https://core.trac.wordpress.org/changeset/54467\">Twenty Twenty-Three</a>&nbsp;(nous reparlerons de celui-là dans un article dédié&nbsp;!) et&nbsp;<a href=\"https://github.com/WordPress/wordpress-develop/pull/2324/files\">Twenty Twenty-Two</a>&nbsp;font leur entrée parmi les premiers&nbsp;<em>Block Themes</em>&nbsp;(ces thèmes entièrement modifiables avec l’éditeur de blocs) ayant obtenu le libellé&nbsp;<code>accessibility-ready</code>&nbsp;sur le répertoire de thèmes WordPress.org.</p>\n\n\n\n<p>Pour en savoir plus sur toutes ces améliorations concernant l’accessibilité de WordPress, consultez le guide spécifique proposé par l’équipe&nbsp;<em>Accessibility</em>&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"gOxSBctZIG\"><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">WordPress 6.1 Accessibility Improvements</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;WordPress 6.1 Accessibility Improvements&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/embed/#?secret=Rp2Ep8E3XI#?secret=gOxSBctZIG\" data-secret=\"gOxSBctZIG\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">L’éditeur de blocs</h2>\n\n\n\n<p>C’est évidemment encore et toujours un des axes concentrant le plus d’évolutions d’une version à une autre&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>WordPress 6.1 embarque les versions&nbsp;<a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>,&nbsp;<a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, et&nbsp;<a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>&nbsp;du projet Gutenberg.</p>\n\n\n\n<p>Parmi les nombreux changements de ces 10 versions de l’extension Gutenberg, un gros effort a été fait pour rendre les blocs et autres fonctionnalités de l’éditeur de plus en plus disponibles pour les thèmes «&nbsp;classiques&nbsp;», c’est à dire les thèmes qui ne prennent pas encore en charge l’édition complète du site à l’aide de blocs, une fonctionnalité introduite dans le CMS en 2022 avec WordPress&nbsp;5.9.</p>\n\n\n\n<p>L’objectif est de faciliter le travail des développeuses et des développeurs pour effectuer une transition de leurs thèmes «&nbsp;classiques&nbsp;» vers le principe du thème basé sur des blocs, que celui-ci soit entièrement ou partiellement modifiable dans l’éditeur. Nous espérons que cela poussera encore plus les personnes développant des thèmes WordPress à exploiter au maximum les fonctionnalités de l’éditeur.</p>\n\n\n\n<p>Par ailleurs, de nombreuses fonctionnalités utiles au quotidien ont été ajoutées dans cette version&nbsp;: filtrage des données du&nbsp;<code>theme.json</code>, nouveau système de gestion des préférences dans l’éditeur, possibilité de modifier et étendre le bloc «&nbsp;Boucle de requête&nbsp;», et bien plus encore.</p>\n\n\n\n<p>Vous trouverez ci-dessous les différentes notes de développement concernant l’éditeur de WordPress&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"dBrmxcR9rG\"><a href=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/\">Block API changes in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Block API changes in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/embed/#?secret=yffoVF22CZ#?secret=dBrmxcR9rG\" data-secret=\"dBrmxcR9rG\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Fjn1oGyqWW\"><a href=\"https://make.wordpress.org/core/2022/10/07/create-block-scaffolding-tool-updates/\">Create-block scaffolding tool updates</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Create-block scaffolding tool updates&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/07/create-block-scaffolding-tool-updates/embed/#?secret=VtlSw1eM1t#?secret=Fjn1oGyqWW\" data-secret=\"Fjn1oGyqWW\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"zyyLlU97ov\"><a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\">Extending the Query Loop block</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Extending the Query Loop block&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/embed/#?secret=LIiTYZPDuG#?secret=zyyLlU97ov\" data-secret=\"zyyLlU97ov\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"zexxXNky1n\"><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based &#8220;template parts&#8221; in traditional themes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Block-based &#8220;template parts&#8221; in traditional themes&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/embed/#?secret=jGN0kLdfpO#?secret=zexxXNky1n\" data-secret=\"zexxXNky1n\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"TQjPI7jtgJ\"><a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">Block styles generation (Style Engine)</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Block styles generation (Style Engine)&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/embed/#?secret=hpcPvjxOC0#?secret=TQjPI7jtgJ\" data-secret=\"TQjPI7jtgJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"3JmOVCNc5n\"><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Changes to block editor preferences in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Changes to block editor preferences in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/embed/#?secret=71OVXmY0eo#?secret=3JmOVCNc5n\" data-secret=\"3JmOVCNc5n\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"vifHRi3Twr\"><a href=\"https://make.wordpress.org/core/2022/10/10/editor-components-updates-for-wordpress-6-1/\">Editor Components updates in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Editor Components updates in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/editor-components-updates-for-wordpress-6-1/embed/#?secret=qPmCZKf0U8#?secret=vifHRi3Twr\" data-secret=\"vifHRi3Twr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"h3aDnp2W04\"><a href=\"https://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/\">Simplified data access with new React hooks in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Simplified data access with new React hooks in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/embed/#?secret=0IPHFMNGSf#?secret=h3aDnp2W04\" data-secret=\"h3aDnp2W04\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"bRnyzICqAu\"><a href=\"https://make.wordpress.org/core/2022/10/10/miscellaneous-editor-changes-for-wordpress-6-1/\">Miscellaneous editor changes for WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous editor changes for WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/miscellaneous-editor-changes-for-wordpress-6-1/embed/#?secret=5zY0ol61lV#?secret=bRnyzICqAu\" data-secret=\"bRnyzICqAu\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Par ailleurs, la note de développement suivante fournit un état des lieux très pratique des blocs natifs et de leurs différentes possibilités de formatage&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"wq78upcC0e\"><a href=\"https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/\">Roster of design tools per block</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Roster of design tools per block&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/embed/#?secret=0coW6ckdnA#?secret=wq78upcC0e\" data-secret=\"wq78upcC0e\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Développement de thèmes WordPress</h2>\n\n\n\n<p>Les notes de développement suivantes présentent des changements qui concernent tout particulièrement les développeuses et développeurs de thèmes.</p>\n\n\n\n<p>Tout d’abord, l’entête&nbsp;<code>Update URI</code>&nbsp;qui doit être utilisé si vous développez des thèmes sur mesure n’ayant pas vocation à être déployés sur le répertoire WordPress.org. Cela évitera que votre site propose une mise à jour et écrase votre thème dans le cas où un thème du répertoire officiel porterait le même identifiant (slug) que le vôtre&nbsp;!</p>\n\n\n\n<p>Ensuite nous avons plusieurs notes de développement concernant les interactions entre les thèmes et l’éditeur de site. Et notamment la possibilité de créer des éléments de modèles basés sur des blocs au sein d’un thème classique, c’est à dire d’un thème ne proposant au départ pas de compatibilité avec l’édition complète de site (<em>full site editing</em>).</p>\n\n\n\n<p>Enfin, on notera l&rsquo;arrivée de la gestion fluide des polices typographiques, qui permettent de définir la taille de typo de façon à ce qu&rsquo;elle s&rsquo;adapte dynamiquement à la largeur de l&rsquo;écran.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"kTK0wJfy87\"><a href=\"https://make.wordpress.org/core/2022/10/06/introducing-update-uri-theme-header-in-wordpress-6-1/\">Introducing “Update URI” theme header in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing “Update URI” theme header in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/06/introducing-update-uri-theme-header-in-wordpress-6-1/embed/#?secret=qitshxDkLe#?secret=kTK0wJfy87\" data-secret=\"kTK0wJfy87\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"zexxXNky1n\"><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based &#8220;template parts&#8221; in traditional themes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Block-based &#8220;template parts&#8221; in traditional themes&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/embed/#?secret=jGN0kLdfpO#?secret=zexxXNky1n\" data-secret=\"zexxXNky1n\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"WzczIz4yg6\"><a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\">Fluid font sizes in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Fluid font sizes in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/embed/#?secret=SLMWQp7RNK#?secret=WzczIz4yg6\" data-secret=\"WzczIz4yg6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"z0vYQmLM5z\"><a href=\"https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/\">Navigation Block Fallback Behavior in WP 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Navigation Block Fallback Behavior in WP 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/embed/#?secret=tx4090NC9A#?secret=z0vYQmLM5z\" data-secret=\"z0vYQmLM5z\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"GWWtPp4NS7\"><a href=\"https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/\">Styling elements in block themes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Styling elements in block themes&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/embed/#?secret=DNb1wiOY5K#?secret=GWWtPp4NS7\" data-secret=\"GWWtPp4NS7\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"iGV1yvHNkk\"><a href=\"https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/\">Updated editor layout support in 6.1 after refactor</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Updated editor layout support in 6.1 after refactor&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/embed/#?secret=ldKH3CQjOT#?secret=iGV1yvHNkk\" data-secret=\"iGV1yvHNkk\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"90Yib2AXch\"><a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\">Filters for theme.json data</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Filters for theme.json data&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/embed/#?secret=5Qfg0Q38Dk#?secret=90Yib2AXch\" data-secret=\"90Yib2AXch\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"PrZ6RePCEE\"><a href=\"https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/\">Introduction of presets across padding, margin and block gap</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introduction of presets across padding, margin and block gap&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/embed/#?secret=9fmr75XcT7#?secret=PrZ6RePCEE\" data-secret=\"PrZ6RePCEE\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Twenty Twenty-Three, le nouveau thème natif</h2>\n\n\n\n<p><em>Twenty Twenty-Three</em>&nbsp;est le nouveau thème par défaut de WordPress.</p>\n\n\n\n<p>Comme son prédécesseur, il exploite à 100&nbsp;% les fonctionnalités de l’éditeur de site. Il va même beaucoup plus loin en intégrant nativement 10 variations de styles permettant de modifier complètement l’interface depuis l’administration.</p>\n\n\n\n<p>Ces 10 variations de styles ont été sélectionnées à l’aide d’un appel à contribution. L’objectif est de montrer par l’exemple comment se comportent les nouvelles fonctionnalités de l’éditeur de site, et notamment comment exploiter le fichier&nbsp;<code>theme.json</code>.</p>\n\n\n\n<p>Vous trouverez ci-dessous une vidéo balayant les 10 variations de styles de ce thème.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://make.wordpress.org/design/files/2022/09/tt3_variations.mp4\"></video></figure>\n\n\n\n<p>Comme d’habitude, ce thème natif a été développé sur GitHub (où vous retrouverez l’historique du projet) puis intégré au cœur de WordPress pendant la phase de développement de la version 6.1.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Autres améliorations</h2>\n\n\n\n<h3 class=\"wp-block-heading\">API REST</h3>\n\n\n\n<p>L’API REST a vu l’arrivée d’améliorations concernant le point de terminaison&nbsp;<code>/search</code>&nbsp;ainsi que de l’affichage des réponses JSON pouvant être controlées via le filtre&nbsp;<code>rest_json_encode_options</code>. Toutes les améliorations de l’API sont décrites dans la note de développement suivante&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"wqhN6S07e4\"><a href=\"https://make.wordpress.org/core/2022/10/11/miscellaneous-rest-api-improvements-in-wordpress-6-1/\">Miscellaneous REST API improvements in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous REST API improvements in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/11/miscellaneous-rest-api-improvements-in-wordpress-6-1/embed/#?secret=99O3BHkhq9#?secret=wqhN6S07e4\" data-secret=\"wqhN6S07e4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Page de connexion</h3>\n\n\n\n<p>Une nouvelle fonction attendue depuis plus de 10 ans a fait son entrée dans la boîte à outils des développeuses et développeurs&nbsp;:&nbsp;<code>is_login()</code>&nbsp;permet de déterminer si l’on se trouve sur la page de connexion ou non.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"T8g55XKRps\"><a href=\"https://make.wordpress.org/core/2022/09/11/new-is_login-function-for-determining-if-a-page-is-the-login-screen/\">New is_login() function for determining if a page is the login screen</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;New is_login() function for determining if a page is the login screen&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/09/11/new-is_login-function-for-determining-if-a-page-is-the-login-screen/embed/#?secret=JQ3aBVlXl1#?secret=T8g55XKRps\" data-secret=\"T8g55XKRps\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Tableaux de listes de l’admin</h3>\n\n\n\n<p>Une nouvelle méthode fait son apparition, afin de pouvoir interagir et filtrer plus facilement les liens de visualisation présents dans ces tableaux.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"at2b0OL7mT\"><a href=\"https://make.wordpress.org/core/2022/10/09/introducing-wp_list_tableget_views_links-in-wordpress-6-1/\">Introducing WP_List_Table::get_views_links() in WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Introducing WP_List_Table::get_views_links() in WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/09/introducing-wp_list_tableget_views_links-in-wordpress-6-1/embed/#?secret=iitc3BtHzA#?secret=at2b0OL7mT\" data-secret=\"at2b0OL7mT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Médias</h3>\n\n\n\n<p>Avec la version 5.8, nous avons accueilli&nbsp;<a href=\"https://make.wordpress.org/core/2021/06/07/wordpress-5-8-adds-webp-support/\">la prise en charge du format WebP</a>&nbsp;et nous prévoyions initialement d’intégrer la génération automatique et par défaut d’images dans ce format dans WordPress 6.1, mais le&nbsp;<em>commit</em>&nbsp;associé a finalement été&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/54226\">annulé</a>&nbsp;avec la&nbsp;<a href=\"https://make.wordpress.org/core/2022/09/11/webp-in-core-for-6-1/\">recommandation</a>&nbsp;de plutôt intégrer cette fonctionnalité dans une&nbsp;<a href=\"https://make.wordpress.org/core/2022/09/11/canonical-plugins-revisited/\">extension canonique</a>.</p>\n\n\n\n<p>En revanche, la propriété&nbsp;<code>muted</code>&nbsp;est maintenant disponible pour les vidéos insérées dans l’éditeur, ce qui permet de rendre silencieuse les vidéos ayant vocation à être lancées automatiquement (propriété&nbsp;<code>autoplay</code>). Ceci est obligatoire pour les vidéos automatiques.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Autres changements techniques</h3>\n\n\n\n<p>WordPress 6.1 introduit de nombreuses nouvelles fonctions et crochets d’action ou filtres. Ces changements sont détaillés dans la note de développement suivante&nbsp;:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"eKrGcN1LRi\"><a href=\"https://make.wordpress.org/core/2022/10/11/miscellaneous-core-changes-for-wordpress-6-1/\">Miscellaneous Core changes for WordPress 6.1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"&#8220;Miscellaneous Core changes for WordPress 6.1&#8221; &#8212; Make WordPress Core\" src=\"https://make.wordpress.org/core/2022/10/11/miscellaneous-core-changes-for-wordpress-6-1/embed/#?secret=wygMCG7gVe#?secret=eKrGcN1LRi\" data-secret=\"eKrGcN1LRi\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>En plus de tous ces changements, on notera les évolutions suivantes, triées par composant du cœur WP&nbsp;:</p>\n\n\n\n<ul>\n<li><strong>Mots de passe d’applications :</strong>&nbsp;les super&nbsp;admins peuvent mettre en place un mot de passe d’application sur un site auquel ils n’ont pas été rattachés (<a href=\"https://core.trac.wordpress.org/ticket/53224\">#53224</a>)</li>\n\n\n\n<li><strong>Sauvegardes automatiques :</strong>&nbsp;les utilisateur·ices ayant un blocage via la fonctionnalité&nbsp;<code>post lock</code>&nbsp;pouvaient auparavant tricher en surchargeant les modifications via les sauvegardes automatiques&nbsp;(<a href=\"https://core.trac.wordpress.org/ticket/55659\">#55659</a>)</li>\n\n\n\n<li><strong>API de gestion du cache&nbsp;:&nbsp;</strong>ajout des fonctions&nbsp;<code>wp_cache_flush_group</code>&nbsp;et&nbsp;<code>wp_cache_supports</code>&nbsp;(<a href=\"https://core.trac.wordpress.org/ticket/4476\">#4476</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56605\">#56605</a>)</li>\n\n\n\n<li><strong>Charset&nbsp;:</strong>&nbsp;ajout de l’échappement des caractères unicode NFD dans&nbsp;<code>remove_accents()</code>&nbsp;(<a href=\"https://core.trac.wordpress.org/ticket/35951\">#35951</a>)</li>\n\n\n\n<li><strong>API Cron :</strong>&nbsp;ajout de la journalisation des erreurs et de crochets associés dans&nbsp;<code>wp-cron.php</code>&nbsp;(<a href=\"https://core.trac.wordpress.org/ticket/56048\">#56048</a>)</li>\n\n\n\n<li><strong>Éditeur&nbsp;:</strong>&nbsp;clarification du fait que&nbsp;<code>get_page_template()</code>&nbsp;ne fonctionne pas sur les thèmes basés sur des blocs&nbsp;(<a href=\"https://core.trac.wordpress.org/ticket/56394\">#56394</a>)</li>\n\n\n\n<li><strong>Compositions de blocs :</strong>&nbsp;ajout d’une catégorie «&nbsp;Pieds de page&nbsp;»&nbsp;(<a href=\"https://core.trac.wordpress.org/ticket/56416\">#56416</a>)</li>\n\n\n\n<li><strong>Bibliothèque tierces :</strong>\n<ul>\n<li>Correction sur Thickbox pour la prise en charge des images WebP&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55786\">#55786</a></li>\n\n\n\n<li>Mise à jour de PHPMailer à la version 6.6.4&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55976\">#55976</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56016\">#56016</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56413\">#56413</a></li>\n\n\n\n<li>Mise à jour de Underscore à la version 6.1&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56030\">#56030</a></li>\n\n\n\n<li>Mise à jour de Moment à la version 6.1&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56031\">#56031</a></li>\n\n\n\n<li>Mise à jour de jQuery&nbsp;UI à la version 6.1&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56239\">#56239</a></li>\n\n\n\n<li>Mise à jour de mediaelement.js à la version 4.2.17&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56319\">#56319</a></li>\n\n\n\n<li>Mise à jour de jQuery à la version 3.6.1&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56451\">#56451</a></li>\n\n\n\n<li>Mise à jour de Sodium Compat à la version 1.19.0&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56564\">#56564</a>,&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56653\">#56653</a></li>\n\n\n\n<li>Mise à jour de GetID3 à la version 1.9.22&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56692\">#56692</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Formatage :</strong>\n<ul>\n<li>Suppression des accents combinés dans&nbsp;<code>remove_accents()</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/24661\">#24661</a></li>\n\n\n\n<li>Inversement de l’encapsulation de&nbsp;<code>sanitize_url()</code>&nbsp;et&nbsp;<code>esc_url_raw()</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55852\">#55852</a></li>\n\n\n\n<li>Correction de la valeur retournée par&nbsp;<code>safecss_filter_attr()</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55966\">#55966</a></li>\n\n\n\n<li>Autorisation de l’utilisation de propriétés CSS spécifiques à la mise en page dans le filtre&nbsp;<code>safe_style_css</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56122\">#56122</a></li>\n\n\n\n<li>Autorisation de l’utilisation de variables CSS dans&nbsp;<code>safecss_filter_attr</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56353\">#56353</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Général :</strong>\n<ul>\n<li>Mise à jour de&nbsp;<code>is_serialized</code>&nbsp;pour accepter les Enums&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/53299\">#53299</a></li>\n\n\n\n<li>Remplacement des appels à&nbsp;<code>phpversion()</code>&nbsp;par la constante PHP_VERSION&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55680\">#55680</a></li>\n\n\n\n<li>Suppression des doublons d’utilisation de&nbsp;<code>realpath()</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56636\">#56636</a></li>\n\n\n\n<li>Suppression des doublons d’utilisation de&nbsp;<code>file_get_contents</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56637\">#56637</a></li>\n\n\n\n<li>Suppression des appels à&nbsp;<code>file_exists()</code>&nbsp;sur les variables utilisant&nbsp;<code>realpath()</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56654\">#56654</a></li>\n\n\n\n<li>Suppression des doublons d’utilisation de&nbsp;<code>get_theme_file_path</code>&nbsp;dans&nbsp;<code>register_block_style_handle</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/56666\">#56666</a></li>\n\n\n\n<li>Correction du retour obtenu en utilisant&nbsp;<code>wp_rand( 0, 0)</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55194\">#55194</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Internationalisation :</strong>&nbsp;correction d’un bug conduisant&nbsp;<code>switch_to_locale()</code>&nbsp;à annuler le chargement des traductions des thèmes et des extensions&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/39210\">#39210</a></li>\n\n\n\n<li><strong>Page de connexion/inscription :</strong>\n<ul>\n<li>Les champs obligatoires de la page d’inscription sur les multisites n’avaient pas d’attribut&nbsp;<code>required</code>&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/54344\">#54344</a></li>\n\n\n\n<li>Ajout de description ARIA sur les champs d’erreur de connexion&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/54483\">#54483</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Médias :</strong>&nbsp;correction d’un bug sur l’interprétation de l’orientation des images via leurs données EXIF&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/54937\">#54937</a></li>\n\n\n\n<li><strong>Multisite :</strong>\n<ul>\n<li>Suppression complète des termes globaux <a href=\"https://core.trac.wordpress.org/ticket/21734\">#21734</a></li>\n\n\n\n<li>Utilisation de l’API&nbsp;des métadonnées pour les options du réseau <a href=\"https://core.trac.wordpress.org/ticket/37181\">#37181</a></li>\n\n\n\n<li>Stockage de l&rsquo;ID du site principal dans les options du réseau multisite <a href=\"https://core.trac.wordpress.org/ticket/55802\">#55802</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Chargement des scripts :</strong> mise en place des scripts en front-end via&nbsp;<code>viewScript</code> pour les blocs dynamiques <a href=\"https://core.trac.wordpress.org/ticket/56470\">#56470</a></li>\n\n\n\n<li><strong>Publications :</strong> correction de la vérification des publications non existantes dans&nbsp;<code>get_post_permalink()</code> <a href=\"https://core.trac.wordpress.org/ticket/45329\">#45329</a></li>\n\n\n\n<li><strong>Taxonomies :</strong>\n<ul>\n<li>Dans <code>wp_insert_term</code>, passage de <code>$args</code> en tant que paramètre additionnel pour les actions d’après-insertion (<code>create_term</code>, <code>created_term</code>, etc.)&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55441\">#55441</a></li>\n\n\n\n<li>Les liens d&rsquo;archives de catégories n&rsquo;incluent plus par défaut la description dans l&rsquo;attribut <code>title</code> du lien&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55530\">#55530</a></li>\n\n\n\n<li>Les champs des termes sont maintenant associés avec leurs description dans l&rsquo;admin&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/55651\">#55651</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Mises à jour :</strong>\n<ul>\n<li>Ajout d&rsquo;un suivi de l&rsquo;usage des modules PHP installés sur les sites WP&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/48116\">#48116</a></li>\n</ul>\n</li>\n\n\n\n<li><strong>Widgets :</strong>\n<ul>\n<li>Suppression de requêtes inutiles vers la base de données&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/54677\">#54677</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Que vous développiez des thèmes ou des extensions, pensez à tester et retester votre code pour vous assurer de sa compatibilité avec ces changements. Vous pouvez utiliser&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">l’extension Beta Tester</a>&nbsp;sur un site de test pour vérifier la compatibilité de vos développements avec WordPress 6.1&nbsp;RC&nbsp;1.&nbsp;Nous comptons sur vous pour vous assurer que votre code fonctionne correctement avec le cœur du CMS, pour le bien des millions d’utilisateurs et utilisatrices de WordPress&nbsp;<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p style=\"font-size:13px\">Ce guide en français a été rédigé par <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a> avec l’aide de <a href=\"https://profiles.wordpress.org/fxbenard\">FX Bénard</a> et <a href=\"https://profiles.wordpress.org/jdy68\">Jenny Dupuy</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://fr.wordpress.org/2022/10/12/guide-des-changements-techniques-de-wordpress-6-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:35:\"https://fr.wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 09 Nov 2023 07:10:54 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 07 Nov 2023 20:01:31 GMT\";s:4:\"link\";s:61:\"<https://fr.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20230707232333\";}','no'),
  471. (924,'_transient_timeout_feed_mod_0d2db5fea5a8633b56992c916819b198','1699557055','no'),
  472. (925,'_transient_feed_mod_0d2db5fea5a8633b56992c916819b198','1699513855','no'),
  473. (926,'_site_transient_timeout_community-events-6718ef04d3f46d7f6ff6aabe77f33591','1699557057','no'),
  474. (927,'_site_transient_community-events-6718ef04d3f46d7f6ff6aabe77f33591','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:86:\"頁面編輯器:Elementor、Divi和區塊編輯器~你選哪一套 - 彰化小聚#35\";s:3:\"url\";s:71:\"https://www.meetup.com/changhua-wordpress-meetup-group/events/297236427\";s:6:\"meetup\";s:29:\"彰化 WordPress Meetup group\";s:10:\"meetup_url\";s:55:\"https://www.meetup.com/Changhua-WordPress-Meetup-Group/\";s:4:\"date\";s:19:\"2023-11-18 14:00:00\";s:8:\"end_date\";s:19:\"2023-11-18 16:00:00\";s:20:\"start_unix_timestamp\";i:1700287200;s:18:\"end_unix_timestamp\";i:1700294400;s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Changhua County, Taiwan\";s:7:\"country\";s:2:\"tw\";s:8:\"latitude\";d:23.959253;s:9:\"longitude\";d:120.57716;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:48:\"WordPress - 桃園午茶小聚 Linner Meetup #30\";s:3:\"url\";s:64:\"https://www.meetup.com/taoyuan-wordpress-meetup/events/297065898\";s:6:\"meetup\";s:24:\"Taoyuan WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Taoyuan-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-11-25 14:00:00\";s:8:\"end_date\";s:19:\"2023-11-25 17:00:00\";s:20:\"start_unix_timestamp\";i:1700892000;s:18:\"end_unix_timestamp\";i:1700902800;s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Taoyuan District, Taiwan\";s:7:\"country\";s:2:\"tw\";s:8:\"latitude\";d:24.991095;s:9:\"longitude\";d:121.30614;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Asia 2024\";s:3:\"url\";s:31:\"https://asia.wordcamp.org/2024/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-03-07 00:00:00\";s:8:\"end_date\";s:19:\"2024-03-09 00:00:00\";s:20:\"start_unix_timestamp\";i:1709740800;s:18:\"end_unix_timestamp\";i:1709913600;s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Taipei, Taiwan\";s:7:\"country\";s:2:\"TW\";s:8:\"latitude\";d:25.0333949;s:9:\"longitude\";d:121.5661024;}}}}','no'),
  475. (928,'_transient_timeout_feed_48c2a7450ae14f12ef8a9b58ca9f0748','1699557057','no'),
  476. (929,'_transient_feed_48c2a7450ae14f12ef8a9b58ca9f0748','a:4:{s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"feed\";a:1:{i:0;a:6:{s:4:\"data\";s:126:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Planet WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"subtitle\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Planet WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:36:\"https://rss.wpfr.net/feed/wp-planet/\";s:3:\"rel\";s:4:\"self\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"https://rss.wpfr.net/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"2023-11-09T07:12:26+00:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"\n WP RSS Aggregator\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"uri\";s:27:\"https://wprssaggregator.com\";s:7:\"version\";s:6:\"4.23.3\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"entry\";a:10:{i:0;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://www.whodunit.fr/wordpress-6-4-un-pas-de-geant-vers-un-avenir-plus-performant-et-accessible-pour-le-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WORDPRESS 6.4 : Un pas de géant vers un avenir plus performant et accessible pour le web\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:111:\"https://www.whodunit.fr/wordpress-6-4-un-pas-de-geant-vers-un-avenir-plus-performant-et-accessible-pour-le-web/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-11-08T09:54:01.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-11-08T09:54:01.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:557:\"Dirigée par une équipe composée de personnes de genres sous-représentés dans la tech et disponible depuis le 7 novembre, cette nouvelle version, nommée Shirley en hommage à la célèbre chanteuse et pianiste de jazz Shirley Horn, se concentre sur l’amélioration de l’expérience utilisateur. Différentes facettes de la plateforme, depuis la rédaction de nouveaux articles jusqu’à […]\nL’article WORDPRESS 6.4 : Un pas de géant vers un avenir plus performant et accessible pour le web est apparu en premier sur Agence WordPress Whodunit.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:16546:\"\n \n<p>Dirigée par une équipe composée de personnes de genres sous-représentés dans la tech et disponible depuis le 7 novembre, cette nouvelle version, nommée Shirley en hommage à la célèbre chanteuse et pianiste de jazz Shirley Horn, se concentre sur l&#8217;amélioration de l&#8217;expérience utilisateur. Différentes facettes de la plateforme, depuis la rédaction de nouveaux articles jusqu&#8217;à la gestion des modèles sur votre site, ont été revues. Côté technique, là aussi de nombreuses améliorations répertoriées ici par notre CEO Jean-Baptiste Audras.</p>\n\n\n\n<p>A noter que cette version se distingue également par une statistique particulièrement révélatrice : 28,06 % des personnes ayant contribué ont apporté leur aide pour la première fois, témoignant ainsi de l&#8217;ouverture de l&#8217;écosystème WordPress. Et Whodunit figure toujours parmi le top 10 des agences contributrices 😇</p>\n\n\n\n<p>Suivez le guide&#8230;</p>\n\n\n\n<h2 class=\"wp-block-heading\" data-block-type=\"core\">1 &#8211; Aperçu des fonctionnalités clés et des améliorations</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-nouveau-theme-par-defaut-twenty-twenty-four\" data-block-type=\"core\">Nouveau thème par défaut&nbsp;: <bdo lang=\"en\" dir=\"ltr\">Twenty Twenty-Four</bdo></h3>\n\n\n\n<p>Le thème par défaut de cette année, <bdo lang=\"en\" dir=\"ltr\">Twenty Twenty-Four</bdo> (TT4), est conçu pour être polyvalent, adapté à une variété de sites et d&#8217;utilisations. Que vous soyez entrepreneur, photographe, artiste, écrivain ou blogueur, TT4 offre une collection de modèles et de motifs qui peuvent être personnalisés pour répondre à vos besoins spécifiques. Avec des modèles de page d&#8217;accueil variés et des options comme des pages &#8220;À propos&#8221;, des aperçus de projets, des RSVP et des pages d&#8217;atterrissage, TT4 est un thème qui promet flexibilité et facilité d&#8217;adoption.</p>\n\n\n\n<div class=\"wp-block-stackable-image stk-block-image stk-block stk-mkx084a\" data-block-id=\"mkx084a\"><figure><div class=\"stk-img-wrapper stk-image--shape-stretch\"><img class=\"stk-img wp-image-76215\" src=\"https://www.whodunit.fr/wp-content/uploads/2023/11/tt4.png\" width=\"1200\" height=\"804\" //></div></figure></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-fonctionnalite-lightbox-pour-les-images\" data-block-type=\"core\">Fonctionnalité Lightbox pour les images</h3>\n\n\n\n<p>WordPress 6.4 introduit une fonctionnalité <bdo lang=\"en\" dir=\"ltr\">lightbox</bdo> pour les images, permettant aux utilisateurs de cliquer sur une image et de l&#8217;afficher en plein écran. Cette fonctionnalité peut être activée globalement pour toutes les images ou individuellement, offrant ainsi une expérience de visualisation plus immersive et engageante pour les visiteurs du site.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-ameliorations-des-flux-de-travail\" data-block-type=\"core\">Améliorations des flux de travail</h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-possibilite-de-renommer-les-blocs-groupe\" data-block-type=\"core\">Possibilité de renommer les blocs Groupe</h4>\n\n\n\n<p>Dans le but de simplifier l&#8217;organisation et d&#8217;améliorer le flux de travail, WordPress 6.4 permettra de renommer les blocs Groupe. Cette fonctionnalité est particulièrement utile dans l&#8217;éditeur de site où les blocs Groupe sont fréquemment utilisés. En renommant ces blocs, les utilisateurs pourront mieux s&#8217;orienter dans la vue en Liste, facilitant ainsi la distinction entre les différentes parties du contenu.</p>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Améliorations de la gestion des images et des galeries</h3>\n\n\n\n<p>WordPress 6.4 facilite grandement le travail avec les images et les galeries. Dans la vue Liste, les utilisateurs peuvent désormais voir des aperçus des images et des galeries, ce qui permet de repérer rapidement et efficacement où chaque élément se trouve dans le contenu. Cette fonctionnalité, qui sera étendue à d&#8217;autres blocs liés aux images dans les futures versions, est un pas de plus vers une interface plus intuitive et visuelle pour les utilisateurs.</p>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Évolution de la Palette de commandes</h3>\n\n\n\n<p>La Palette de commandes, introduite dans WordPress 6.3, a été améliorée avec un nouveau design et de nouvelles commandes, notamment des actions spécifiques aux blocs. Ces améliorations rendent l&#8217;utilisation de la palette plus contextuelle et intuitive, permettant aux utilisateurs d&#8217;effectuer des actions comme grouper et dégrouper les blocs, avec une correspondance précise entre les options visibles et les actions disponibles.</p>\n\n\n\n<div class=\"wp-block-stackable-image stk-block-image stk-block stk-kjqkr1h\" data-block-id=\"kjqkr1h\"><figure><div class=\"stk-img-wrapper stk-image--shape-stretch\"><img class=\"stk-img wp-image-76213\" src=\"https://www.whodunit.fr/wp-content/uploads/2023/11/visionneuse-renommer-palette-commandes.png\" width=\"1872\" height=\"538\" //></div></figure></div>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Catégorisation et gestion améliorée des compositions</h3>\n\n\n\n<p>Les compositions peuvent maintenant être organisés par catégories dès leur création, rendant leur tri et ajout beaucoup plus simples. Que ce soit dans la section globale des compositions ou lors de l&#8217;insertion, les catégories facilitent la recherche. De plus, une option de filtrage avancée est disponible pour une expérience de recherche plus ciblée.</p>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Import/export des compositions en tant que fichiers JSON</h3>\n\n\n\n<p>Pour une meilleure compatibilité et facilité de transfert, les compositions peuvent désormais être importées et exportées en tant que fichiers JSON. Cela offre un moyen simple de déplacer des compositions personnalisées entre différents sites.</p>\n\n\n\n<div class=\"wp-block-stackable-image stk-block-image stk-block stk-e3gquaq\" data-block-id=\"e3gquaq\"><figure><div class=\"stk-img-wrapper stk-image--shape-stretch\"><img class=\"stk-img wp-image-76214\" src=\"https://www.whodunit.fr/wp-content/uploads/2023/11/vue-liste-vignettes-exportjson.png\" width=\"1872\" height=\"538\" //></div></figure></div>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Introduction des <bdo lang=\"en\" dir=\"ltr\">Block Hooks</bdo> pour les développeurs de plugins</h3>\n\n\n\n<p>Les <bdo lang=\"en\" dir=\"ltr\">Block Hooks</bdo> sont une API qui permet à un bloc dynamique de se greffer au rendu d&#8217;un autre bloc, offrant ainsi la possibilité d&#8217;insérer du contenu avant ou après un bloc spécifique. Cette fonctionnalité est conçue pour améliorer l&#8217;expérience utilisateur finale en permettant une insertion automatique de blocs à l&#8217;emplacement choisi par le développeur, tout en respectant les modifications apportées par l&#8217;utilisateur.</p>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Améliorations du flux d&#8217;écriture</h3>\n\n\n\n<p>L&#8217;acte d&#8217;écrire dans WordPress doit être fluide et agréable. Des raccourcis clavier supplémentaires, une fiabilité améliorée du collage, une fusion plus douce des listes et d&#8217;autres améliorations ont été apportées pour soutenir la créativité des utilisateurs. Par exemple, l&#8217;utilisation de la touche Échap permet de désélectionner les blocs dans la vue Liste, et des raccourcis clavier pour dupliquer les blocs ont été ajoutés.</p>\n\n\n\n<h3 class=\"wp-block-heading\" data-block-type=\"core\">Outils de design</h3>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Ajout du contrôle de proportions dans le placeholder du bloc Image</h4>\n\n\n\n<p>Après l&#8217;introduction des contrôles de proportion pour le bloc d&#8217;image à la une dans WordPress 6.3, ces mêmes contrôles sont maintenant disponibles pour le <bdo lang=\"en\" dir=\"ltr\">placeholder</bdo> du bloc Image. Cela offre plus de contrôle pour les motifs de type <bdo lang=\"en\" dir=\"ltr\">wireframe</bdo>, permettant de définir des mises en page que les utilisateurs peuvent ensuite personnaliser.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Ajout d&#8217;images de fond aux blocs Groupe</h4>\n\n\n\n<p>Les images de fond sont désormais prises en charge par les blocs Groupe, ce qui enrichit considérablement les possibilités de design.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Conservation des réglages d&#8217;alignement dans les compositions synchronisées</h4>\n\n\n\n<p>Un bug important a été corrigé : les réglages d&#8217;alignement sont désormais conservés lors de la création d&#8217;une composition synchronisée.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Support de l&#8217;orientation verticale du texte</h4>\n\n\n\n<p>Les thèmes peuvent désormais opter pour une fonctionnalité d&#8217;orientation du texte (disponible via le panneau de réglages de typographie d&#8217;un bloc) qui permet d&#8217;écrire le texte verticalement.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Ajout de boutons au bloc Navigation</h4>\n\n\n\n<p>Il est maintenant possible d&#8217;ajouter des boutons directement dans le bloc Navigation sans CSS personnalisé ou autres solutions de contournement.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Désactiver les contrôles de mise en page par bloc via le fichier theme.json</h4>\n\n\n\n<p>Il est maintenant possible de désactiver les contrôles de mise en page pour des blocs spécifiques via le fichier <code>theme.json</code>.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Bloc Query Loop : pagination améliorée avec contrôles supplémentaires</h4>\n\n\n\n<p>Une nouvelle option de pagination améliorée est disponible pour le bloc de Boucle de Requête, permettant de naviguer entre les pages sans rafraîchir la page.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Configurer votre propre typographie fluide</h4>\n\n\n\n<p>Après l&#8217;introduction de la typographie fluide dans WordPress 6.1, il est maintenant possible de définir ses propres valeurs de largeur de viewport pour le schéma <code>theme.json</code> de la typographie fluide.</p>\n\n\n\n<div class=\"wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-34qgr4q\" id=\"autres-ameliorations\" data-block-id=\"34qgr4q\"><h3 class=\"stk-block-heading__text\">Autres améliorations</h3></div>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Nouveau composant ProgressBar (barre de progression)</h4>\n\n\n\n<p>Un nouveau composant ProgressBar horizontal est disponible et visible lors du chargement de l&#8217;Éditeur de site.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Empêcher l&#8217;édition de blocs avec useBlockEditingMode()</h4>\n\n\n\n<p>Une API précédemment privée est maintenant publique, permettant de restreindre l&#8217;interface d&#8217;édition d&#8217;un bloc et de ses enfants.</p>\n\n\n\n<h4 class=\"wp-block-heading\" data-block-type=\"core\">Utiliser le paramètre &#8216;nofollow&#8217; lors de l&#8217;ajout de liens</h4>\n\n\n\n<p>La possibilité de définir un lien comme <code>nofollow</code> a été ajoutée aux options de contrôle de lien. Cela permet d&#8217;indiquer aux moteurs d&#8217;indexation comme Google de ne pas suivre le lien concerné.</p>\n\n\n\n<h2 class=\"wp-block-heading\" data-block-type=\"core\">2- Quelques nouveautés techniques notables</h2>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Gutenberg et l&#8217;Éditeur de Blocs </strong></h3>\n\n\n\n<p>WordPress 6.4 introduit six nouvelles versions de l&#8217;extension Gutenberg, allant de la 16.2 à la 16.7. Une attention particulière a été portée sur l&#8217;API Block Hooks, offrant une extensibilité accrue pour les thèmes basés sur des blocs. Cette innovation permet aux développeurs de filtrer et d&#8217;étendre les fonctionnalités des blocs avec une plus grande facilité.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Améliorations de l&#8217;Interface et des Composants</strong></h2>\n\n\n\n<p>Des changements substantiels ont été apportés au paquet @wordpress/components, améliorant l&#8217;interface utilisateur et l&#8217;expérience de l&#8217;éditeur. Les développeurs bénéficieront de nouvelles API pour les Innerblocks, la typographie fluide, et la gestion des images d&#8217;arrière-plan, ainsi que d&#8217;une meilleure gestion des options de mise en page via le fichier theme.json.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Administration et Notifications </strong></h2>\n\n\n\n<p>Deux nouvelles fonctions d&#8217;administration simplifient la génération de balisage HTML, favorisant une maintenance aisée et une cohérence accrue. Ces fonctions sont également recommandées pour les développeurs d&#8217;extensions, assurant une intégration harmonieuse avec le cœur de WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Performance et Optimisation</strong></h2>\n\n\n\n<p>WordPress 6.4 met l&#8217;accent sur les performances, notamment à travers une gestion améliorée du cache objet. De nouvelles fonctions telles que get_options(), wp_prime_option_caches(), et wp_set_option_autoload_values() optimisent la récupération des options stockées en base de données. L&#8217;efficacité du chargement des fichiers modèles et des images a également été significativement améliorée.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Stratégies de Chargement des Ressources</strong></h2>\n\n\n\n<p>Des stratégies de chargement avancées sont désormais en place pour les scripts et les feuilles de style, utilisant principalement l&#8217;attribut <code>defer</code> pour un chargement non bloquant et une meilleure performance de rendu.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Médias et SEO</strong> </h2>\n\n\n\n<p>Les nouvelles installations de WordPress n&#8217;auront plus de page de fichier attaché par défaut, une modification qui vise à améliorer le référencement en évitant l&#8217;indexation de pages souvent non pertinentes.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Accessibilité et Personnalisation</strong></h2>\n\n\n\n<p>Des améliorations significatives ont été apportées à la page <code>wp-login.php</code>, et les libellés &#8220;Add New&#8221; ont été clarifiés pour une meilleure accessibilité et contexte dans l&#8217;interface d&#8217;administration.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Développement et Tests </strong></h2>\n\n\n\n<p>Les développeurs doivent prendre note des modifications des prérequis pour les tests d&#8217;intégration, avec PHPUnit Polyfills version 1.1.0 désormais nécessaire. De plus, certaines classes et méthodes de l&#8217;API HTTP ont été dépréciées.</p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\" data-block-type=\"core\"><strong>Révisions et Compatibilité</strong></h2>\n\n\n\n<p>Les révisions sont maintenant applicables aux champs personnalisés des publications, et il est crucial que les développeurs testent leur code avec l&#8217;extension Beta Tester pour assurer la compatibilité avec la nouvelle version.</p>\n\n\n\n<p>WordPress 6.4 est une étape importante dans l&#8217;évolution du CMS, apportant des améliorations qui seront appréciées tant par les développeurs que par les utilisateurs finaux. Avec une meilleure performance, une accessibilité accrue, et des outils de développement plus robustes, cette mise à jour est un pas de géant vers un avenir plus performant et accessible pour le web.</p>\n\n\n\n<h2 class=\"wp-block-heading\" data-block-type=\"core\">Conclusion</h2>\n\n\n\n<p>Cette version 6.4 est un témoignage de l&#8217;engagement de WordPress envers l&#8217;innovation et l&#8217;amélioration continue, affirmant une fois de plus pourquoi WordPress reste le CMS de choix pour des millions de personnes à travers le monde.</p>\n\n\n\n<p></p>\n<p>L’article <a href=\"https://www.whodunit.fr/wordpress-6-4-un-pas-de-geant-vers-un-avenir-plus-performant-et-accessible-pour-le-web/\">WORDPRESS 6.4 : Un pas de géant vers un avenir plus performant et accessible pour le web</a> est apparu en premier sur <a href=\"https://www.whodunit.fr\">Agence WordPress Whodunit</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Gaelle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://www.whodunit.fr/wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Whodunit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:1;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://kinsta.com/fr/blog/statique-sveltekit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Comment construire un site statique avec SvelteKit\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:46:\"https://kinsta.com/fr/blog/statique-sveltekit/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-11-04T11:03:11.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-11-04T11:03:11.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:254:\"Les sites statiques sont de plus en plus populaires en raison de leur rapidité, de leur sécurité et de leur simplicité. Lorsqu’il s’agit de construire des ...\nThe post Comment construire un site statique avec SvelteKit appeared first on Kinsta®.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"\n <p>Les sites statiques sont de plus en plus populaires en raison de leur rapidité, de leur sécurité et de leur simplicité. Lorsqu&#8217;il s&#8217;agit de construire des ...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://kinsta.com/fr/blog/statique-sveltekit/\">Comment construire un site statique avec SvelteKit</a> appeared first on <a rel=\"nofollow\" href=\"https://kinsta.com/fr\">Kinsta®</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joel Olawanle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://kinsta.com/fr/blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Kinsta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:2;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://wpmarmite.com/neve-fse/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Neve FSE : test de ce thème WordPress basé sur des blocs\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:31:\"https://wpmarmite.com/neve-fse/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-31T09:00:00.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-31T09:00:00.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:390:\"Un bloc dans l’en-tête de votre page. Et hop, un autre dans votre pied de page. Et puisque c’est aussi possible, voilà un joli menu de navigation conçu entièrement avec des blocs.  Oui, créer toutes les parties d’un site WordPress...\nNeve FSE : test de ce thème WordPress basé sur des blocs est un article de WPMarmite, le blog qui vous aide à tirer le meilleur de WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:735:\"\n <p><img width=\"1500\" height=\"830\" src=\"https://wpmarmite.com/wp-content/uploads/2023/10/theme-neve-fse.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"Le thème WordPress Neve FSE.\" //></p>\n<p>Un bloc dans l’en-tête de votre page. Et hop, un autre dans votre pied de page. Et puisque c’est aussi possible, voilà un joli menu de navigation conçu entièrement avec des blocs.&nbsp; Oui, créer toutes les parties d’un site WordPress...</p>\n<p><a rel=\"nofollow\" href=\"https://wpmarmite.com/neve-fse/\">Neve FSE : test de ce thème WordPress basé sur des blocs</a> est un article de <a rel=\"nofollow\" href=\"https://wpmarmite.com\">WPMarmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Thibaut &amp;#124; WPMarmite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://feedpress.me/WPMarmite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"WP Marmite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:3;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://www.gregoirenoyelle.com/premier-live-youtube-wordpress-100-bloc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Maîtrisez l’éditeur de site (FSE) de WordPress avec mon Live YouTube\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:72:\"https://www.gregoirenoyelle.com/premier-live-youtube-wordpress-100-bloc/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-31T05:30:00.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-31T05:30:00.000+01:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:523:\"Depuis le mois de janvier 2023, j’expérimente beaucoup de choses autour de l’éditeur de site WordPress (ou FSE). Et comme j’adore, je partage: un compte Instagram pendant 90 jours @gregoirewp, les ateliers que j’anime au sein des meetups de WordPress Paris (avec WP Paris), ces Lives que je lance sur YouTube et enfin avec la […]Cet article a été publié le 31 octobre 2023 par Grégoire Noyelle. Pour le lire en ligne, suivre le lien: Maîtrisez l’éditeur de site (FSE) de WordPress avec mon Live YouTube.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:701:\"\n Depuis le mois de janvier 2023, j&#8217;expérimente beaucoup de choses autour de l&#8217;éditeur de site WordPress (ou FSE). Et comme j&#8217;adore, je partage: un compte Instagram pendant 90 jours @gregoirewp, les ateliers que j&#8217;anime au sein des meetups de WordPress Paris (avec WP Paris), ces Lives que je lance sur YouTube et enfin avec la [&#8230;]<p>Cet article a été publié le 31 octobre 2023 par <a href=\"https://www.gregoirenoyelle.com\">Grégoire Noyelle</a>. Pour le lire en ligne, suivre le lien: <a href=\"https://www.gregoirenoyelle.com/premier-live-youtube-wordpress-100-bloc/\">Maîtrisez l&rsquo;éditeur de site (FSE) de WordPress avec mon Live YouTube</a>.</p>\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Grégoire Noyelle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://www.gregoirenoyelle.com/category/tuto/wordpress-tutos/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Grégoire Noyelle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:4;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://www.whodunit.fr/woa-29-traduire-wordpress-et-ses-dependances/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WOA ! #29 Traduire WordPress et ses dépendances\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:69:\"https://www.whodunit.fr/woa-29-traduire-wordpress-et-ses-dependances/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-23T09:40:26.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-23T09:40:26.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:414:\"Préparez-vous à plonger dans l\'univers captivant de WordPress, de la traduction et de l\'intelligence artificielle au cours d\'une discussion fascinante. Je suis heureux d\'accueillir François Xavier Benard, ou FX, pour une conversation enrichissante qui vous apportera des connaissances précieuses.\nL’article WOA ! #29 Traduire WordPress et ses dépendances est apparu en premier sur Agence WordPress Whodunit.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:12995:\"\n \n<p></p>\n\n\n\n<p>Préparez-vous à plonger dans l&#8217;univers captivant de WordPress, de la traduction et de l&#8217;intelligence artificielle au cours d&#8217;une discussion fascinante. Je suis heureux d&#8217;accueillir François Xavier Benard, ou FX, pour une conversation enrichissante qui vous apportera des connaissances précieuses.</p>\n\n\n\n\n\n\n\n<p>Nous commencerons par explorer les récents problèmes rencontrés avec le bouton &#8216;Live Preview&#8217; dans le répertoire d&#8217;extensions WordPress. Découvrez comment une nouvelle application de prise de notes, BlockNotes, révolutionne la manière de prendre des notes en utilisant les blocs Gutenberg via WordPress Playground sur votre téléphone portable.</p>\n\n\n\n<p>Ensuite, nous vous dévoilerons les coulisses du développement de WP Translations, une société de traduction que j&#8217;ai eu le privilège de créer. FX et moi partagerons les défis auxquels nous sommes confrontés lors de la traduction d&#8217;extensions en anglais pour des utilisateurs finaux non anglophones. Vous comprendrez comment des traductions de qualité peuvent rehausser l&#8217;expérience de l&#8217;utilisateur et stimuler l&#8217;activité des auteurs. Nous aborderons également l&#8217;importance cruciale de faire appel à des traducteurs professionnels pour garantir la qualité des traductions.</p>\n\n\n\n<p>Enfin, nous explorerons le rôle essentiel de la traduction dans le marketing à l&#8217;échelle mondiale. Nous discuterons de l&#8217;impact significatif des traductions payantes et des avantages des outils tels que OpenAI et Deep Level. Vous saisirez l&#8217;influence majeure de la traduction sur les activités commerciales. En conclusion, nous évoquerons le projet WorldCorp, son achèvement et les implications futures de l&#8217;intelligence artificielle. Préparez-vous à une émission chargée d&#8217;informations précieuses et de discussions stimulantes. Attachez vos ceintures, le voyage commence ici.</p>\n\n\n\n<p><strong>Pour tester Blocknotes :</strong></p>\n\n\n\n<ol data-block-type=\"core\">\n<li data-block-type=\"core\">Installez l&#8217;application testflight : https://apps.apple.com/fr/app/testflight/id899247664</li>\n\n\n\n<li data-block-type=\"core\">Cliquez sur cette invitation :&nbsp;<a href=\"https://t.co/oLmLR8zqxF\" target=\"_BLANK\" rel=\"noreferrer noopener\">testflight.apple.com/join/1LHlA8uA</a>&nbsp;</li>\n\n\n\n<li data-block-type=\"core\">Créez des notes 🙂</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-ecoutez-le-podcast-sur\" data-block-type=\"core\">Ecoutez le podcast sur </h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\" data-block-type=\"core\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"https://podcasts.apple.com/fr/podcast/woa-wordpress-on-air/id1482779414\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/apple-podcasts-e1571142591535.jpg\" alt=\"\" class=\"wp-image-66447\" //></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"https://open.spotify.com/show/5rEMqG2cyoKYxpTTUAKSPp\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/unknown.png\" alt=\"\" class=\"wp-image-66448\" //></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"https://www.deezer.com/fr/show/586602\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/deezer-1024x196.png\" alt=\"\" class=\"wp-image-66449\" //></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"http://podplayer.net/?podId=2447675\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/podcast-addict-for-windows-pc.jpg\" alt=\"\" class=\"wp-image-66450\" //></a></figure>\n</div>\n</div>\n\n\n\n<hr data-block-type=\"core\"/>\n\n\n\n<p><strong>Sommaire de l&#8217;épisode :</strong></p>\n\n\n\n<ul data-block-type=\"core\">\n<li data-block-type=\"core\">⏱️ 00:33 Sommaire</li>\n\n\n\n<li data-block-type=\"core\">⏱️ 00:56 Blocknotes</li>\n\n\n\n<li data-block-type=\"core\">⏱️ 02:31 Plugin live preview</li>\n\n\n\n<li data-block-type=\"core\">⏱️ 04:44 Interview FX Bénard</li>\n</ul>\n\n\n\n<div class=\"wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-b1933f2\" id=\"mon-invite\" data-block-id=\"b1933f2\"><h2 class=\"stk-block-heading__text\">Mon invité</h2></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:28% auto\" data-block-type=\"core\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://www.whodunit.fr/wp-content/uploads/2023/10/img_1014-810x1080.jpeg);background-position:40% 43%\"><img width=\"810\" height=\"1080\" src=\"https://www.whodunit.fr/wp-content/uploads/2023/10/img_1014-810x1080.jpeg\" alt=\"\" class=\"wp-image-76130 size-full\" //></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading\" id=\"h-francois-xavier-benard\" data-block-type=\"core\">François-Xavier Bénard</h2>\n\n\n\n<p>Également connu sous les pseudonymes &#8220;fxbenard&#8221; ou &#8220;FXB&#8221; sur le web, est un individu très actif et engagé dans la communauté WordPress, notamment dans le domaine de la traduction et de la localisation. Voici quelques éléments marquants de sa vie et de son travail :</p>\n</div></div>\n\n\n\n<ul data-block-type=\"core\">\n<li data-block-type=\"core\"><strong>Passion pour les Traductions WordPress</strong> : FX est un professionnel qui se consacre principalement à la traduction française des produits liés à WordPress. Il collabore étroitement avec les développeurs de thèmes et d&#8217;extensions WordPress pour s&#8217;assurer que les produits sont disponibles en français.</li>\n\n\n\n<li data-block-type=\"core\"><strong>Rôle clé dans WordPress</strong> : FX est le co-créateur de WP-Translations, une société spécialisée dans la traduction de produits WordPress en plus de 20 langues. Il est également le CEO de TranslationsPress, une plateforme dédiée à la traduction. En outre, depuis la fin de 2015, il occupe le poste de G(eneral) T(ranslation) E(ditor) pour la communauté francophone sur WordPress.org. Cela signifie qu&#8217;il est activement impliqué dans la traduction française de WordPress sur de nombreuses plateformes.</li>\n\n\n\n<li data-block-type=\"core\"><strong>Voyageur et Papa Heureux</strong> : En dehors de son travail dans le domaine de WordPress, FX partage quelques aspects personnels. Il se décrit comme un ancien voyageur et touche-à-tout. Il est également un père comblé.</li>\n\n\n\n<li data-block-type=\"core\"><strong>Amoureux du Café et du Pineau</strong> : FX est un amateur de café, mais il tient à rappeler que la modération est de mise. Il apprécie également le pineau, une boisson traditionnelle de la région de Charente, mais toujours avec modération.</li>\n\n\n\n<li data-block-type=\"core\"><strong>Passion pour la Musique</strong> : FX aime écouter de la musique, en particulier du reggae qui le fait vibrer. Il apprécie aussi le &#8220;bon gros son.&#8221;</li>\n\n\n\n<li data-block-type=\"core\"><strong>Outils de Travail</strong> : FX utilise WordPress comme principal outil de gestion de contenu. Il travaille également avec un thème enfant de Réunion. Parmi ses extensions favorites, on trouve WordPress SEO de Yoast, BackWPup, LoginLock, HybridTabs, Gravity Forms, et Easy Digital Downloads. Il a également sa propre palette de couleurs pour son travail, en mettant en avant le bleu comme couleur principale, ainsi qu&#8217;une touche de rouge pour rappeler la thématique française.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-pour-aller-plus-loin\" data-block-type=\"core\">Pour aller plus loin</h2>\n\n\n\n<ul data-block-type=\"core\">\n<li data-block-type=\"core\"><a href=\"https://apps.apple.com/fr/app/testflight/id899247664\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Testflight</a></li>\n</ul>\n\n\n\n<ol data-block-type=\"core\">\n<li data-block-type=\"core\"><strong>WordPress Playground</strong>: Ce terme fait référence à la possibilité de charger un environnement WordPress sur un serveur local ou distant pour expérimenter ou tester des configurations sans affecter un site Web en direct.<br><a href=\"https://www.wordpress.org/\">Plus d&#8217;informations sur WordPress Playground</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>BlockNotes</strong>: Il s&#8217;agit d&#8217;une application de prise de notes basée sur WordPress et Playground. Elle permet aux utilisateurs de créer des notes en utilisant des blocs Gutenberg.<br><a href=\"https://apps.apple.com/us/app/blocknotes/id1687450046\">BlockNotes sur l&#8217;App Store US</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>Extensions WordPress</strong>: Les extensions, aussi appelées plugins, sont des logiciels qui ajoutent des fonctionnalités supplémentaires à un site WordPress.<br><a href=\"https://www.wordpress.org/plugins/\">En savoir plus sur les extensions WordPress</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>WordPress Core</strong>: Le &#8220;Core&#8221; de WordPress est le cœur du logiciel WordPress, il inclut le code principal et les fonctionnalités essentielles du système de gestion de contenu (CMS) WordPress.<br><a href=\"https://github.com/WordPress/wordpress-develop\">WordPress Core sur Github</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>GTE (General Translation Editor)</strong>: GTE est un acronyme pour &#8220;General Translation Editor&#8221;. Il s&#8217;agit de personnes qui ont des droits spéciaux pour gérer et superviser les traductions de WordPress pour une langue spécifique.<br><a href=\"https://make.wordpress.org/polyglots/handbook/translating/roles-and-capabilities/#general-translation-editor\">Plus d&#8217;informations sur le rôle de GTE</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>Translate WordPress</strong>: Translate WordPress est la plateforme officielle utilisée pour la traduction de WordPress et de ses extensions dans différentes langues.<br><a href=\"https://translate.wordpress.org/\">Accédez à Translate WordPress</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>Language Pack</strong>: Les Language Packs sont des ensembles de fichiers de traduction générés automatiquement pour WordPress et ses extensions. Ils permettent aux utilisateurs de WordPress de voir leur site dans leur langue préférée.<br><a href=\"https://make.wordpress.org/core/handbook/releases/translation-releases/\">En savoir plus sur les Language Packs</a></li>\n\n\n\n<li data-block-type=\"core\"><strong>Slug</strong>: Dans le contexte de WordPress, un slug est un texte convivial pour les moteurs de recherche qui est utilisé dans l&#8217;URL d&#8217;une publication, d&#8217;une page ou d&#8217;une taxonomie. Il s&#8217;agit généralement d&#8217;une version simplifiée et lisible par l&#8217;humain du titre de la publication ou de la page.</li>\n\n\n\n<li data-block-type=\"core\"><strong>Yost SEO</strong>: Une référence à l&#8217;extension Yoast SEO, qui est une extension populaire pour optimiser le référencement de sites WordPress.<br><a href=\"https://yoast.com/\">Plus d&#8217;informations sur Yoast SEO</a></li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-j-attends-vos-retours-avec-impatience\" data-block-type=\"core\">J&#8217;attends vos retours avec impatience&nbsp;!</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:20% auto\" data-block-type=\"core\"><figure class=\"wp-block-media-text__media\"><img width=\"1080\" height=\"1080\" src=\"https://www.whodunit.fr/wp-content/uploads/2023/05/template-carre-1080x1080.jpg\" alt=\"\" class=\"wp-image-75791 size-full\" //></figure><div class=\"wp-block-media-text__content\">\n<p>Je vous invite à écouter, partager et surtout à laisser vos commentaires et évaluations. Votre feedback est non seulement précieux pour moi, mais il aide aussi le podcast à toucher un public plus large. ????</p>\n\n\n\n<p>Vous souhaitez intervenir ? Envoyez un mail à eddy@whodunit.fr ou rejoignez-moi sur LinkedIn <a href=\"https://www.linkedin.com/in/eddy-boels/\" target=\"_blank\" rel=\"noreferrer noopener\">https://www.linkedin.com/in/eddy-boels/</a> pour en discuter.</p>\n</div></div>\n<p>L’article <a rel=\"nofollow\" href=\"https://www.whodunit.fr/woa-29-traduire-wordpress-et-ses-dependances/\">WOA ! #29 Traduire WordPress et ses dépendances</a> est apparu en premier sur <a rel=\"nofollow\" href=\"https://www.whodunit.fr\">Agence WordPress Whodunit</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Eddy Boels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://www.whodunit.fr/podcasts/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Podcast WordPress on Air!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:5;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://www.seomix.fr/optimiser-fiche-google-my-business/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"7 Astuces pour Optimiser votre Fiche Google My Business\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:57:\"https://www.seomix.fr/optimiser-fiche-google-my-business/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-12T07:00:00.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-10-12T07:00:00.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Découvrez dans cet article, 7 astuces de professionnels du référencement web pour booster la visibilité de votre fiche Google My Business !\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:432:\"\n <div><img width=\"180\" height=\"135\" src=\"https://www.seomix.fr/wp-content/uploads/2023/10/astuces-pour-optimiser-sa-fiche-google-my-business-180x135.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"astuces pour optimiser sa fiche Google My Business\"/></div>Découvrez dans cet article, 7 astuces de professionnels du référencement web pour booster la visibilité de votre fiche Google My Business !\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Jean-Marie Even\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://www.seomix.fr/wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"SeoMix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:6;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://beapi.fr/blog/linteractivite-sur-wordpress-une-nouvelle-api-pour-lediteur-de-blocs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"L’interactivité sur WordPress: une nouvelle API pour l’éditeur de blocs\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:91:\"https://beapi.fr/blog/linteractivite-sur-wordpress-une-nouvelle-api-pour-lediteur-de-blocs/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-09-27T13:29:14.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-09-27T13:29:14.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:518:\"Lors du dernier WordCamp Europe, nous avons plongé dans les coulisses de l’éditeur de blocs WordPress pour explorer une nouveauté en cours de développement : l’API d’interactivité. Cette nouvelle brique vise à améliorer un aspect encore trop peu considéré des blocs : leur comportement côté front, c’est-à-dire la façon dont ils se manifestent visuellement pour […]\nThe post L’interactivité sur WordPress: une nouvelle API pour l’éditeur de blocs appeared first on Agence WordPress Be API.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:13482:\"\n \n<p>Lors du dernier WordCamp Europe, nous avons plongé dans les coulisses de l&rsquo;éditeur de blocs WordPress pour explorer une nouveauté en cours de développement : l&rsquo;API d&rsquo;interactivité. Cette nouvelle brique vise à améliorer un aspect encore trop peu considéré des blocs : leur comportement côté front, c’est-à-dire la façon dont ils se manifestent visuellement pour l’utilisateur final.</p>\n\n\n\n<p>L&rsquo;interactivité, dans ce contexte, désigne la capacité d&rsquo;un bloc à répondre immédiatement à une action utilisateur. Pensez à un bloc accordéon qui s&rsquo;ouvre, un sous-menu qui s’affiche ou encore à une modification des quantités d&rsquo;un panier sur un site e-commerce.</p>\n\n\n\n<p>Ces interactions étaient jusqu&rsquo;alors laissées à l&rsquo;appréciation de chaque développeur, entrainant plusieurs challenges techniques sur lesquelles nous reviendrons plus tard dans cet article. Mais avant cela, commençons par rappeler l’intérêt pour le CMS open source WordPress de s&rsquo;orienter vers la création de nouvelles API.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Le rôle essentiel des API dans WordPress</h2>\n\n\n\n<p>WordPress propose une vaste gamme d&rsquo;<strong><a href=\"https://developer.wordpress.org/apis/\">Interfaces de Programmation Applicative</a></strong>, plus connues sous l&rsquo;acronyme anglais API.</p>\n\n\n\n<p>Leur intérêt ? Standardiser de nombreux aspects du code que les développeurs d’extensions et de thèmes WordPress pourraient avoir à écrire. Au lieu de repartir de zéro à chaque fois, ils bénéficient d&rsquo;une palette de ressources prédéfinies, comme des fonctions ou des classes.</p>\n\n\n\n<p>Voici les avantages clés :</p>\n\n\n\n<ul>\n<li><strong>Simplicité et Clarté</strong> : Les codes requis sont non seulement standardisés, mais aussi bien documentés, les rendant accessibles à tous les développeurs utilisant WordPress.</li>\n\n\n\n<li><strong>Sécurité et Performance</strong> : Ces deux aspects sont gérés par défaut par les API, qui bénéficient en plus du regard expert de la communauté qui participe au développement du cœur de WordPress.</li>\n\n\n\n<li><strong>Flexibilité</strong> : Les API peuvent être ajustées et enrichies au fil du temps, offrant toujours plus de possibilités, de correctifs et d&rsquo;améliorations, sans contraindre les développeurs à revoir constamment leur code.</li>\n</ul>\n\n\n\n<p>Les API WordPress ne sont pas seulement des outils pour faciliter la vie des développeurs. Elles incarnent la vision de WordPress pour un développement web plus efficace, sécurisé et évolutif.</p>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\">Renforcer l’interactivité</h2>\n\n\n\n<p>L&rsquo;éditeur de blocs WordPress offre déjà une large gamme d&rsquo;outils permettant une édition riche des contenus en backoffice. Mais jusqu&rsquo;à récemment, les développeurs désireux de proposer des rendus complexes et/ou interactif sur la partie front devaient concevoir leur propre solution, souvent sans lignes directrices claires ni bonnes pratiques établies. Cette hétérogénéité de solutions pouvait altérer la performance, l&rsquo;accessibilité et la sécurité des pages.</p>\n\n\n\n<p>L&rsquo;introduction de l&rsquo;éditeur de site, ou « Full Site Editing » (FSE), a mis ce problème en lumière, avec sa construction à partir de blocs. En réponse à cela, un groupe de développeurs a entrepris de concevoir une solution&nbsp;: leur réflexion a donné lieu à <strong><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">un article détaillé</a></strong>, présentant cette nouvelle API, ainsi qu&rsquo;un <strong><a href=\"https://wpmovies.dev/\">site de démonstration</a></strong>. Son déploiement comporte des défis, puisqu’elle doit être fonctionnelle côté serveur lors du rendu de la page et côté navigateur où l’utilisateur va interagir avec les blocs.</p>\n\n\n\n<p>Pour cette API, les développeurs ont établi des critères essentiels, tels que :</p>\n\n\n\n<ul>\n<li>Une intégration fluide avec la logique actuelle des blocs, accessible côté serveur en PHP,</li>\n\n\n\n<li>Une compatibilité avec le cœur de WordPress et les extensions existantes, y compris tous les crochets pour manipuler le rendu HTML,</li>\n\n\n\n<li>Une mise en œuvre optionnelle pour la maintenance ou la création de blocs, avec une adoption progressive selon les besoins,</li>\n\n\n\n<li>Une influence minimale sur la performance des pages web.</li>\n</ul>\n\n\n\n<p>D&rsquo;autres conditions ciblent spécifiquement les développeurs d&rsquo;extensions.</p>\n\n\n\n<p>Cette nouvelle API présente le potentiel de transformer la dynamique des blocs face aux interactions des utilisateurs. Elle permet aux développeurs de se focaliser sur leurs objectifs métiers, tout en simplifiant la mise en place des fondements techniques nécessaires à ces ambitions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Pour les utilisateurs finaux</h2>\n\n\n\n<p>Bien que conçue initialement pour optimiser le quotidien des développeurs, cette nouvelle API présente des bénéfices tangibles pour tous, avec en tête de liste une amélioration significative des performances et une consolidation de la sécurité.</p>\n\n\n\n<p>Comme mentionné précédemment, les avantages offerts par les APIs sont vastes.</p>\n\n\n\n<p>Concernant l&rsquo;API d&rsquo;interactivité, ses principaux atouts pour les utilisateurs finaux se distinguent par :</p>\n\n\n\n<ul>\n<li><strong>Une navigation plus rapide et fluide:</strong> Avec moins de ressources à charger et une optimisation maximale, les utilisateurs bénéficient d&rsquo;un temps de chargement réduit et d&rsquo;une meilleure réactivité, garantissant une expérience optimisée.</li>\n\n\n\n<li><strong>Qualité du code :</strong> Le socle programmatique est revu et approuvé par une communauté de développeurs soucieuse de sa performance, sa sécurité et sa capacité d&rsquo;évolution. Un code de qualité se traduit par moins de bugs, de défaillances et d&rsquo;interruptions &#8211; tout cela contribuant à une navigation plus fluide et plus sécurisée.</li>\n\n\n\n<li><strong>Interopérabilité :</strong> Cette nouveauté assure une harmonie entre différents éléments d&rsquo;une page, permettant des d&rsquo;interactions plus intelligentes et intuitives. Que ce soit un widget météo qui s&rsquo;adapte en fonction de votre localisation ou une intégration e-commerce qui suggère des produits en fonction de votre navigation, cette interopérabilité enrichit considérablement l&rsquo;expérience utilisateur.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Pour les développeurs</h2>\n\n\n\n<p><em>Cette nouvelle API n’est pas encore stabilisée, les exemples de codes sont donnés à titre d’exemple et vont très probablement être modifiés dans le futur.</em></p>\n\n\n\n<p>L’un des points forts de cette nouvelle API en termes de développement est d’être réactive. On y retrouve les éléments qui font la force de la philosophie de React: des “interfaces“ dérivées d’un état précis. Le développeur décrit la façon dont l’interface doit s’afficher et comment son état doit être modifié et la librairie sous-jacente s’occupe de détecter les événements, mettre à jour l’état et muter l’interface en conséquence. C’est là toute la philosophie de l’éditeur de blocs.</p>\n\n\n\n<p>À l’inverse, pour ajouter de l’interactivité sur des éléments d’un site, il était souvent question de passer par jQuery (ou du JavaScript natif). Avec cette approche, le développeur est chargé de la gestion du rendu de l’interface, de la détection des événements, de la mise à jour de l&rsquo;état et de la modification de l&rsquo;interface. Plus les éléments à mettre à jour sont nombreux, plus cette méthode révèle ses faiblesses.</p>\n\n\n\n<p>Un autre impératif crucial pour cette API était sa compatibilité avec le rendu côté serveur. Le HTML produit par le serveur doit constituer le fondement du côté client, sur lequel une dimension interactive est superposée. Ce HTML ne doit pas être intégralement remplacé. D&rsquo;un point de vue performance et SEO, cela garantit l&rsquo;affichage instantané d&rsquo;un contenu tangible, évitant un effet « page vierge » pendant le téléchargement et l&rsquo;exécution du JavaScript nécessaire au rendu. Cela assure également que toute modification apportée au HTML côté serveur est conservée, comme l&rsquo;ajout éventuel de classes CSS.</p>\n\n\n\n<p>Pour la composante « réactive », l&rsquo;équipe a opté pour la bibliothèque <strong><a href=\"https://preactjs.com/\">Preact</a></strong>, qui, tout en étant plus compacte, emprunte largement aux concepts de <strong><a href=\"https://react.dev/\">React</a></strong>. C&rsquo;est cette couche qui orchestre la mise à jour des interfaces en fonction des interactions des utilisateurs.</p>\n\n\n\n<p>La véritable innovation réside dans la méthode d&rsquo;intégration des éléments interactifs, réalisée par le biais de directives HTML. Ce principe s&rsquo;inspire de ce qui est fait par la librairie <a href=\"https://alpinejs.dev/\">AlpineJs</a>.</p>\n\n\n\n<p>Via ce système, on peut facilement enrichir un code HTML pour lui permettre de déclencher des actions ou de réagir à des changements (des « effets »).</p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n <div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\" data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">&lt;div<br //> data-wp-context=&#039;{ &quot;isOpen&quot;: false }&#039;<br //> data-wp-effect=&quot;effects.logIsOpen&quot;<br //>&gt;<br //> &lt;button<br //> data-wp-on--click=&quot;actions.toggle&quot;<br //> data-wp-bind--aria-expanded=&quot;context.isOpen&quot;<br //> aria-controls=&quot;p-1&quot;<br //> &gt;<br //> Toggle<br //> &lt;/button&gt;<br //> <br //> &lt;p id=&quot;p-1&quot; data-wp-show=&quot;context.isOpen&quot;&gt;<br //> This element is now visible!<br //> &lt;/p&gt;<br //>&lt;/div&gt;</code></pre> <div class=\"code-embed-infos\"> </div> </div></div>\n\n\n\n<p>Ces directives vont permettre de lier les éléments HTML avec la partie réactive en JavaScript</p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n <div class=\"code-embed-wrapper\"> <pre class=\"language-javascript code-embed-pre line-numbers\" data-start=\"1\" data-line-offset=\"0\"><code class=\"language-javascript code-embed-code\">import { store } from &quot;@wordpress/interactivity&quot;;<br //> <br //>store({<br //> actions: {<br //> toggle: ({ context }) =&gt; {<br //> context.isOpen = !context.isOpen;<br //> },<br //> },<br //> effects: {<br //> logIsOpen: ({ context }) =&gt; {<br //> // Log the value of `isOpen` each time it changes.<br //> console.log(`Is open: ${context.isOpen}`);<br //> },<br //> },<br //>});</code></pre> <div class=\"code-embed-infos\"> </div> </div></div>\n\n\n\n<p>Dans l&rsquo;exemple ci-dessus (issu de l&rsquo;article de présentation de l&rsquo;API interactivé publié sur le bloc Make Core), on a un « bloc » fictif qui fonctionne comme un accordéon.</p>\n\n\n\n<p>Pour résumer le fonctionnement, lorsque l&rsquo;utilisateur clique sur l&rsquo;élément bouton, celui-ci vient changer la valeur de l&rsquo;état <code>isOpen</code>. Au moment où cette valeur change, cela va avoir pour effet (d&rsquo;où le nom « effect » utilisé en anglais) d&rsquo;afficher ou de masquer l&rsquo;élément paragraphe.</p>\n\n\n\n<p>Tout ce fonctionnement est porté par les directives visibles dans le HTML comme <code>data-wp-on--click</code>, <code>data-wp-show</code> et qui font le pont avec le code JavaScript.</p>\n\n\n\n<p>L&rsquo;article sur le Core est très bien fait et présente plus complète du mécanisme et des directives en faisant le parallèle avec React.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion</h2>\n\n\n\n<p>Ainsi, l&rsquo;éditeur Gutenberg continue d’évoluer et de s’améliorer. Cette nouvelle API est une proposition très intéressante pour faciliter le développement d’expériences interactives via les blocs. Les développeurs qui ont contribué à sa création ont poussé la réflexion pour proposer une solution s&rsquo;intégrant parfaitement dans l&rsquo;écosystème WordPress existant, en restant le plus léger possible. </p>\n\n\n\n<p>Des développeurs travaillant sur le projet Gutenberg ou WooCommerce ont déjà commencé à faire évoluer leurs blocs pour profiter des nouvelles possibilités qu’offre cette API. Il a y fort à parier qu’elle va continuer d’évoluer &#8211; mais il est intéressant de voir qu’elle est déjà exploitée.</p>\n\n\n\n<p>Si vous souhaitez suivre les développements, un <a href=\"https://github.com/WordPress/gutenberg/discussions/52906\">changelog</a> est disponible pour suivre les évolutions de l’API et elle a <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\">sa propre catégorie</a> dans la partie Discussions du projet Gutenberg.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://beapi.fr/blog/linteractivite-sur-wordpress-une-nouvelle-api-pour-lediteur-de-blocs/\">L’interactivité sur WordPress: une nouvelle API pour l’éditeur de blocs</a> appeared first on <a rel=\"nofollow\" href=\"https://beapi.fr\">Agence WordPress Be API</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Clément Boirie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://beapi.fr/blog/categories/wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BeAPI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:7;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wp-rocket.me/fr/blog/wp-rocket-3-15/#comment-4387875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Commentaires sur 3.15 – Le LazyLoad désormais disponible pour les images de backgrounds CSS par Valentina Orlandi\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:60:\"https://wp-rocket.me/fr/blog/wp-rocket-3-15/#comment-4387875\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-09-21T11:19:37.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-09-21T11:19:37.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:564:\"En réponse à Gérard.\n\nBonjour Gérard, Pouvez-vous ouvrir un ticket de support et nous fournir les informations suivantes?\n- Liens vers les pages où vous avez remarqué le changement de score uniquement à cause de l&#039;activation de la fonctionnalité.\n- La version de la page affectée par le changement de score (Desktop ou Mobile, ou les deux ?)\nLe support aura besoin d&#039;un accès administrateur à votre site pour effectuer des tests avec et sans la nouvelle fonctionnalité. Ils vous en demanderont un lorsqu&#039;ils répondront à votre demande.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:703:\"\n <p>En réponse à <a href=\"https://wp-rocket.me/fr/blog/wp-rocket-3-15/#comment-4384721\">Gérard</a>.</p>\n<p>Bonjour Gérard, Pouvez-vous ouvrir un ticket de support et nous fournir les informations suivantes?<br //>\n&#8211; Liens vers les pages où vous avez remarqué le changement de score uniquement à cause de l&#8217;activation de la fonctionnalité.<br //>\n&#8211; La version de la page affectée par le changement de score (Desktop ou Mobile, ou les deux ?)<br //>\nLe support aura besoin d&#8217;un accès administrateur à votre site pour effectuer des tests avec et sans la nouvelle fonctionnalité. Ils vous en demanderont un lorsqu&#8217;ils répondront à votre demande.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Valentina Orlandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wp-rocket.me/fr/blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WP Rocket\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:8;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://api.follow.it/track-rss-story-click/v3/8GP0TN3yObjaVYDJYPqkVAO5yOwvVe_2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"sécuri\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:79:\"https://api.follow.it/track-rss-story-click/v3/8GP0TN3yObjaVYDJYPqkVAO5yOwvVe_2\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-08-18T23:04:28.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-08-18T23:04:28.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:155:\"<img src=\"https://api.follow.it/track-rss-story-loaded/v1/KJhHJJfL2KHS2JYC0C3WfJs0ohxaO6Yr\" border=\"0\" width=\"1\" height=\"1\" alt=\"sécuri\" title=\"sécuri\"> \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"\n <img src=\"https://api.follow.it/track-rss-story-loaded/v1/KJhHJJfL2KHS2JYC0C3WfJs0ohxaO6Yr\" border=\"0\" width=\"1\" height=\"1\" alt=\"sécuri\" title=\"sécuri\"/> \n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://feeds.feedburner.com/LechodespluginsWp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"L’écho des plugins WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:9;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:9:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Contribution Stats for WordPress 6.3 « Lionel »\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:83:\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-08-14T15:58:52.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"published\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2023-08-14T15:58:52.000+02:00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:558:\"L’article Contribution Stats for WordPress 6.3 « Lionel » provient de Jean-Baptiste Audras - CTO @ Whodunit & WordPress Core Developer\nWordPress 6.3 « Lionel » was released on August 8, 2023. This version is named « Lionel », after the American jazzer Lionel Hampton. I was involved in this release as Triage Lead and as a core committer. It was a pleasure to work with the release squad. A […]\nL’article Contribution Stats for WordPress 6.3 « Lionel » provient de Jean-Baptiste Audras - CTO @ Whodunit & WordPress Core Developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:16410:\"\n <p>L’article <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a> provient de <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com\">Jean-Baptiste Audras - CTO @ Whodunit &amp; WordPress Core Developer</a></p>\n\n<p>WordPress 6.3 «&nbsp;Lionel&nbsp;»&nbsp;was released on August 8, 2023. This version is named&nbsp;<em>«&nbsp;Lionel&nbsp;»</em>, after the American jazzer Lionel Hampton.</p>\n\n\n\n<p>I was involved in this release as&nbsp;<em>Triage Lead</em>&nbsp;and as a&nbsp;<a href=\"https://github.com/WordPress/wordpress-develop/commits?author=audrasjb\">core committer</a>. It was a pleasure to work with the release squad. A big&nbsp;<em>thank you</em>&nbsp;to all the talented people who worked hard to put together WP&nbsp;6.3 <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p>\n\n\n\n<p>As for previous releases, let’s have a look on a few stats about this release.</p>\n\n\n\n<p>In the past, I already published some contributions stats for versions <a href=\"https://jeanbaptisteaudras.com/en/2019/11/distribution-of-wordpress-5-3-contributors-by-country-2/\">5.3</a>, <a href=\"https://jeanbaptisteaudras.com/en/2020/03/wordpress-5-4-core-contribution-statistics/\">5.4</a>, <a href=\"https://jeanbaptisteaudras.com/en/2020/08/wordpress-5-5-core-stats-contributions-by-country-company/\">5.5</a>, <a href=\"https://jeanbaptisteaudras.com/en/2020/12/wordpress-5-6-core-stats-contributions-by-country-company/\">5.6</a>, <a href=\"https://datastudio.google.com/u/0/reporting/a496c333-7e64-412c-9299-9ea2c84e5d2c/page/j595B\">5.7</a>, <a href=\"https://jeanbaptisteaudras.com/en/2022/01/wordpress-5-9-core-contribution-statistics/\">5.9</a>, <a href=\"https://jeanbaptisteaudras.com/en/2022/05/wp-6-0-arturo-contribution-stats/\">6.0</a>, <a href=\"https://jeanbaptisteaudras.com/en/2022/11/contribution-stats-for-wordpress-6-1-misha/\">6.1</a> and <a href=\"https://jeanbaptisteaudras.com/2023/04/contribution-stats-for-wordpress-6-2-dolphy/\">6.2</a>. I did it again for WP 6.3, so we can have an eye on the relative « influence » of countries and companies on WordPress Core.</p>\n\n\n\n<p>Before diving into WordPress 6.3 Core contributions stats, I wanted to share a few disclaimers, for better context:</p>\n\n\n\n<ul>\n<li>These stats were generated after the last Release Candidate of WP 6.3. Thanks to&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\" target=\"_blank\" rel=\"noreferrer noopener\">Jon</a>&nbsp;who collected the props list for the release squad.</li>\n\n\n\n<li>These statistics only relate to Core contributions (= props gained for source code contributions) of WordPress. There is a lot of other types of contributions, not listed here: marketing, communication, translation, testing…</li>\n\n\n\n<li>To get these stats, I parsed the WordPress.org profile page of each contributor to get some public informations about them: country, employer, and wether they already contributed to WordPress Core or not.</li>\n\n\n\n<li>It includes both Core contributions on Trac and Gutenberg pull requests on GitHub.</li>\n\n\n\n<li>Those stats are based on what’s declared in each contributors’s wp.org profile.&nbsp;<strong>Users with empty profile info are not taken into account.</strong></li>\n</ul>\n\n\n\n<div class=\"wp-block-group alignwide is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"wp-block-heading alignwide\">WordPress 6.3 overall stats</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<p><strong>About 640</strong>&nbsp;<strong>people</strong>&nbsp;from at least&nbsp;<strong>52 countries</strong>&nbsp;and&nbsp;<strong>186 identified companies</strong>&nbsp;contributed to WordPress&nbsp;6.3.</p>\n\n\n\n<p>Worth noting that&nbsp;<strong>207 people contributed to WordPress Core for the very first time!</strong>&nbsp;That’s&nbsp;about&nbsp;<strong>32%</strong>&nbsp;of the total number of contributors!</p>\n\n\n\n<p>The ratio of new contributors is still quite good for an open-source project!<a href=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/04/evolution-release-wp62.svg\"></a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<figure class=\"wp-block-image size-large\"><img width=\"831\" height=\"523\" src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/Evolution-of-WordPress-Core-contributors-across-recent-releases-2.svg\" alt=\"\" class=\"wp-image-145060\" //></figure>\n</div>\n</div>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide\">Country ranking by number of contributions</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<p>It’s interesting to see how much WordPress is a worldwide project. Contributions come from all over the planet <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p>\n\n\n\n<p><strong>USA</strong>&nbsp;is still number one by far with 863 contributions,&nbsp;<strong>United Kingdom</strong>&nbsp;comes 2<sup>nd</sup> with 360 contributions.&nbsp;<strong>Russia</strong> and <strong>France</strong>&nbsp;follows with 346 and 320 contributions each, and&nbsp;<strong>India</strong>&nbsp;and <strong>Australia</strong> with 291 and 266 props.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<figure class=\"wp-block-image size-large\"><img width=\"1200\" height=\"1200\" src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributions-country.svg\" alt=\"\" class=\"wp-image-145066\" //></figure>\n\n\n\n\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading alignwide\">Country ranking by number of contributors</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<figure class=\"wp-block-image size-large\"><img width=\"1200\" height=\"1200\" src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributors-country.svg\" alt=\"\" class=\"wp-image-145069\" //></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<p>Still, contributions are not everything.&nbsp;<strong>Let’s talk about contributors</strong>. Instead of counting contributions, we can count the individuals who worked on this release (=&nbsp;number of people credited in Trac tickets or GitHub PRs)… and we have the following results&nbsp;:</p>\n\n\n\n<p><strong>USA</strong> is still on the top of the game with 102 people. <strong>India</strong> has 68 and <strong>Bangladesh</strong> has 48.</p>\n\n\n\n<p>These countries are followed by <strong>France</strong> and <strong>United Kingdom</strong> with 19 contributors each.</p>\n\n\n\n<p>In conclusion, USA still completely dominates the stats by number of independent contributors, and by number of contributions (props count). Bangladesh and India have a great number of people involved, but not so much contribution.</p>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Company ranking by contributions</h2>\n\n\n\n<p><strong>Automattic</strong> is still the most prolific company with employees credited in no less than 1718 contributions (by 83 contributors), and is followed by plugin editor <strong>Yoast</strong> with 499 contributions (by 6 contributors) and <strong>Whodunit</strong> French agency (298 contributions by 6 people). Next, we have the international WP agencies <strong>10up</strong> (290 contributions by 16 people), <strong>XWP</strong> (180 contributions), hosting companies like <strong>GoDaddy</strong> (173 contributions) and <strong>Google</strong> with 161 contributions.</p>\n\n\n\n<p>Worth noting that major stakeholders can still be categorized in three sorts of companies: agencies, plugins/themes editors and hosting companies. And of course, well… Automattic <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f61c.png\" alt=\"😜\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p>\n\n\n\n<p>In the graphic below, you&rsquo;ll see all the company credited in WordPress 6.3 and the number of contributions of their employees.</p>\n\n\n\n<figure class=\"wp-block-image alignwide size-large\"><a href=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributions-company.svg\"><img width=\"1200\" height=\"1200\" src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributions-company.svg\" alt=\"\" class=\"wp-image-145070\" //></a></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Company ranking by contributors</h2>\n\n\n\n<p>Of the 186 identified companies that contributed to WordPress 6.3, <strong>Automattic</strong> had by far the largest number of contributors, with 83 people involved. <strong>10up</strong> is the second biggest company in terms of contributors, with 16 people. <strong>WPDeveloper</strong> comes third with 11 people. <strong>AuthLab</strong> and <strong><strong>rtCamp</strong></strong> come fourth with 10 people.</p>\n\n\n\n<figure class=\"wp-block-image alignwide size-large\"><a href=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributor-company.svg\"><img width=\"1200\" height=\"1200\" src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributor-company.svg\" alt=\"\" class=\"wp-image-145072\" //></a></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" //>\n\n\n\n<h2 class=\"wp-block-heading\">Individuals ranking – WordPress 6.3</h2>\n\n\n\n<p>Here is the top 30 of WordPress 6.3 contributors. You can also checkout the full table <a href=\"https://docs.google.com/spreadsheets/d/159RrLuGKJeq1A_igMwDbZ7VVY7iWzwqbfmbtrlN_960/edit?usp=sharing\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">on this spreadsheet</a>.</p>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-16 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:20%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>#</th><th>Username</th><th>Contributions</th><th>Country</th><th>Company</th></tr></thead><tbody><tr><td>1</td><td>sergeybiryukov</td><td>296</td><td>Russia</td><td>Yoast</td></tr><tr><td>2</td><td>audrasjb</td><td>293</td><td>France</td><td>Whodunit</td></tr><tr><td>3</td><td>spacedmonkey</td><td>175</td><td>United Kingdom</td><td>XWP</td></tr><tr><td>4</td><td>mamaduka</td><td>143</td><td>Georgia</td><td>GoDaddy</td></tr><tr><td>5</td><td>costdev</td><td>142</td><td>NC</td><td>NC</td></tr><tr><td>6</td><td>mukesh27</td><td>119</td><td>India</td><td>10up</td></tr><tr><td>7</td><td>isabel_brison</td><td>110</td><td>NC</td><td>Automattic</td></tr><tr><td>8</td><td>ramonopoly</td><td>110</td><td>NC</td><td>NC</td></tr><tr><td>9</td><td>andrewserong</td><td>97</td><td>Australia</td><td>Automattic</td></tr><tr><td>10</td><td>wildworks</td><td>88</td><td>Japan</td><td>NC</td></tr><tr><td>11</td><td>youknowriad</td><td>87</td><td>Algeria</td><td>Automattic</td></tr><tr><td>12</td><td>scruffian</td><td>87</td><td>NC</td><td>Automattic</td></tr><tr><td>13</td><td>ntsekouras</td><td>84</td><td>Greece</td><td>Automattic</td></tr><tr><td>14</td><td>flixos90</td><td>81</td><td>United States</td><td>Google</td></tr><tr><td>15</td><td>peterwilsoncc</td><td>80</td><td>Australia</td><td>10up</td></tr><tr><td>16</td><td>poena</td><td>78</td><td>Sweden</td><td>Yoast</td></tr><tr><td>17</td><td>get_dave</td><td>75</td><td>United Kingdom</td><td>Automattic</td></tr><tr><td>18</td><td>sabernhardt</td><td>74</td><td>United States</td><td>NC</td></tr><tr><td>19</td><td>afercia</td><td>71</td><td>Italy</td><td>Yoast</td></tr><tr><td>20</td><td>tyxla</td><td>70</td><td>Bulgaria</td><td>Automattic</td></tr><tr><td>21</td><td>joedolson</td><td>69</td><td>United States</td><td>Accessible WD</td></tr><tr><td>22</td><td>aaronrobertshaw</td><td>67</td><td>NC</td><td>Automattic</td></tr><tr><td>23</td><td>richtabor</td><td>66</td><td>United States</td><td>Automattic</td></tr><tr><td>24</td><td>jameskoster</td><td>56</td><td>United Kingdom</td><td>Automattic</td></tr><tr><td>25</td><td>hellofromtonya</td><td>56</td><td>United States</td><td>Automattic</td></tr><tr><td>26</td><td>aristath</td><td>51</td><td>Greece</td><td>Yoast</td></tr><tr><td>27</td><td>joemcgill</td><td>49</td><td>United States</td><td>10up</td></tr><tr><td>28</td><td>mciampini</td><td>48</td><td>NC</td><td>Automattic</td></tr><tr><td>29</td><td>talldanwp</td><td>47</td><td>Australia</td><td>Automattic</td></tr><tr><td>30</td><td>ellatrix</td><td>47</td><td>NC</td><td>NC</td></tr></tbody></table></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:20%\"></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" //>\n\n\n\n<figure class=\"wp-block-pullquote is-style-default\"><blockquote><p>Thank you to everyone who helped <br>to release WordPress 6.3. <br>Big or small, each of the above company contributes <br>to the <a href=\"https://wordpress.org/five-for-the-future/\"><em>Five for the future</em> initiative</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f499.png\" alt=\"💙\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p></blockquote></figure>\n\n\n\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" //>\n\n\n<div class=\"wp-block-image is-style-rounded\">\n<figure class=\"aligncenter size-full is-resized\"><img src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2019/11/photo-avatar-jb-make-e1598437997298.jpg\" alt=\"Mon texte alternatif\" class=\"wp-image-99017\" style=\"width:127px;height:127px\" width=\"127\" height=\"127\" //></figure></div>\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large alignwide\">\n<p>I hope you liked that post! Comments &amp; shares are welcome&nbsp;<strong><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60d.png\" alt=\"😍\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></strong></p>\n\n\n\n<p><span style=\"color: inherit;font-family: inherit;letter-spacing: -0.0357143em\">You can also </span><a href=\"https://www.paypal.me/audrasjb\" target=\"_blank\" rel=\"noreferrer noopener\">buy me a beer or a coffee</a><span style=\"color: inherit;font-family: inherit;letter-spacing: -0.0357143em\"> if you want <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f37b.png\" alt=\"🍻\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2615.png\" alt=\"☕\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></span></p>\n\n\n\n<p>Feel free to reuse any graphic or data used in this post, without any limitation. The raw data are available <a href=\"https://docs.google.com/spreadsheets/d/1snF4iV3ejOKvifix5GYD08ydWHHQsIRCYEZPkLMDFCg/edit?usp=sharing\">on this spreadsheet</a>.</p>\n\n\n\n<p>Contact me if you have any question.</p>\n</blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" //>\n</div></div>\n\n\n\n<figure class=\"wp-block-image alignfull size-large\"><img width=\"1024\" height=\"415\" src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/WP63-banner-audrasjb-1024x415.png\" alt=\"\" class=\"wp-image-145064\" //></figure>\n<p>L’article <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a> provient de <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com\">Jean-Baptiste Audras - CTO @ Whodunit &amp; WordPress Core Developer</a></p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"Jb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://jeanbaptisteaudras.com/wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:512;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:12:\"nginx/1.21.4\";s:4:\"date\";s:29:\"Thu, 09 Nov 2023 07:12:26 GMT\";s:12:\"content-type\";s:20:\"application/atom+xml\";s:12:\"x-powered-by\";s:10:\"PHP/8.0.13\";s:13:\"last-modified\";s:29:\"Wed, 15 Dec 2021 21:33:54 GMT\";s:4:\"etag\";s:34:\"\"2ffe8d75591b5b1ed5ca7f66d3c037d3\"\";s:4:\"link\";s:57:\"<https://rss.wpfr.net/wp-json/>; rel=\"https://api.w.org/\"\";s:13:\"cache-control\";s:35:\"no-cache, no-store, must-revalidate\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:1:\"0\";s:25:\"strict-transport-security\";s:16:\"max-age=63072000\";}}s:5:\"build\";s:14:\"20230707232333\";}','no'),
  477. (930,'_transient_timeout_feed_mod_48c2a7450ae14f12ef8a9b58ca9f0748','1699557057','no'),
  478. (931,'_transient_feed_mod_48c2a7450ae14f12ef8a9b58ca9f0748','1699513857','no'),
  479. (932,'_transient_timeout_dash_v2_bd94b8f41e74bae2f4dc72e9bd8379af','1699557057','no'),
  480. (933,'_transient_dash_v2_bd94b8f41e74bae2f4dc72e9bd8379af','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://fr.wordpress.org/2023/11/07/wordpress-6-4-shirley/\'>WordPress 6.4 « Shirley »</a></li><li><a class=\'rsswidget\' href=\'https://fr.wordpress.org/2023/10/30/guide-des-changements-techniques-de-wordpress-6-4/\'>Guide des changements techniques de WordPress 6.4</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://www.whodunit.fr/wordpress-6-4-un-pas-de-geant-vers-un-avenir-plus-performant-et-accessible-pour-le-web/\'>WORDPRESS 6.4 : Un pas de géant vers un avenir plus performant et accessible pour le web</a></li><li><a class=\'rsswidget\' href=\'https://kinsta.com/fr/blog/statique-sveltekit/\'>Comment construire un site statique avec SvelteKit</a></li><li><a class=\'rsswidget\' href=\'https://wpmarmite.com/neve-fse/\'>Neve FSE : test de ce thème WordPress basé sur des blocs</a></li></ul></div>','no'),
  481. (943,'_transient_timeout_revisionary-post-edit-redirect-14678','1699518517','no'),
  482. (944,'_transient_revisionary-post-edit-redirect-14678','1','no'),
  483. (945,'_transient_timeout_revisionary-post-edit-redirect-14680','1699519182','no'),
  484. (946,'_transient_revisionary-post-edit-redirect-14680','1','no'),
  485. (947,'_transient_timeout_revisionary-post-edit-redirect-14682','1699519555','no'),
  486. (948,'_transient_revisionary-post-edit-redirect-14682','1','no'),
  487. (949,'_transient_timeout_revisionary-post-edit-redirect-14683','1699519581','no'),
  488. (950,'_transient_revisionary-post-edit-redirect-14683','1','no'),
  489. (951,'_transient_timeout_revisionary-post-edit-redirect-14684','1699519596','no'),
  490. (952,'_transient_revisionary-post-edit-redirect-14684','1','no'),
  491. (953,'_transient_timeout_revisionary-post-edit-redirect-14685','1699519634','no'),
  492. (954,'_transient_revisionary-post-edit-redirect-14685','1','no'),
  493. (957,'_transient_timeout_revisionary-post-edit-redirect-14686','1699519776','no'),
  494. (958,'_transient_revisionary-post-edit-redirect-14686','1','no'),
  495. (959,'_transient_timeout_revisionary-post-edit-redirect-14687','1699520314','no'),
  496. (960,'_transient_revisionary-post-edit-redirect-14687','1','no'),
  497. (961,'_transient_timeout_revisionary-post-edit-redirect-14688','1699520419','no'),
  498. (962,'_transient_revisionary-post-edit-redirect-14688','1','no'),
  499. (963,'_transient_timeout_revisionary-post-edit-redirect-14689','1699520517','no'),
  500. (964,'_transient_revisionary-post-edit-redirect-14689','1','no'),
  501. (965,'_transient_timeout_revisionary-post-edit-redirect-14690','1699520704','no'),
  502. (966,'_transient_revisionary-post-edit-redirect-14690','1','no'),
  503. (967,'_transient_timeout_revisionary-post-edit-redirect-14691','1699520787','no'),
  504. (968,'_transient_revisionary-post-edit-redirect-14691','1','no'),
  505. (969,'_transient_timeout_revisionary-post-edit-redirect-14692','1699520845','no'),
  506. (970,'_transient_revisionary-post-edit-redirect-14692','1','no'),
  507. (971,'_transient_timeout_revisionary-post-edit-redirect-14693','1699520884','no'),
  508. (972,'_transient_revisionary-post-edit-redirect-14693','1','no'),
  509. (973,'_transient_timeout_revisionary-post-edit-redirect-14694','1699520952','no'),
  510. (974,'_transient_revisionary-post-edit-redirect-14694','1','no'),
  511. (975,'_transient_timeout_revisionary-post-edit-redirect-14695','1699522077','no'),
  512. (976,'_transient_revisionary-post-edit-redirect-14695','1','no'),
  513. (979,'_transient_timeout_revisionary-post-edit-redirect-14696','1699522172','no'),
  514. (980,'_transient_revisionary-post-edit-redirect-14696','1','no'),
  515. (981,'_transient_timeout_revisionary-post-edit-redirect-14697','1699522262','no'),
  516. (982,'_transient_revisionary-post-edit-redirect-14697','1','no'),
  517. (983,'_transient_timeout_revisionary-post-edit-redirect-14698','1699522305','no'),
  518. (984,'_transient_revisionary-post-edit-redirect-14698','1','no'),
  519. (985,'_transient_timeout_revisionary-post-edit-redirect-14699','1699522405','no'),
  520. (986,'_transient_revisionary-post-edit-redirect-14699','1','no'),
  521. (987,'_transient_timeout_revisionary-post-edit-redirect-14700','1699522497','no'),
  522. (988,'_transient_revisionary-post-edit-redirect-14700','1','no'),
  523. (989,'_transient_timeout_revisionary-post-edit-redirect-14701','1699522565','no'),
  524. (990,'_transient_revisionary-post-edit-redirect-14701','1','no'),
  525. (991,'_transient_timeout_revisionary-post-edit-redirect-14702','1699522615','no'),
  526. (992,'_transient_revisionary-post-edit-redirect-14702','1','no'),
  527. (993,'_transient_timeout_revisionary-post-edit-redirect-14703','1699522676','no'),
  528. (994,'_transient_revisionary-post-edit-redirect-14703','1','no'),
  529. (995,'_transient_timeout_revisionary-post-edit-redirect-14704','1699522753','no'),
  530. (996,'_transient_revisionary-post-edit-redirect-14704','1','no'),
  531. (997,'_transient_timeout_revisionary-post-edit-redirect-14705','1699522807','no'),
  532. (998,'_transient_revisionary-post-edit-redirect-14705','1','no'),
  533. (999,'_transient_timeout_revisionary-post-edit-redirect-14706','1699523048','no'),
  534. (1000,'_transient_revisionary-post-edit-redirect-14706','1','no'),
  535. (1003,'_site_transient_timeout_available_translations','1699559783','no'),
  536. (1004,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.6/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-17 14:44:15\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.24/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-23 11:21:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 14:46:58\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-10-11 14:14:04\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 09:37:21\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 08:48:02\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-14 12:12:09\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-28 07:37:41\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-28 07:33:50\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.2.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-29 18:37:21\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-29 18:35:41\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.2.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-29 21:14:35\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-22 15:41:41\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-06 19:32:15\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-04 17:36:42\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.6/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.6/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 07:12:43\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-04 16:40:23\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 14:08:08\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.14/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.19/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-19 05:08:30\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-20 17:07:49\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-12 14:36:10\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-26 23:05:34\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-02 10:08:01\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-29 13:15:47\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-17 05:20:27\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-30 14:40:46\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-25 15:00:05\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-21 12:21:18\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2023-07-25 11:17:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.31\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.31/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-08 11:04:56\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 10:18:51\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-13 09:53:46\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-07 13:57:04\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-07 12:42:08\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-09-20 05:53:15\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2023-10-31 08:47:02\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.6/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.19/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.4/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-30 08:24:13\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 01:34:39\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-11 18:16:48\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.4/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-07 05:58:21\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.6\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.6/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-21 13:23:01\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.13\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.13/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-24 18:22:13\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-16 03:30:29\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-30 11:04:42\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-09-10 16:26:06\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 21:20:14\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.2.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-28 06:12:06\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.32\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.32/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-09-28 12:14:57\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-09-28 12:06:37\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-22 23:10:21\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-09-12 08:57:11\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-20 14:54:56\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.14/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-23 12:06:50\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-03 08:30:58\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-17 12:03:21\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 11:33:13\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 17:06:50\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.16\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.16/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.23/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 10:14:53\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.4\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.4/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.14/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-08-29 16:29:10\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-10-08 21:45:19\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),
  537. (1005,'_site_transient_timeout_theme_roots','1699551678','no'),
  538. (1006,'_site_transient_theme_roots','a:2:{s:19:\"partition-jlg-theme\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}','no'),
  539. (1007,'_transient_timeout_revisionary-post-edit-redirect-14707','1699550436','no'),
  540. (1008,'_transient_revisionary-post-edit-redirect-14707','1','no'),
  541. (1009,'_transient_timeout_revisionary-post-edit-redirect-14708','1699550456','no'),
  542. (1010,'_transient_revisionary-post-edit-redirect-14708','1','no'),
  543. (1011,'_site_transient_timeout_ure_caps_readable','1699551217','no'),
  544. (1012,'_site_transient_ure_caps_readable','','no'),
  545. (1013,'_site_transient_timeout_ure_show_deprecated_caps','1699551217','no'),
  546. (1014,'_site_transient_ure_show_deprecated_caps','','no'),
  547. (1015,'_transient_timeout_revisionary-post-edit-redirect-14709','1699551513','no'),
  548. (1016,'_transient_revisionary-post-edit-redirect-14709','1','no');
  549. /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
  550. UNLOCK TABLES;
  551. --
  552. -- Table structure for table `wp_pmxi_files`
  553. --
  554. DROP TABLE IF EXISTS `wp_pmxi_files`;
  555. /*!40101 SET @saved_cs_client = @@character_set_client */;
  556. /*!40101 SET character_set_client = utf8 */;
  557. CREATE TABLE `wp_pmxi_files` (
  558. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  559. `import_id` bigint(20) unsigned NOT NULL,
  560. `name` text DEFAULT NULL,
  561. `path` text DEFAULT NULL,
  562. `registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  563. PRIMARY KEY (`id`)
  564. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  565. /*!40101 SET character_set_client = @saved_cs_client */;
  566. --
  567. -- Dumping data for table `wp_pmxi_files`
  568. --
  569. LOCK TABLES `wp_pmxi_files` WRITE;
  570. /*!40000 ALTER TABLE `wp_pmxi_files` DISABLE KEYS */;
  571. /*!40000 ALTER TABLE `wp_pmxi_files` ENABLE KEYS */;
  572. UNLOCK TABLES;
  573. --
  574. -- Table structure for table `wp_pmxi_hash`
  575. --
  576. DROP TABLE IF EXISTS `wp_pmxi_hash`;
  577. /*!40101 SET @saved_cs_client = @@character_set_client */;
  578. /*!40101 SET character_set_client = utf8 */;
  579. CREATE TABLE `wp_pmxi_hash` (
  580. `hash` binary(16) NOT NULL,
  581. `post_id` bigint(20) unsigned NOT NULL,
  582. `import_id` smallint(5) unsigned NOT NULL,
  583. `post_type` varchar(32) NOT NULL DEFAULT '',
  584. PRIMARY KEY (`hash`)
  585. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  586. /*!40101 SET character_set_client = @saved_cs_client */;
  587. --
  588. -- Dumping data for table `wp_pmxi_hash`
  589. --
  590. LOCK TABLES `wp_pmxi_hash` WRITE;
  591. /*!40000 ALTER TABLE `wp_pmxi_hash` DISABLE KEYS */;
  592. /*!40000 ALTER TABLE `wp_pmxi_hash` ENABLE KEYS */;
  593. UNLOCK TABLES;
  594. --
  595. -- Table structure for table `wp_pmxi_history`
  596. --
  597. DROP TABLE IF EXISTS `wp_pmxi_history`;
  598. /*!40101 SET @saved_cs_client = @@character_set_client */;
  599. /*!40101 SET character_set_client = utf8 */;
  600. CREATE TABLE `wp_pmxi_history` (
  601. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  602. `import_id` bigint(20) unsigned NOT NULL,
  603. `type` enum('manual','processing','trigger','continue','cli','') NOT NULL DEFAULT '',
  604. `time_run` text DEFAULT NULL,
  605. `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  606. `summary` text DEFAULT NULL,
  607. PRIMARY KEY (`id`)
  608. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  609. /*!40101 SET character_set_client = @saved_cs_client */;
  610. --
  611. -- Dumping data for table `wp_pmxi_history`
  612. --
  613. LOCK TABLES `wp_pmxi_history` WRITE;
  614. /*!40000 ALTER TABLE `wp_pmxi_history` DISABLE KEYS */;
  615. /*!40000 ALTER TABLE `wp_pmxi_history` ENABLE KEYS */;
  616. UNLOCK TABLES;
  617. --
  618. -- Table structure for table `wp_pmxi_images`
  619. --
  620. DROP TABLE IF EXISTS `wp_pmxi_images`;
  621. /*!40101 SET @saved_cs_client = @@character_set_client */;
  622. /*!40101 SET character_set_client = utf8 */;
  623. CREATE TABLE `wp_pmxi_images` (
  624. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  625. `attachment_id` bigint(20) unsigned NOT NULL,
  626. `image_url` varchar(900) NOT NULL DEFAULT '',
  627. `image_filename` varchar(900) NOT NULL DEFAULT '',
  628. PRIMARY KEY (`id`)
  629. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  630. /*!40101 SET character_set_client = @saved_cs_client */;
  631. --
  632. -- Dumping data for table `wp_pmxi_images`
  633. --
  634. LOCK TABLES `wp_pmxi_images` WRITE;
  635. /*!40000 ALTER TABLE `wp_pmxi_images` DISABLE KEYS */;
  636. /*!40000 ALTER TABLE `wp_pmxi_images` ENABLE KEYS */;
  637. UNLOCK TABLES;
  638. --
  639. -- Table structure for table `wp_pmxi_imports`
  640. --
  641. DROP TABLE IF EXISTS `wp_pmxi_imports`;
  642. /*!40101 SET @saved_cs_client = @@character_set_client */;
  643. /*!40101 SET character_set_client = utf8 */;
  644. CREATE TABLE `wp_pmxi_imports` (
  645. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  646. `parent_import_id` bigint(20) NOT NULL DEFAULT 0,
  647. `name` text DEFAULT NULL,
  648. `friendly_name` varchar(255) NOT NULL DEFAULT '',
  649. `type` varchar(32) NOT NULL DEFAULT '',
  650. `feed_type` enum('xml','csv','zip','gz','') NOT NULL DEFAULT '',
  651. `path` text DEFAULT NULL,
  652. `xpath` text DEFAULT NULL,
  653. `options` longtext DEFAULT NULL,
  654. `registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  655. `root_element` varchar(255) DEFAULT '',
  656. `processing` tinyint(1) NOT NULL DEFAULT 0,
  657. `executing` tinyint(1) NOT NULL DEFAULT 0,
  658. `triggered` tinyint(1) NOT NULL DEFAULT 0,
  659. `queue_chunk_number` bigint(20) NOT NULL DEFAULT 0,
  660. `first_import` timestamp NOT NULL DEFAULT current_timestamp(),
  661. `count` bigint(20) NOT NULL DEFAULT 0,
  662. `imported` bigint(20) NOT NULL DEFAULT 0,
  663. `created` bigint(20) NOT NULL DEFAULT 0,
  664. `updated` bigint(20) NOT NULL DEFAULT 0,
  665. `skipped` bigint(20) NOT NULL DEFAULT 0,
  666. `deleted` bigint(20) NOT NULL DEFAULT 0,
  667. `canceled` tinyint(1) NOT NULL DEFAULT 0,
  668. `canceled_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  669. `failed` tinyint(1) NOT NULL DEFAULT 0,
  670. `failed_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  671. `settings_update_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  672. `last_activity` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  673. `iteration` bigint(20) NOT NULL DEFAULT 0,
  674. PRIMARY KEY (`id`)
  675. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  676. /*!40101 SET character_set_client = @saved_cs_client */;
  677. --
  678. -- Dumping data for table `wp_pmxi_imports`
  679. --
  680. LOCK TABLES `wp_pmxi_imports` WRITE;
  681. /*!40000 ALTER TABLE `wp_pmxi_imports` DISABLE KEYS */;
  682. /*!40000 ALTER TABLE `wp_pmxi_imports` ENABLE KEYS */;
  683. UNLOCK TABLES;
  684. --
  685. -- Table structure for table `wp_pmxi_posts`
  686. --
  687. DROP TABLE IF EXISTS `wp_pmxi_posts`;
  688. /*!40101 SET @saved_cs_client = @@character_set_client */;
  689. /*!40101 SET character_set_client = utf8 */;
  690. CREATE TABLE `wp_pmxi_posts` (
  691. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  692. `post_id` bigint(20) unsigned NOT NULL,
  693. `import_id` bigint(20) unsigned NOT NULL,
  694. `unique_key` text DEFAULT NULL,
  695. `product_key` text DEFAULT NULL,
  696. `iteration` bigint(20) NOT NULL DEFAULT 0,
  697. `specified` tinyint(1) NOT NULL DEFAULT 0,
  698. PRIMARY KEY (`id`)
  699. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  700. /*!40101 SET character_set_client = @saved_cs_client */;
  701. --
  702. -- Dumping data for table `wp_pmxi_posts`
  703. --
  704. LOCK TABLES `wp_pmxi_posts` WRITE;
  705. /*!40000 ALTER TABLE `wp_pmxi_posts` DISABLE KEYS */;
  706. /*!40000 ALTER TABLE `wp_pmxi_posts` ENABLE KEYS */;
  707. UNLOCK TABLES;
  708. --
  709. -- Table structure for table `wp_pmxi_templates`
  710. --
  711. DROP TABLE IF EXISTS `wp_pmxi_templates`;
  712. /*!40101 SET @saved_cs_client = @@character_set_client */;
  713. /*!40101 SET character_set_client = utf8 */;
  714. CREATE TABLE `wp_pmxi_templates` (
  715. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  716. `options` longtext DEFAULT NULL,
  717. `scheduled` varchar(64) NOT NULL DEFAULT '',
  718. `name` varchar(200) NOT NULL DEFAULT '',
  719. `title` text DEFAULT NULL,
  720. `content` longtext DEFAULT NULL,
  721. `is_keep_linebreaks` tinyint(1) NOT NULL DEFAULT 0,
  722. `is_leave_html` tinyint(1) NOT NULL DEFAULT 0,
  723. `fix_characters` tinyint(1) NOT NULL DEFAULT 0,
  724. `meta` longtext DEFAULT NULL,
  725. PRIMARY KEY (`id`)
  726. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  727. /*!40101 SET character_set_client = @saved_cs_client */;
  728. --
  729. -- Dumping data for table `wp_pmxi_templates`
  730. --
  731. LOCK TABLES `wp_pmxi_templates` WRITE;
  732. /*!40000 ALTER TABLE `wp_pmxi_templates` DISABLE KEYS */;
  733. /*!40000 ALTER TABLE `wp_pmxi_templates` ENABLE KEYS */;
  734. UNLOCK TABLES;
  735. --
  736. -- Table structure for table `wp_postmeta`
  737. --
  738. DROP TABLE IF EXISTS `wp_postmeta`;
  739. /*!40101 SET @saved_cs_client = @@character_set_client */;
  740. /*!40101 SET character_set_client = utf8 */;
  741. CREATE TABLE `wp_postmeta` (
  742. `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  743. `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  744. `meta_key` varchar(255) DEFAULT NULL,
  745. `meta_value` longtext DEFAULT NULL,
  746. PRIMARY KEY (`meta_id`),
  747. KEY `post_id` (`post_id`),
  748. KEY `meta_key` (`meta_key`(191))
  749. ) ENGINE=InnoDB AUTO_INCREMENT=83270 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  750. /*!40101 SET character_set_client = @saved_cs_client */;
  751. --
  752. -- Dumping data for table `wp_postmeta`
  753. --
  754. LOCK TABLES `wp_postmeta` WRITE;
  755. /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
  756. INSERT INTO `wp_postmeta` VALUES
  757. (1,2,'_wp_page_template','default'),
  758. (2,3,'_wp_page_template','default'),
  759. (37839,5648,'user_registration_form_setting_login_options','email_confirmation'),
  760. (37840,5648,'user_registration_form_setting_enable_strong_password','yes'),
  761. (37841,5648,'user_registration_form_setting_default_user_role','contributor'),
  762. (37842,5648,'user_registration_form_setting_minimum_password_strength','3'),
  763. (37843,2,'_edit_lock','1695615298:1'),
  764. (37844,5649,'_edit_lock','1688477047:1'),
  765. (37845,5652,'user_registration_imported_form_template_slug','user-registration-sports-camp-registration-form'),
  766. (37846,5652,'user_registration_paypal_conditional_integration','s:206:\"s:197:\"a:1:{i:0;a:2:{s:24:\"enable_conditional_logic\";s:5:\"false\";s:22:\"conditional_logic_data\";a:3:{s:17:\"conditional_field\";s:0:\"\";s:20:\"conditional_operator\";s:2:\"is\";s:17:\"conditional_value\";s:0:\"\";}}}\";\";'),
  767. (37847,5652,'user_registration_stripe_conditional_integration','s:206:\"s:197:\"a:1:{i:0;a:2:{s:24:\"enable_conditional_logic\";s:5:\"false\";s:22:\"conditional_logic_data\";a:3:{s:17:\"conditional_field\";s:0:\"\";s:20:\"conditional_operator\";s:2:\"is\";s:17:\"conditional_value\";s:0:\"\";}}}\";\";'),
  768. (37848,5652,'user_registration_form_setting_login_options','default'),
  769. (37849,5652,'user_registration_form_setting_enable_email_approval',''),
  770. (37850,5652,'user_registration_form_setting_default_user_role','subscriber'),
  771. (37851,5652,'user_registration_form_setting_enable_strong_password','1'),
  772. (37852,5652,'user_registration_form_setting_minimum_password_strength','3'),
  773. (37853,5652,'user_registration_form_setting_redirect_options',''),
  774. (37854,5652,'user_registration_form_setting_form_submit_class',''),
  775. (37855,5652,'user_registration_form_setting_form_submit_label','Submit'),
  776. (37856,5652,'user_registration_form_setting_success_message_position','1'),
  777. (37857,5652,'user_registration_form_setting_enable_recaptcha_support',''),
  778. (37858,5652,'user_registration_form_template','Default'),
  779. (37859,5652,'user_registration_form_custom_class',''),
  780. (37860,5652,'user_registration_form_setting_enable_assign_user_role_conditionally',''),
  781. (37861,5652,'user_registration_pdf_submission_to_admin',''),
  782. (37862,5652,'user_registration_pdf_submission_to_user',''),
  783. (37863,5652,'user_registration_social_connect_btn','s:57:\"s:49:\"s:41:\"a:2:{i:0;s:7:\"Twitter\";i:1;s:6:\"Google\";}\";\";\";'),
  784. (37864,5652,'user_registration_keyboard_friendly_form',''),
  785. (37865,5652,'user_registration_form_setting_enable_reset_button',''),
  786. (37866,5652,'user_registration_form_setting_form_reset_label','Reset'),
  787. (37867,5652,'user_registration_form_setting_form_reset_class',''),
  788. (37868,5652,'user_registration_enable_field_icon',''),
  789. (37869,5652,'user_registration_pro_auto_password_activate',''),
  790. (37870,5652,'user_registration_pro_auto_generated_password_length','10'),
  791. (37871,5652,'user_registration_pro_spam_protection_by_honeypot_enable',''),
  792. (37872,5652,'user_registration_enable_external_fields_mapping',''),
  793. (37873,5652,'user_registration_enable_multipart',''),
  794. (37874,5652,'user_registration_multipart_indicator','progress'),
  795. (37875,5652,'user_registration_multipart_indicator_color','#475bb2'),
  796. (37876,5652,'user_registration_multipart_nav_align','split'),
  797. (37877,5652,'user_registration_enable_paypal_standard',''),
  798. (37878,5652,'user_registration_paypal_email_address','dev-email@flywheel.local'),
  799. (37879,5652,'user_registration_paypal_mode','production'),
  800. (37880,5652,'user_registration_paypal_type','products'),
  801. (37881,5652,'user_registration_paypal_cancel_url','https://wpeverest.me'),
  802. (37882,5652,'user_registration_paypal_return_url','https://wpeverest.me/wp-login.php'),
  803. (37883,5652,'user_registration_enable_paypal_standard_subscription',''),
  804. (37884,5652,'user_registration_paypal_plan_name',''),
  805. (37885,5652,'user_registration_paypal_interval_count',''),
  806. (37886,5652,'user_registration_paypal_recurring_period','DAY'),
  807. (37887,5652,'user_registration_enable_stripe',''),
  808. (37888,5652,'user_registration_enable_stripe_recurring',''),
  809. (37889,5652,'user_registration_stripe_plan_name',''),
  810. (37890,5652,'user_registration_stripe_interval_count',''),
  811. (37891,5652,'user_registration_stripe_recurring_period','year'),
  812. (37892,5652,'user_registration_enable_sync_fields_with_stripe',''),
  813. (37893,5652,'user_registration_stripe_sync_full_name',''),
  814. (37894,5652,'user_registration_stripe_sync_description',''),
  815. (37895,5652,'user_registration_stripe_sync_phone',''),
  816. (37896,5652,'user_registration_enable_sync_address_with_stripe',''),
  817. (37897,5652,'user_registration_stripe_sync_city',''),
  818. (37898,5652,'user_registration_stripe_sync_country',''),
  819. (37899,5652,'user_registration_stripe_sync_line1',''),
  820. (37900,5652,'user_registration_stripe_sync_line2',''),
  821. (37901,5652,'user_registration_stripe_sync_postal_code',''),
  822. (37902,5652,'user_registration_stripe_sync_state',''),
  823. (37903,5652,'user_registration_enable_sync_shipping_address_with_stripe',''),
  824. (37904,5652,'user_registration_stripe_sync_shipping_full_name',''),
  825. (37905,5652,'user_registration_stripe_sync_shipping_phone',''),
  826. (37906,5652,'user_registration_stripe_sync_shipping_city',''),
  827. (37907,5652,'user_registration_stripe_sync_shipping_country',''),
  828. (37908,5652,'user_registration_stripe_sync_shipping_line1',''),
  829. (37909,5652,'user_registration_stripe_sync_shipping_line2',''),
  830. (37910,5652,'user_registration_stripe_sync_shipping_postal_code',''),
  831. (37911,5652,'user_registration_stripe_sync_shipping_state',''),
  832. (37912,5652,'user_registration_mailchimp_integration','s:13:\"s:6:\"a:0:{}\";\";'),
  833. (37913,5652,'user_registration_multipart_parts','[{\"id\":\"1\",\"name\":\"Part Title\",\"next\":\"Next\",\"prev\":\"Previous\",\"rows\":\"[0]\",\"preview\":0,\"preview_message\":\"<strong>This is a preview of the form</strong><br /> Before submitting, please double-check that the information you\'ve entered is correct . if not, you can go back and make changes . \",\"preview_layout\":0,\"preview_class\":\"\"}]'),
  834. (37914,5652,'user_registration_form_setting_redirect_after_registration','no-redirection'),
  835. (37915,5652,'user_registration_form_setting_redirect_page','5650'),
  836. (37916,5652,'user_registration_form_row_ids','[\"0\"]'),
  837. (37917,5649,'_edit_last','1'),
  838. (37918,5654,'_um_custom_fields','a:5:{s:10:\"user_email\";a:13:{s:5:\"title\";s:14:\"E-mail Address\";s:7:\"metakey\";s:10:\"user_email\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:14:\"E-mail Address\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"validate\";s:12:\"unique_email\";s:8:\"position\";i:3;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";i:4;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:10:\"first_name\";a:12:{s:5:\"title\";s:10:\"First Name\";s:7:\"metakey\";s:10:\"first_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";i:1;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:9:\"last_name\";a:12:{s:5:\"title\";s:9:\"Last Name\";s:7:\"metakey\";s:9:\"last_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";i:2;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}'),
  839. (37919,5654,'_um_mode','register'),
  840. (37920,5654,'_um_core','register'),
  841. (37921,5654,'_um_register_use_custom_settings','0'),
  842. (37922,5655,'_um_custom_fields','a:3:{s:8:\"username\";a:13:{s:5:\"title\";s:18:\"Username or E-mail\";s:7:\"metakey\";s:8:\"username\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Username or E-mail\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:24:\"unique_username_or_email\";s:8:\"position\";i:1;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";i:2;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}'),
  843. (37923,5655,'_um_mode','login'),
  844. (37924,5655,'_um_core','login'),
  845. (37925,5655,'_um_login_use_custom_settings','0'),
  846. (37926,5656,'_um_custom_fields','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}'),
  847. (37927,5656,'_um_mode','profile'),
  848. (37928,5656,'_um_core','profile'),
  849. (37929,5656,'_um_profile_use_custom_settings','0'),
  850. (37930,5657,'_um_core','members'),
  851. (37931,5657,'_um_template','members'),
  852. (37932,5657,'_um_mode','directory'),
  853. (37933,5657,'_um_view_types','a:1:{i:0;s:4:\"grid\";}'),
  854. (37934,5657,'_um_default_view','grid'),
  855. (37935,5657,'_um_roles','a:0:{}'),
  856. (37936,5657,'_um_has_profile_photo','0'),
  857. (37937,5657,'_um_has_cover_photo','0'),
  858. (37938,5657,'_um_show_these_users',''),
  859. (37939,5657,'_um_exclude_these_users',''),
  860. (37940,5657,'_um_sortby','user_registered_desc'),
  861. (37941,5657,'_um_sortby_custom',''),
  862. (37942,5657,'_um_sortby_custom_label',''),
  863. (37943,5657,'_um_enable_sorting','0'),
  864. (37944,5657,'_um_sorting_fields','a:0:{}'),
  865. (37945,5657,'_um_profile_photo','1'),
  866. (37946,5657,'_um_cover_photos','1'),
  867. (37947,5657,'_um_show_name','1'),
  868. (37948,5657,'_um_show_tagline','0'),
  869. (37949,5657,'_um_tagline_fields','a:0:{}'),
  870. (37950,5657,'_um_show_userinfo','0'),
  871. (37951,5657,'_um_reveal_fields','a:0:{}'),
  872. (37952,5657,'_um_show_social','0'),
  873. (37953,5657,'_um_userinfo_animate','1'),
  874. (37954,5657,'_um_search','0'),
  875. (37955,5657,'_um_roles_can_search','a:0:{}'),
  876. (37956,5657,'_um_filters','0'),
  877. (37957,5657,'_um_roles_can_filter','a:0:{}'),
  878. (37958,5657,'_um_search_fields','a:0:{}'),
  879. (37959,5657,'_um_filters_expanded','0'),
  880. (37960,5657,'_um_filters_is_collapsible','1'),
  881. (37961,5657,'_um_search_filters','a:0:{}'),
  882. (37962,5657,'_um_must_search','0'),
  883. (37963,5657,'_um_max_users',''),
  884. (37964,5657,'_um_profiles_per_page','12'),
  885. (37965,5657,'_um_profiles_per_page_mobile','6'),
  886. (37966,5657,'_um_directory_header','{total_users} membres'),
  887. (37967,5657,'_um_directory_header_single','{total_users} membre'),
  888. (37968,5657,'_um_directory_no_users','Nous sommes désolés. Nous ne pouvons pas trouver un·e utilisateur/utilisatrice qui répond à vos critères de recherche.'),
  889. (37969,5658,'_um_core','user'),
  890. (37970,5659,'_um_core','login'),
  891. (37971,5660,'_um_core','register'),
  892. (37972,5661,'_um_core','members'),
  893. (37973,5662,'_um_core','logout'),
  894. (37974,5663,'_um_core','account'),
  895. (37975,5664,'_um_core','password-reset'),
  896. (38075,5655,'_edit_lock','1688731836:1'),
  897. (39159,5626,'_edit_lock','1688723686:1'),
  898. (45568,5654,'_edit_lock','1688731818:1'),
  899. (45569,5656,'_edit_lock','1688732241:1'),
  900. (45570,5658,'_edit_lock','1688738871:1'),
  901. (60393,5664,'_edit_lock','1695615291:1'),
  902. (60394,5663,'_edit_lock','1695615308:1'),
  903. (60395,9960,'_edit_lock','1695615932:1'),
  904. (60396,9960,'_edit_last','1'),
  905. (60397,9962,'_edit_lock','1698221206:1'),
  906. (60398,9962,'_edit_last','1'),
  907. (60399,9964,'_wp_attached_file','2023/09/le-livre-d-image-1450x800-c.jpeg'),
  908. (60400,9964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:799;s:6:\"height\";i:799;s:4:\"file\";s:40:\"2023/09/le-livre-d-image-1450x800-c.jpeg\";s:8:\"filesize\";i:44554;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"le-livre-d-image-1450x800-c-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9751;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"le-livre-d-image-1450x800-c-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6419;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"le-livre-d-image-1450x800-c-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30700;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:56:\"CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 82\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:56:\"CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 82\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
  909. (60401,9964,'_wp_attachment_image_alt','main'),
  910. (60402,9965,'_wp_attached_file','2023/09/cropped-le-livre-d-image-1450x800-c.jpeg'),
  911. (60403,9965,'_wp_attachment_context','site-icon'),
  912. (60404,9965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:48:\"2023/09/cropped-le-livre-d-image-1450x800-c.jpeg\";s:8:\"filesize\";i:17137;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"cropped-le-livre-d-image-1450x800-c-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"cropped-le-livre-d-image-1450x800-c-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6404;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:48:\"cropped-le-livre-d-image-1450x800-c-270x270.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8913;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:48:\"cropped-le-livre-d-image-1450x800-c-192x192.jpeg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7123;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:48:\"cropped-le-livre-d-image-1450x800-c-180x180.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6990;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:46:\"cropped-le-livre-d-image-1450x800-c-32x32.jpeg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4855;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:56:\"CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 82\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:56:\"CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 82\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
  913. (60405,9966,'_wp_trash_meta_status','publish'),
  914. (60406,9966,'_wp_trash_meta_time','1695631281'),
  915. (77616,13190,'_pingme','1'),
  916. (77617,13190,'_encloseme','1'),
  917. (77618,13190,'index','7050'),
  918. (77619,13190,'_product_image_gallery',''),
  919. (77620,13191,'_pingme','1'),
  920. (77621,13191,'_encloseme','1'),
  921. (77622,13191,'index','7060'),
  922. (77623,13191,'_product_image_gallery',''),
  923. (77624,13192,'_pingme','1'),
  924. (77625,13192,'_encloseme','1'),
  925. (77626,13192,'index','10'),
  926. (77627,13192,'_product_image_gallery',''),
  927. (77628,13193,'_pingme','1'),
  928. (77629,13193,'_encloseme','1'),
  929. (77630,13193,'index','20'),
  930. (77631,13193,'_product_image_gallery',''),
  931. (77632,13194,'_pingme','1'),
  932. (77633,13194,'_encloseme','1'),
  933. (77634,13194,'index','30'),
  934. (77635,13194,'_product_image_gallery',''),
  935. (77636,13195,'_pingme','1'),
  936. (77637,13195,'_encloseme','1'),
  937. (77638,13195,'index','40'),
  938. (77639,13195,'_product_image_gallery',''),
  939. (77640,13196,'_pingme','1'),
  940. (77641,13196,'_encloseme','1'),
  941. (77642,13196,'index','50'),
  942. (77643,13196,'_product_image_gallery',''),
  943. (77644,13197,'_pingme','1'),
  944. (77645,13197,'_encloseme','1'),
  945. (77646,13197,'index','60'),
  946. (77647,13197,'_product_image_gallery',''),
  947. (77648,13198,'_pingme','1'),
  948. (77649,13198,'_encloseme','1'),
  949. (77650,13198,'index','70'),
  950. (77651,13198,'_product_image_gallery',''),
  951. (77652,13199,'_pingme','1'),
  952. (77653,13199,'_encloseme','1'),
  953. (77654,13199,'index','80'),
  954. (77655,13199,'_product_image_gallery',''),
  955. (77656,13200,'_pingme','1'),
  956. (77657,13200,'_encloseme','1'),
  957. (77658,13200,'index','90'),
  958. (77659,13200,'_product_image_gallery',''),
  959. (77660,13201,'_pingme','1'),
  960. (77661,13201,'_encloseme','1'),
  961. (77662,13201,'index','100'),
  962. (77663,13201,'_product_image_gallery',''),
  963. (77664,13202,'_pingme','1'),
  964. (77665,13202,'_encloseme','1'),
  965. (77666,13202,'index','110'),
  966. (77667,13202,'_product_image_gallery',''),
  967. (77668,13203,'_pingme','1'),
  968. (77669,13203,'_encloseme','1'),
  969. (77670,13203,'index','120'),
  970. (77671,13203,'_product_image_gallery',''),
  971. (77672,13204,'_pingme','1'),
  972. (77673,13204,'_encloseme','1'),
  973. (77674,13204,'index','130'),
  974. (77675,13204,'_product_image_gallery',''),
  975. (77676,13205,'_pingme','1'),
  976. (77677,13205,'_encloseme','1'),
  977. (77678,13205,'index','140'),
  978. (77679,13205,'_product_image_gallery',''),
  979. (77680,13206,'_pingme','1'),
  980. (77681,13206,'_encloseme','1'),
  981. (77682,13206,'index','150'),
  982. (77683,13206,'_product_image_gallery',''),
  983. (77684,13207,'_pingme','1'),
  984. (77685,13207,'_encloseme','1'),
  985. (77686,13207,'index','160'),
  986. (77687,13207,'_product_image_gallery',''),
  987. (77688,13208,'_pingme','1'),
  988. (77689,13208,'_encloseme','1'),
  989. (77690,13208,'index','170'),
  990. (77691,13208,'_product_image_gallery',''),
  991. (77692,13209,'_pingme','1'),
  992. (77693,13209,'_encloseme','1'),
  993. (77694,13209,'index','180'),
  994. (77695,13209,'_product_image_gallery',''),
  995. (77696,13210,'_pingme','1'),
  996. (77697,13210,'_encloseme','1'),
  997. (77698,13210,'index','190'),
  998. (77699,13210,'_product_image_gallery',''),
  999. (77700,13211,'_pingme','1'),
  1000. (77701,13211,'_encloseme','1'),
  1001. (77702,13211,'index','200'),
  1002. (77703,13211,'_product_image_gallery',''),
  1003. (77704,13212,'_pingme','1'),
  1004. (77705,13212,'_encloseme','1'),
  1005. (77706,13212,'index','210'),
  1006. (77707,13212,'_product_image_gallery',''),
  1007. (77708,13213,'_pingme','1'),
  1008. (77709,13213,'_encloseme','1'),
  1009. (77710,13213,'index','220'),
  1010. (77711,13213,'_product_image_gallery',''),
  1011. (77712,13214,'_pingme','1'),
  1012. (77713,13214,'_encloseme','1'),
  1013. (77714,13214,'index','230'),
  1014. (77715,13214,'_product_image_gallery',''),
  1015. (77716,13215,'_pingme','1'),
  1016. (77717,13215,'_encloseme','1'),
  1017. (77718,13215,'index','240'),
  1018. (77719,13215,'_product_image_gallery',''),
  1019. (77720,13216,'_pingme','1'),
  1020. (77721,13216,'_encloseme','1'),
  1021. (77722,13216,'index','250'),
  1022. (77723,13216,'_product_image_gallery',''),
  1023. (77724,13217,'_pingme','1'),
  1024. (77725,13217,'_encloseme','1'),
  1025. (77726,13217,'index','260'),
  1026. (77727,13217,'_product_image_gallery',''),
  1027. (77728,13218,'_pingme','1'),
  1028. (77729,13218,'_encloseme','1'),
  1029. (77730,13218,'index','270'),
  1030. (77731,13218,'_product_image_gallery',''),
  1031. (77732,13219,'_pingme','1'),
  1032. (77733,13219,'_encloseme','1'),
  1033. (77734,13219,'index','280'),
  1034. (77735,13219,'_product_image_gallery',''),
  1035. (77736,13220,'_pingme','1'),
  1036. (77737,13220,'_encloseme','1'),
  1037. (77738,13220,'index','290'),
  1038. (77739,13220,'_product_image_gallery',''),
  1039. (77740,13221,'_pingme','1'),
  1040. (77741,13221,'_encloseme','1'),
  1041. (77742,13221,'index','300'),
  1042. (77743,13221,'_product_image_gallery',''),
  1043. (77744,13222,'_pingme','1'),
  1044. (77745,13222,'_encloseme','1'),
  1045. (77746,13222,'index','310'),
  1046. (77747,13222,'_product_image_gallery',''),
  1047. (77748,13223,'_pingme','1'),
  1048. (77749,13223,'_encloseme','1'),
  1049. (77750,13223,'index','320'),
  1050. (77751,13223,'_product_image_gallery',''),
  1051. (77752,13224,'_pingme','1'),
  1052. (77753,13224,'_encloseme','1'),
  1053. (77754,13224,'index','330'),
  1054. (77755,13224,'_product_image_gallery',''),
  1055. (77756,13225,'_pingme','1'),
  1056. (77757,13225,'_encloseme','1'),
  1057. (77758,13225,'index','340'),
  1058. (77759,13225,'_product_image_gallery',''),
  1059. (77760,13226,'_pingme','1'),
  1060. (77761,13226,'_encloseme','1'),
  1061. (77762,13226,'index','350'),
  1062. (77763,13226,'_product_image_gallery',''),
  1063. (77764,13227,'_pingme','1'),
  1064. (77765,13227,'_encloseme','1'),
  1065. (77766,13227,'index','360'),
  1066. (77767,13227,'_product_image_gallery',''),
  1067. (77768,13228,'_pingme','1'),
  1068. (77769,13228,'_encloseme','1'),
  1069. (77770,13228,'index','370'),
  1070. (77771,13228,'_product_image_gallery',''),
  1071. (77772,13229,'_pingme','1'),
  1072. (77773,13229,'_encloseme','1'),
  1073. (77774,13229,'index','380'),
  1074. (77775,13229,'_product_image_gallery',''),
  1075. (77776,13230,'_pingme','1'),
  1076. (77777,13230,'_encloseme','1'),
  1077. (77778,13230,'index','390'),
  1078. (77779,13230,'_product_image_gallery',''),
  1079. (77780,13231,'_pingme','1'),
  1080. (77781,13231,'_encloseme','1'),
  1081. (77782,13231,'index','400'),
  1082. (77783,13231,'_product_image_gallery',''),
  1083. (77784,13232,'_pingme','1'),
  1084. (77785,13232,'_encloseme','1'),
  1085. (77786,13232,'index','410'),
  1086. (77787,13232,'_product_image_gallery',''),
  1087. (77788,13233,'_pingme','1'),
  1088. (77789,13233,'_encloseme','1'),
  1089. (77790,13233,'index','420'),
  1090. (77791,13233,'_product_image_gallery',''),
  1091. (77792,13234,'_pingme','1'),
  1092. (77793,13234,'_encloseme','1'),
  1093. (77794,13234,'index','430'),
  1094. (77795,13234,'_product_image_gallery',''),
  1095. (77796,13235,'_pingme','1'),
  1096. (77797,13235,'_encloseme','1'),
  1097. (77798,13235,'index','440'),
  1098. (77799,13235,'_product_image_gallery',''),
  1099. (77800,13236,'_pingme','1'),
  1100. (77801,13236,'_encloseme','1'),
  1101. (77802,13236,'index','450'),
  1102. (77803,13236,'_product_image_gallery',''),
  1103. (77804,13237,'_pingme','1'),
  1104. (77805,13237,'_encloseme','1'),
  1105. (77806,13237,'index','460'),
  1106. (77807,13237,'_product_image_gallery',''),
  1107. (77808,13238,'_pingme','1'),
  1108. (77809,13238,'_encloseme','1'),
  1109. (77810,13238,'index','470'),
  1110. (77811,13238,'_product_image_gallery',''),
  1111. (77812,13239,'_pingme','1'),
  1112. (77813,13239,'_encloseme','1'),
  1113. (77814,13239,'index','480'),
  1114. (77815,13239,'_product_image_gallery',''),
  1115. (77816,13240,'_pingme','1'),
  1116. (77817,13240,'_encloseme','1'),
  1117. (77818,13240,'index','490'),
  1118. (77819,13240,'_product_image_gallery',''),
  1119. (77820,13241,'_pingme','1'),
  1120. (77821,13241,'_encloseme','1'),
  1121. (77822,13241,'index','500'),
  1122. (77823,13241,'_product_image_gallery',''),
  1123. (77824,13242,'_pingme','1'),
  1124. (77825,13242,'_encloseme','1'),
  1125. (77826,13242,'index','510'),
  1126. (77827,13242,'_product_image_gallery',''),
  1127. (77828,13243,'_pingme','1'),
  1128. (77829,13243,'_encloseme','1'),
  1129. (77830,13243,'index','520'),
  1130. (77831,13243,'_product_image_gallery',''),
  1131. (77832,13244,'_pingme','1'),
  1132. (77833,13244,'_encloseme','1'),
  1133. (77834,13244,'index','530'),
  1134. (77835,13244,'_product_image_gallery',''),
  1135. (77836,13245,'_pingme','1'),
  1136. (77837,13245,'_encloseme','1'),
  1137. (77838,13245,'index','540'),
  1138. (77839,13245,'_product_image_gallery',''),
  1139. (77840,13246,'_pingme','1'),
  1140. (77841,13246,'_encloseme','1'),
  1141. (77842,13246,'index','550'),
  1142. (77843,13246,'_product_image_gallery',''),
  1143. (77844,13247,'_pingme','1'),
  1144. (77845,13247,'_encloseme','1'),
  1145. (77846,13247,'index','560'),
  1146. (77847,13247,'_product_image_gallery',''),
  1147. (77848,13248,'_pingme','1'),
  1148. (77849,13248,'_encloseme','1'),
  1149. (77850,13248,'index','570'),
  1150. (77851,13248,'_product_image_gallery',''),
  1151. (77852,13249,'_pingme','1'),
  1152. (77853,13249,'_encloseme','1'),
  1153. (77854,13249,'index','580'),
  1154. (77855,13249,'_product_image_gallery',''),
  1155. (77856,13250,'_pingme','1'),
  1156. (77857,13250,'_encloseme','1'),
  1157. (77858,13250,'index','590'),
  1158. (77859,13250,'_product_image_gallery',''),
  1159. (77860,13251,'_pingme','1'),
  1160. (77861,13251,'_encloseme','1'),
  1161. (77862,13251,'index','600'),
  1162. (77863,13251,'_product_image_gallery',''),
  1163. (77864,13252,'_pingme','1'),
  1164. (77865,13252,'_encloseme','1'),
  1165. (77866,13252,'index','610'),
  1166. (77867,13252,'_product_image_gallery',''),
  1167. (77868,13253,'_pingme','1'),
  1168. (77869,13253,'_encloseme','1'),
  1169. (77870,13253,'index','620'),
  1170. (77871,13253,'_product_image_gallery',''),
  1171. (77872,13254,'_pingme','1'),
  1172. (77873,13254,'_encloseme','1'),
  1173. (77874,13254,'index','630'),
  1174. (77875,13254,'_product_image_gallery',''),
  1175. (77876,13255,'_pingme','1'),
  1176. (77877,13255,'_encloseme','1'),
  1177. (77878,13255,'index','640'),
  1178. (77879,13255,'_product_image_gallery',''),
  1179. (77880,13256,'_pingme','1'),
  1180. (77881,13256,'_encloseme','1'),
  1181. (77882,13256,'index','650'),
  1182. (77883,13256,'_product_image_gallery',''),
  1183. (77884,13257,'_pingme','1'),
  1184. (77885,13257,'_encloseme','1'),
  1185. (77886,13257,'index','660'),
  1186. (77887,13257,'_product_image_gallery',''),
  1187. (77888,13258,'_pingme','1'),
  1188. (77889,13258,'_encloseme','1'),
  1189. (77890,13258,'index','670'),
  1190. (77891,13258,'_product_image_gallery',''),
  1191. (77892,13259,'_pingme','1'),
  1192. (77893,13259,'_encloseme','1'),
  1193. (77894,13259,'index','680'),
  1194. (77895,13259,'_product_image_gallery',''),
  1195. (77896,13260,'_pingme','1'),
  1196. (77897,13260,'_encloseme','1'),
  1197. (77898,13260,'index','690'),
  1198. (77899,13260,'_product_image_gallery',''),
  1199. (77900,13261,'_pingme','1'),
  1200. (77901,13261,'_encloseme','1'),
  1201. (77902,13261,'index','700'),
  1202. (77903,13261,'_product_image_gallery',''),
  1203. (77904,13262,'_pingme','1'),
  1204. (77905,13262,'_encloseme','1'),
  1205. (77906,13262,'index','710'),
  1206. (77907,13262,'_product_image_gallery',''),
  1207. (77908,13263,'_pingme','1'),
  1208. (77909,13263,'_encloseme','1'),
  1209. (77910,13263,'index','720'),
  1210. (77911,13263,'_product_image_gallery',''),
  1211. (77912,13264,'_pingme','1'),
  1212. (77913,13264,'_encloseme','1'),
  1213. (77914,13264,'index','730'),
  1214. (77915,13264,'_product_image_gallery',''),
  1215. (77916,13265,'_pingme','1'),
  1216. (77917,13265,'_encloseme','1'),
  1217. (77918,13265,'index','740'),
  1218. (77919,13265,'_product_image_gallery',''),
  1219. (77920,13266,'_pingme','1'),
  1220. (77921,13266,'_encloseme','1'),
  1221. (77922,13266,'index','750'),
  1222. (77923,13266,'_product_image_gallery',''),
  1223. (77924,13267,'_pingme','1'),
  1224. (77925,13267,'_encloseme','1'),
  1225. (77926,13267,'index','760'),
  1226. (77927,13267,'_product_image_gallery',''),
  1227. (77928,13268,'_pingme','1'),
  1228. (77929,13268,'_encloseme','1'),
  1229. (77930,13268,'index','770'),
  1230. (77931,13268,'_product_image_gallery',''),
  1231. (77932,13269,'_pingme','1'),
  1232. (77933,13269,'_encloseme','1'),
  1233. (77934,13269,'index','780'),
  1234. (77935,13269,'_product_image_gallery',''),
  1235. (77936,13270,'_pingme','1'),
  1236. (77937,13270,'_encloseme','1'),
  1237. (77938,13270,'index','790'),
  1238. (77939,13270,'_product_image_gallery',''),
  1239. (77940,13271,'_pingme','1'),
  1240. (77941,13271,'_encloseme','1'),
  1241. (77942,13271,'index','800'),
  1242. (77943,13271,'_product_image_gallery',''),
  1243. (77944,13272,'_pingme','1'),
  1244. (77945,13272,'_encloseme','1'),
  1245. (77946,13272,'index','810'),
  1246. (77947,13272,'_product_image_gallery',''),
  1247. (77948,13273,'_pingme','1'),
  1248. (77949,13273,'_encloseme','1'),
  1249. (77950,13273,'index','820'),
  1250. (77951,13273,'_product_image_gallery',''),
  1251. (77952,13274,'_pingme','1'),
  1252. (77953,13274,'_encloseme','1'),
  1253. (77954,13274,'index','830'),
  1254. (77955,13274,'_product_image_gallery',''),
  1255. (77956,13275,'_pingme','1'),
  1256. (77957,13275,'_encloseme','1'),
  1257. (77958,13275,'index','840'),
  1258. (77959,13275,'_product_image_gallery',''),
  1259. (77960,13276,'_pingme','1'),
  1260. (77961,13276,'_encloseme','1'),
  1261. (77962,13276,'index','850'),
  1262. (77963,13276,'_product_image_gallery',''),
  1263. (77964,13277,'_pingme','1'),
  1264. (77965,13277,'_encloseme','1'),
  1265. (77966,13277,'index','860'),
  1266. (77967,13277,'_product_image_gallery',''),
  1267. (77968,13278,'_pingme','1'),
  1268. (77969,13278,'_encloseme','1'),
  1269. (77970,13278,'index','870'),
  1270. (77971,13278,'_product_image_gallery',''),
  1271. (77972,13279,'_pingme','1'),
  1272. (77973,13279,'_encloseme','1'),
  1273. (77974,13279,'index','880'),
  1274. (77975,13279,'_product_image_gallery',''),
  1275. (77976,13280,'_pingme','1'),
  1276. (77977,13280,'_encloseme','1'),
  1277. (77978,13280,'index','890'),
  1278. (77979,13280,'_product_image_gallery',''),
  1279. (77980,13281,'_pingme','1'),
  1280. (77981,13281,'_encloseme','1'),
  1281. (77982,13281,'index','900'),
  1282. (77983,13281,'_product_image_gallery',''),
  1283. (77984,13282,'_pingme','1'),
  1284. (77985,13282,'_encloseme','1'),
  1285. (77986,13282,'index','910'),
  1286. (77987,13282,'_product_image_gallery',''),
  1287. (77988,13283,'_pingme','1'),
  1288. (77989,13283,'_encloseme','1'),
  1289. (77990,13283,'index','920'),
  1290. (77991,13283,'_product_image_gallery',''),
  1291. (77992,13284,'_pingme','1'),
  1292. (77993,13284,'_encloseme','1'),
  1293. (77994,13284,'index','930'),
  1294. (77995,13284,'_product_image_gallery',''),
  1295. (77996,13285,'_pingme','1'),
  1296. (77997,13285,'_encloseme','1'),
  1297. (77998,13285,'index','940'),
  1298. (77999,13285,'_product_image_gallery',''),
  1299. (78000,13286,'_pingme','1'),
  1300. (78001,13286,'_encloseme','1'),
  1301. (78002,13286,'index','950'),
  1302. (78003,13286,'_product_image_gallery',''),
  1303. (78004,13287,'_pingme','1'),
  1304. (78005,13287,'_encloseme','1'),
  1305. (78006,13287,'index','960'),
  1306. (78007,13287,'_product_image_gallery',''),
  1307. (78008,13288,'_pingme','1'),
  1308. (78009,13288,'_encloseme','1'),
  1309. (78010,13288,'index','970'),
  1310. (78011,13288,'_product_image_gallery',''),
  1311. (78012,13289,'_pingme','1'),
  1312. (78013,13289,'_encloseme','1'),
  1313. (78014,13289,'index','980'),
  1314. (78015,13289,'_product_image_gallery',''),
  1315. (78016,13290,'_pingme','1'),
  1316. (78017,13290,'_encloseme','1'),
  1317. (78018,13290,'index','990'),
  1318. (78019,13290,'_product_image_gallery',''),
  1319. (78020,13291,'_pingme','1'),
  1320. (78021,13291,'_encloseme','1'),
  1321. (78022,13291,'index','1000'),
  1322. (78023,13291,'_product_image_gallery',''),
  1323. (78024,13292,'_pingme','1'),
  1324. (78025,13292,'_encloseme','1'),
  1325. (78026,13292,'index','1010'),
  1326. (78027,13292,'_product_image_gallery',''),
  1327. (78028,13293,'_pingme','1'),
  1328. (78029,13293,'_encloseme','1'),
  1329. (78030,13293,'index','1020'),
  1330. (78031,13293,'_product_image_gallery',''),
  1331. (78032,13294,'_pingme','1'),
  1332. (78033,13294,'_encloseme','1'),
  1333. (78034,13294,'index','1030'),
  1334. (78035,13294,'_product_image_gallery',''),
  1335. (78036,13295,'_pingme','1'),
  1336. (78037,13295,'_encloseme','1'),
  1337. (78038,13295,'index','1040'),
  1338. (78039,13295,'_product_image_gallery',''),
  1339. (78040,13296,'_pingme','1'),
  1340. (78041,13296,'_encloseme','1'),
  1341. (78042,13296,'index','1050'),
  1342. (78043,13296,'_product_image_gallery',''),
  1343. (78044,13297,'_pingme','1'),
  1344. (78045,13297,'_encloseme','1'),
  1345. (78046,13297,'index','1060'),
  1346. (78047,13297,'_product_image_gallery',''),
  1347. (78048,13298,'_pingme','1'),
  1348. (78049,13298,'_encloseme','1'),
  1349. (78050,13298,'index','1070'),
  1350. (78051,13298,'_product_image_gallery',''),
  1351. (78052,13299,'_pingme','1'),
  1352. (78053,13299,'_encloseme','1'),
  1353. (78054,13299,'index','1080'),
  1354. (78055,13299,'_product_image_gallery',''),
  1355. (78056,13300,'_pingme','1'),
  1356. (78057,13300,'_encloseme','1'),
  1357. (78058,13300,'index','1090'),
  1358. (78059,13300,'_product_image_gallery',''),
  1359. (78060,13301,'_pingme','1'),
  1360. (78061,13301,'_encloseme','1'),
  1361. (78062,13301,'index','1100'),
  1362. (78063,13301,'_product_image_gallery',''),
  1363. (78064,13302,'_pingme','1'),
  1364. (78065,13302,'_encloseme','1'),
  1365. (78066,13302,'index','1110'),
  1366. (78067,13302,'_product_image_gallery',''),
  1367. (78068,13303,'_pingme','1'),
  1368. (78069,13303,'_encloseme','1'),
  1369. (78070,13303,'index','1120'),
  1370. (78071,13303,'_product_image_gallery',''),
  1371. (78072,13304,'_pingme','1'),
  1372. (78073,13304,'_encloseme','1'),
  1373. (78074,13304,'index','1130'),
  1374. (78075,13304,'_product_image_gallery',''),
  1375. (78076,13305,'_pingme','1'),
  1376. (78077,13305,'_encloseme','1'),
  1377. (78078,13305,'index','1140'),
  1378. (78079,13305,'_product_image_gallery',''),
  1379. (78080,13306,'_pingme','1'),
  1380. (78081,13306,'_encloseme','1'),
  1381. (78082,13306,'index','1150'),
  1382. (78083,13306,'_product_image_gallery',''),
  1383. (78084,13307,'_pingme','1'),
  1384. (78085,13307,'_encloseme','1'),
  1385. (78086,13307,'index','1160'),
  1386. (78087,13307,'_product_image_gallery',''),
  1387. (78088,13308,'_pingme','1'),
  1388. (78089,13308,'_encloseme','1'),
  1389. (78090,13308,'index','1170'),
  1390. (78091,13308,'_product_image_gallery',''),
  1391. (78092,13309,'_pingme','1'),
  1392. (78093,13309,'_encloseme','1'),
  1393. (78094,13309,'index','1180'),
  1394. (78095,13309,'_product_image_gallery',''),
  1395. (78096,13310,'_pingme','1'),
  1396. (78097,13310,'_encloseme','1'),
  1397. (78098,13310,'index','1190'),
  1398. (78099,13310,'_product_image_gallery',''),
  1399. (78100,13311,'_pingme','1'),
  1400. (78101,13311,'_encloseme','1'),
  1401. (78102,13311,'index','1200'),
  1402. (78103,13311,'_product_image_gallery',''),
  1403. (78104,13312,'_pingme','1'),
  1404. (78105,13312,'_encloseme','1'),
  1405. (78106,13312,'index','1210'),
  1406. (78107,13312,'_product_image_gallery',''),
  1407. (78108,13313,'_pingme','1'),
  1408. (78109,13313,'_encloseme','1'),
  1409. (78110,13313,'index','1220'),
  1410. (78111,13313,'_product_image_gallery',''),
  1411. (78112,13314,'_pingme','1'),
  1412. (78113,13314,'_encloseme','1'),
  1413. (78114,13314,'index','1230'),
  1414. (78115,13314,'_product_image_gallery',''),
  1415. (78116,13315,'_pingme','1'),
  1416. (78117,13315,'_encloseme','1'),
  1417. (78118,13315,'index','1240'),
  1418. (78119,13315,'_product_image_gallery',''),
  1419. (78120,13316,'_pingme','1'),
  1420. (78121,13316,'_encloseme','1'),
  1421. (78122,13316,'index','1250'),
  1422. (78123,13316,'_product_image_gallery',''),
  1423. (78124,13317,'_pingme','1'),
  1424. (78125,13317,'_encloseme','1'),
  1425. (78126,13317,'index','1260'),
  1426. (78127,13317,'_product_image_gallery',''),
  1427. (78128,13318,'_pingme','1'),
  1428. (78129,13318,'_encloseme','1'),
  1429. (78130,13318,'index','1270'),
  1430. (78131,13318,'_product_image_gallery',''),
  1431. (78132,13319,'_pingme','1'),
  1432. (78133,13319,'_encloseme','1'),
  1433. (78134,13319,'index','1280'),
  1434. (78135,13319,'_product_image_gallery',''),
  1435. (78136,13320,'_pingme','1'),
  1436. (78137,13320,'_encloseme','1'),
  1437. (78138,13320,'index','1290'),
  1438. (78139,13320,'_product_image_gallery',''),
  1439. (78140,13321,'_pingme','1'),
  1440. (78141,13321,'_encloseme','1'),
  1441. (78142,13321,'index','1300'),
  1442. (78143,13321,'_product_image_gallery',''),
  1443. (78144,13322,'_pingme','1'),
  1444. (78145,13322,'_encloseme','1'),
  1445. (78146,13322,'index','1310'),
  1446. (78147,13322,'_product_image_gallery',''),
  1447. (78148,13323,'_pingme','1'),
  1448. (78149,13323,'_encloseme','1'),
  1449. (78150,13323,'index','1320'),
  1450. (78151,13323,'_product_image_gallery',''),
  1451. (78152,13324,'_pingme','1'),
  1452. (78153,13324,'_encloseme','1'),
  1453. (78154,13324,'index','1330'),
  1454. (78155,13324,'_product_image_gallery',''),
  1455. (78156,13325,'_pingme','1'),
  1456. (78157,13325,'_encloseme','1'),
  1457. (78158,13325,'index','1340'),
  1458. (78159,13325,'_product_image_gallery',''),
  1459. (78160,13326,'_pingme','1'),
  1460. (78161,13326,'_encloseme','1'),
  1461. (78162,13326,'index','1350'),
  1462. (78163,13326,'_product_image_gallery',''),
  1463. (78164,13327,'_pingme','1'),
  1464. (78165,13327,'_encloseme','1'),
  1465. (78166,13327,'index','1360'),
  1466. (78167,13327,'_product_image_gallery',''),
  1467. (78168,13328,'_pingme','1'),
  1468. (78169,13328,'_encloseme','1'),
  1469. (78170,13328,'index','1370'),
  1470. (78171,13328,'_product_image_gallery',''),
  1471. (78172,13329,'_pingme','1'),
  1472. (78173,13329,'_encloseme','1'),
  1473. (78174,13329,'index','1380'),
  1474. (78175,13329,'_product_image_gallery',''),
  1475. (78176,13330,'_pingme','1'),
  1476. (78177,13330,'_encloseme','1'),
  1477. (78178,13330,'index','1390'),
  1478. (78179,13330,'_product_image_gallery',''),
  1479. (78180,13331,'_pingme','1'),
  1480. (78181,13331,'_encloseme','1'),
  1481. (78182,13331,'index','1400'),
  1482. (78183,13331,'_product_image_gallery',''),
  1483. (78184,13332,'_pingme','1'),
  1484. (78185,13332,'_encloseme','1'),
  1485. (78186,13332,'index','1410'),
  1486. (78187,13332,'_product_image_gallery',''),
  1487. (78188,13333,'_pingme','1'),
  1488. (78189,13333,'_encloseme','1'),
  1489. (78190,13333,'index','1430'),
  1490. (78191,13333,'_product_image_gallery',''),
  1491. (78192,13334,'_pingme','1'),
  1492. (78193,13334,'_encloseme','1'),
  1493. (78194,13334,'index','1440'),
  1494. (78195,13334,'_product_image_gallery',''),
  1495. (78196,13335,'_pingme','1'),
  1496. (78197,13335,'_encloseme','1'),
  1497. (78198,13335,'index','1450'),
  1498. (78199,13335,'_product_image_gallery',''),
  1499. (78200,13336,'_pingme','1'),
  1500. (78201,13336,'_encloseme','1'),
  1501. (78202,13336,'index','1460'),
  1502. (78203,13336,'_product_image_gallery',''),
  1503. (78204,13337,'_pingme','1'),
  1504. (78205,13337,'_encloseme','1'),
  1505. (78206,13337,'index','1470'),
  1506. (78207,13337,'_product_image_gallery',''),
  1507. (78208,13338,'_pingme','1'),
  1508. (78209,13338,'_encloseme','1'),
  1509. (78210,13338,'index','1480'),
  1510. (78211,13338,'_product_image_gallery',''),
  1511. (78212,13339,'_pingme','1'),
  1512. (78213,13339,'_encloseme','1'),
  1513. (78214,13339,'index','1490'),
  1514. (78215,13339,'_product_image_gallery',''),
  1515. (78216,13340,'_pingme','1'),
  1516. (78217,13340,'_encloseme','1'),
  1517. (78218,13340,'index','1500'),
  1518. (78219,13340,'_product_image_gallery',''),
  1519. (78220,13341,'_pingme','1'),
  1520. (78221,13341,'_encloseme','1'),
  1521. (78222,13341,'index','1510'),
  1522. (78223,13341,'_product_image_gallery',''),
  1523. (78224,13342,'_pingme','1'),
  1524. (78225,13342,'_encloseme','1'),
  1525. (78226,13342,'index','1530'),
  1526. (78227,13342,'_product_image_gallery',''),
  1527. (78228,13343,'_pingme','1'),
  1528. (78229,13343,'_encloseme','1'),
  1529. (78230,13343,'index','1540'),
  1530. (78231,13343,'_product_image_gallery',''),
  1531. (78232,13344,'_pingme','1'),
  1532. (78233,13344,'_encloseme','1'),
  1533. (78234,13344,'index','1550'),
  1534. (78235,13344,'_product_image_gallery',''),
  1535. (78236,13345,'_pingme','1'),
  1536. (78237,13345,'_encloseme','1'),
  1537. (78238,13345,'index','1560'),
  1538. (78239,13345,'_product_image_gallery',''),
  1539. (78240,13346,'_pingme','1'),
  1540. (78241,13346,'_encloseme','1'),
  1541. (78242,13346,'index','1570'),
  1542. (78243,13346,'_product_image_gallery',''),
  1543. (78244,13347,'_pingme','1'),
  1544. (78245,13347,'_encloseme','1'),
  1545. (78246,13347,'index','1580'),
  1546. (78247,13347,'_product_image_gallery',''),
  1547. (78248,13348,'_pingme','1'),
  1548. (78249,13348,'_encloseme','1'),
  1549. (78250,13348,'index','1590'),
  1550. (78251,13348,'_product_image_gallery',''),
  1551. (78252,13349,'_pingme','1'),
  1552. (78253,13349,'_encloseme','1'),
  1553. (78254,13349,'index','1600'),
  1554. (78255,13349,'_product_image_gallery',''),
  1555. (78256,13350,'_pingme','1'),
  1556. (78257,13350,'_encloseme','1'),
  1557. (78258,13350,'index','1610'),
  1558. (78259,13350,'_product_image_gallery',''),
  1559. (78260,13351,'_pingme','1'),
  1560. (78261,13351,'_encloseme','1'),
  1561. (78262,13351,'index','1620'),
  1562. (78263,13351,'_product_image_gallery',''),
  1563. (78264,13352,'_pingme','1'),
  1564. (78265,13352,'_encloseme','1'),
  1565. (78266,13352,'index','1630'),
  1566. (78267,13352,'_product_image_gallery',''),
  1567. (78268,13353,'_pingme','1'),
  1568. (78269,13353,'_encloseme','1'),
  1569. (78270,13353,'index','1640'),
  1570. (78271,13353,'_product_image_gallery',''),
  1571. (78272,13354,'_pingme','1'),
  1572. (78273,13354,'_encloseme','1'),
  1573. (78274,13354,'index','1650'),
  1574. (78275,13354,'_product_image_gallery',''),
  1575. (78276,13355,'_pingme','1'),
  1576. (78277,13355,'_encloseme','1'),
  1577. (78278,13355,'index','1660'),
  1578. (78279,13355,'_product_image_gallery',''),
  1579. (78280,13356,'_pingme','1'),
  1580. (78281,13356,'_encloseme','1'),
  1581. (78282,13356,'index','1670'),
  1582. (78283,13356,'_product_image_gallery',''),
  1583. (78284,13357,'_pingme','1'),
  1584. (78285,13357,'_encloseme','1'),
  1585. (78286,13357,'index','1680'),
  1586. (78287,13357,'_product_image_gallery',''),
  1587. (78288,13358,'_pingme','1'),
  1588. (78289,13358,'_encloseme','1'),
  1589. (78290,13358,'index','1690'),
  1590. (78291,13358,'_product_image_gallery',''),
  1591. (78292,13359,'_pingme','1'),
  1592. (78293,13359,'_encloseme','1'),
  1593. (78294,13359,'index','1700'),
  1594. (78295,13359,'_product_image_gallery',''),
  1595. (78296,13360,'_pingme','1'),
  1596. (78297,13360,'_encloseme','1'),
  1597. (78298,13360,'index','1710'),
  1598. (78299,13360,'_product_image_gallery',''),
  1599. (78300,13361,'_pingme','1'),
  1600. (78301,13361,'_encloseme','1'),
  1601. (78302,13361,'index','1720'),
  1602. (78303,13361,'_product_image_gallery',''),
  1603. (78304,13362,'_pingme','1'),
  1604. (78305,13362,'_encloseme','1'),
  1605. (78306,13362,'index','1730'),
  1606. (78307,13362,'_product_image_gallery',''),
  1607. (78308,13363,'_pingme','1'),
  1608. (78309,13363,'_encloseme','1'),
  1609. (78310,13363,'index','1740'),
  1610. (78311,13363,'_product_image_gallery',''),
  1611. (78312,13364,'_pingme','1'),
  1612. (78313,13364,'_encloseme','1'),
  1613. (78314,13364,'index','1750'),
  1614. (78315,13364,'_product_image_gallery',''),
  1615. (78316,13365,'_pingme','1'),
  1616. (78317,13365,'_encloseme','1'),
  1617. (78318,13365,'index','1760'),
  1618. (78319,13365,'_product_image_gallery',''),
  1619. (78320,13366,'_pingme','1'),
  1620. (78321,13366,'_encloseme','1'),
  1621. (78322,13366,'index','1770'),
  1622. (78323,13366,'_product_image_gallery',''),
  1623. (78324,13367,'_pingme','1'),
  1624. (78325,13367,'_encloseme','1'),
  1625. (78326,13367,'index','1780'),
  1626. (78327,13367,'_product_image_gallery',''),
  1627. (78328,13368,'_pingme','1'),
  1628. (78329,13368,'_encloseme','1'),
  1629. (78330,13368,'index','1790'),
  1630. (78331,13368,'_product_image_gallery',''),
  1631. (78332,13369,'_pingme','1'),
  1632. (78333,13369,'_encloseme','1'),
  1633. (78334,13369,'index','1800'),
  1634. (78335,13369,'_product_image_gallery',''),
  1635. (78336,13370,'_pingme','1'),
  1636. (78337,13370,'_encloseme','1'),
  1637. (78338,13370,'index','1810'),
  1638. (78339,13370,'_product_image_gallery',''),
  1639. (78340,13371,'_pingme','1'),
  1640. (78341,13371,'_encloseme','1'),
  1641. (78342,13371,'index','1820'),
  1642. (78343,13371,'_product_image_gallery',''),
  1643. (78344,13372,'_pingme','1'),
  1644. (78345,13372,'_encloseme','1'),
  1645. (78346,13372,'index','1830'),
  1646. (78347,13372,'_product_image_gallery',''),
  1647. (78348,13373,'_pingme','1'),
  1648. (78349,13373,'_encloseme','1'),
  1649. (78350,13373,'index','1840'),
  1650. (78351,13373,'_product_image_gallery',''),
  1651. (78352,13374,'_pingme','1'),
  1652. (78353,13374,'_encloseme','1'),
  1653. (78354,13374,'index','1850'),
  1654. (78355,13374,'_product_image_gallery',''),
  1655. (78356,13375,'_pingme','1'),
  1656. (78357,13375,'_encloseme','1'),
  1657. (78358,13375,'index','1860'),
  1658. (78359,13375,'_product_image_gallery',''),
  1659. (78360,13376,'_pingme','1'),
  1660. (78361,13376,'_encloseme','1'),
  1661. (78362,13376,'index','1870'),
  1662. (78363,13376,'_product_image_gallery',''),
  1663. (78364,13377,'_pingme','1'),
  1664. (78365,13377,'_encloseme','1'),
  1665. (78366,13377,'index','1880'),
  1666. (78367,13377,'_product_image_gallery',''),
  1667. (78368,13378,'_pingme','1'),
  1668. (78369,13378,'_encloseme','1'),
  1669. (78370,13378,'index','1890'),
  1670. (78371,13378,'_product_image_gallery',''),
  1671. (78372,13379,'_pingme','1'),
  1672. (78373,13379,'_encloseme','1'),
  1673. (78374,13379,'index','1900'),
  1674. (78375,13379,'_product_image_gallery',''),
  1675. (78376,13380,'_pingme','1'),
  1676. (78377,13380,'_encloseme','1'),
  1677. (78378,13380,'index','1910'),
  1678. (78379,13380,'_product_image_gallery',''),
  1679. (78380,13381,'_pingme','1'),
  1680. (78381,13381,'_encloseme','1'),
  1681. (78382,13381,'index','1920'),
  1682. (78383,13381,'_product_image_gallery',''),
  1683. (78384,13382,'_pingme','1'),
  1684. (78385,13382,'_encloseme','1'),
  1685. (78386,13382,'index','1930'),
  1686. (78387,13382,'_product_image_gallery',''),
  1687. (78388,13383,'_pingme','1'),
  1688. (78389,13383,'_encloseme','1'),
  1689. (78390,13383,'index','1940'),
  1690. (78391,13383,'_product_image_gallery',''),
  1691. (78392,13384,'_pingme','1'),
  1692. (78393,13384,'_encloseme','1'),
  1693. (78394,13384,'index','1950'),
  1694. (78395,13384,'_product_image_gallery',''),
  1695. (78396,13385,'_pingme','1'),
  1696. (78397,13385,'_encloseme','1'),
  1697. (78398,13385,'index','1960'),
  1698. (78399,13385,'_product_image_gallery',''),
  1699. (78400,13386,'_pingme','1'),
  1700. (78401,13386,'_encloseme','1'),
  1701. (78402,13386,'index','1970'),
  1702. (78403,13386,'_product_image_gallery',''),
  1703. (78404,13387,'_pingme','1'),
  1704. (78405,13387,'_encloseme','1'),
  1705. (78406,13387,'index','1980'),
  1706. (78407,13387,'_product_image_gallery',''),
  1707. (78408,13388,'_pingme','1'),
  1708. (78409,13388,'_encloseme','1'),
  1709. (78410,13388,'index','1990'),
  1710. (78411,13388,'_product_image_gallery',''),
  1711. (78412,13389,'_pingme','1'),
  1712. (78413,13389,'_encloseme','1'),
  1713. (78414,13389,'index','2000'),
  1714. (78415,13389,'_product_image_gallery',''),
  1715. (78416,13390,'_pingme','1'),
  1716. (78417,13390,'_encloseme','1'),
  1717. (78418,13390,'index','2010'),
  1718. (78419,13390,'_product_image_gallery',''),
  1719. (78420,13391,'_pingme','1'),
  1720. (78421,13391,'_encloseme','1'),
  1721. (78422,13391,'index','2020'),
  1722. (78423,13391,'_product_image_gallery',''),
  1723. (78424,13392,'_pingme','1'),
  1724. (78425,13392,'_encloseme','1'),
  1725. (78426,13392,'index','2030'),
  1726. (78427,13392,'_product_image_gallery',''),
  1727. (78428,13393,'_pingme','1'),
  1728. (78429,13393,'_encloseme','1'),
  1729. (78430,13393,'index','2040'),
  1730. (78431,13393,'_product_image_gallery',''),
  1731. (78432,13394,'_pingme','1'),
  1732. (78433,13394,'_encloseme','1'),
  1733. (78434,13394,'index','2050'),
  1734. (78435,13394,'_product_image_gallery',''),
  1735. (78436,13395,'_pingme','1'),
  1736. (78437,13395,'_encloseme','1'),
  1737. (78438,13395,'index','2060'),
  1738. (78439,13395,'_product_image_gallery',''),
  1739. (78440,13396,'_pingme','1'),
  1740. (78441,13396,'_encloseme','1'),
  1741. (78442,13396,'index','2070'),
  1742. (78443,13396,'_product_image_gallery',''),
  1743. (78444,13397,'_pingme','1'),
  1744. (78445,13397,'_encloseme','1'),
  1745. (78446,13397,'index','2080'),
  1746. (78447,13397,'_product_image_gallery',''),
  1747. (78448,13398,'_pingme','1'),
  1748. (78449,13398,'_encloseme','1'),
  1749. (78450,13398,'index','2090'),
  1750. (78451,13398,'_product_image_gallery',''),
  1751. (78452,13399,'_pingme','1'),
  1752. (78453,13399,'_encloseme','1'),
  1753. (78454,13399,'index','2100'),
  1754. (78455,13399,'_product_image_gallery',''),
  1755. (78456,13400,'_pingme','1'),
  1756. (78457,13400,'_encloseme','1'),
  1757. (78458,13400,'index','2110'),
  1758. (78459,13400,'_product_image_gallery',''),
  1759. (78460,13401,'_pingme','1'),
  1760. (78461,13401,'_encloseme','1'),
  1761. (78462,13401,'index','2120'),
  1762. (78463,13401,'_product_image_gallery',''),
  1763. (78464,13402,'_pingme','1'),
  1764. (78465,13402,'_encloseme','1'),
  1765. (78466,13402,'index','2130'),
  1766. (78467,13402,'_product_image_gallery',''),
  1767. (78468,13403,'_pingme','1'),
  1768. (78469,13403,'_encloseme','1'),
  1769. (78470,13403,'index','2140'),
  1770. (78471,13403,'_product_image_gallery',''),
  1771. (78472,13404,'_pingme','1'),
  1772. (78473,13404,'_encloseme','1'),
  1773. (78474,13404,'index','2150'),
  1774. (78475,13404,'_product_image_gallery',''),
  1775. (78476,13405,'_pingme','1'),
  1776. (78477,13405,'_encloseme','1'),
  1777. (78478,13405,'index','2160'),
  1778. (78479,13405,'_product_image_gallery',''),
  1779. (78480,13406,'_pingme','1'),
  1780. (78481,13406,'_encloseme','1'),
  1781. (78482,13406,'index','2170'),
  1782. (78483,13406,'_product_image_gallery',''),
  1783. (78484,13407,'_pingme','1'),
  1784. (78485,13407,'_encloseme','1'),
  1785. (78486,13407,'index','2180'),
  1786. (78487,13407,'_product_image_gallery',''),
  1787. (78488,13408,'_pingme','1'),
  1788. (78489,13408,'_encloseme','1'),
  1789. (78490,13408,'index','2190'),
  1790. (78491,13408,'_product_image_gallery',''),
  1791. (78492,13409,'_pingme','1'),
  1792. (78493,13409,'_encloseme','1'),
  1793. (78494,13409,'index','2200'),
  1794. (78495,13409,'_product_image_gallery',''),
  1795. (78496,13410,'_pingme','1'),
  1796. (78497,13410,'_encloseme','1'),
  1797. (78498,13410,'index','2210'),
  1798. (78499,13410,'_product_image_gallery',''),
  1799. (78500,13411,'_pingme','1'),
  1800. (78501,13411,'_encloseme','1'),
  1801. (78502,13411,'index','2220'),
  1802. (78503,13411,'_product_image_gallery',''),
  1803. (78504,13412,'_pingme','1'),
  1804. (78505,13412,'_encloseme','1'),
  1805. (78506,13412,'index','2230'),
  1806. (78507,13412,'_product_image_gallery',''),
  1807. (78508,13413,'_pingme','1'),
  1808. (78509,13413,'_encloseme','1'),
  1809. (78510,13413,'index','2240'),
  1810. (78511,13413,'_product_image_gallery',''),
  1811. (78512,13414,'_pingme','1'),
  1812. (78513,13414,'_encloseme','1'),
  1813. (78514,13414,'index','2250'),
  1814. (78515,13414,'_product_image_gallery',''),
  1815. (78516,13415,'_pingme','1'),
  1816. (78517,13415,'_encloseme','1'),
  1817. (78518,13415,'index','2260'),
  1818. (78519,13415,'_product_image_gallery',''),
  1819. (78520,13416,'_pingme','1'),
  1820. (78521,13416,'_encloseme','1'),
  1821. (78522,13416,'index','2270'),
  1822. (78523,13416,'_product_image_gallery',''),
  1823. (78524,13417,'_pingme','1'),
  1824. (78525,13417,'_encloseme','1'),
  1825. (78526,13417,'index','2280'),
  1826. (78527,13417,'_product_image_gallery',''),
  1827. (78528,13418,'_pingme','1'),
  1828. (78529,13418,'_encloseme','1'),
  1829. (78530,13418,'index','2290'),
  1830. (78531,13418,'_product_image_gallery',''),
  1831. (78532,13419,'_pingme','1'),
  1832. (78533,13419,'_encloseme','1'),
  1833. (78534,13419,'index','2300'),
  1834. (78535,13419,'_product_image_gallery',''),
  1835. (78536,13420,'_pingme','1'),
  1836. (78537,13420,'_encloseme','1'),
  1837. (78538,13420,'index','2310'),
  1838. (78539,13420,'_product_image_gallery',''),
  1839. (78540,13421,'_pingme','1'),
  1840. (78541,13421,'_encloseme','1'),
  1841. (78542,13421,'index','2320'),
  1842. (78543,13421,'_product_image_gallery',''),
  1843. (78544,13422,'_pingme','1'),
  1844. (78545,13422,'_encloseme','1'),
  1845. (78546,13422,'index','2330'),
  1846. (78547,13422,'_product_image_gallery',''),
  1847. (78548,13423,'_pingme','1'),
  1848. (78549,13423,'_encloseme','1'),
  1849. (78550,13423,'index','2340'),
  1850. (78551,13423,'_product_image_gallery',''),
  1851. (78552,13424,'_pingme','1'),
  1852. (78553,13424,'_encloseme','1'),
  1853. (78554,13424,'index','2350'),
  1854. (78555,13424,'_product_image_gallery',''),
  1855. (78556,13425,'_pingme','1'),
  1856. (78557,13425,'_encloseme','1'),
  1857. (78558,13425,'index','2360'),
  1858. (78559,13425,'_product_image_gallery',''),
  1859. (78560,13426,'_pingme','1'),
  1860. (78561,13426,'_encloseme','1'),
  1861. (78562,13426,'index','2370'),
  1862. (78563,13426,'_product_image_gallery',''),
  1863. (78564,13427,'_pingme','1'),
  1864. (78565,13427,'_encloseme','1'),
  1865. (78566,13427,'index','2380'),
  1866. (78567,13427,'_product_image_gallery',''),
  1867. (78568,13428,'_pingme','1'),
  1868. (78569,13428,'_encloseme','1'),
  1869. (78570,13428,'index','2390'),
  1870. (78571,13428,'_product_image_gallery',''),
  1871. (78572,13429,'_pingme','1'),
  1872. (78573,13429,'_encloseme','1'),
  1873. (78574,13429,'index','2400'),
  1874. (78575,13429,'_product_image_gallery',''),
  1875. (78576,13430,'_pingme','1'),
  1876. (78577,13430,'_encloseme','1'),
  1877. (78578,13430,'index','2410'),
  1878. (78579,13430,'_product_image_gallery',''),
  1879. (78580,13431,'_pingme','1'),
  1880. (78581,13431,'_encloseme','1'),
  1881. (78582,13431,'index','2420'),
  1882. (78583,13431,'_product_image_gallery',''),
  1883. (78584,13432,'_pingme','1'),
  1884. (78585,13432,'_encloseme','1'),
  1885. (78586,13432,'index','2430'),
  1886. (78587,13432,'_product_image_gallery',''),
  1887. (78588,13433,'_pingme','1'),
  1888. (78589,13433,'_encloseme','1'),
  1889. (78590,13433,'index','2440'),
  1890. (78591,13433,'_product_image_gallery',''),
  1891. (78592,13434,'_pingme','1'),
  1892. (78593,13434,'_encloseme','1'),
  1893. (78594,13434,'index','2450'),
  1894. (78595,13434,'_product_image_gallery',''),
  1895. (78596,13435,'_pingme','1'),
  1896. (78597,13435,'_encloseme','1'),
  1897. (78598,13435,'index','2460'),
  1898. (78599,13435,'_product_image_gallery',''),
  1899. (78600,13436,'_pingme','1'),
  1900. (78601,13436,'_encloseme','1'),
  1901. (78602,13436,'index','2470'),
  1902. (78603,13436,'_product_image_gallery',''),
  1903. (78604,13437,'_pingme','1'),
  1904. (78605,13437,'_encloseme','1'),
  1905. (78606,13437,'index','2480'),
  1906. (78607,13437,'_product_image_gallery',''),
  1907. (78608,13438,'_pingme','1'),
  1908. (78609,13438,'_encloseme','1'),
  1909. (78610,13438,'index','2490'),
  1910. (78611,13438,'_product_image_gallery',''),
  1911. (78612,13439,'_pingme','1'),
  1912. (78613,13439,'_encloseme','1'),
  1913. (78614,13439,'index','2500'),
  1914. (78615,13439,'_product_image_gallery',''),
  1915. (78616,13440,'_pingme','1'),
  1916. (78617,13440,'_encloseme','1'),
  1917. (78618,13440,'index','2510'),
  1918. (78619,13440,'_product_image_gallery',''),
  1919. (78620,13441,'_pingme','1'),
  1920. (78621,13441,'_encloseme','1'),
  1921. (78622,13441,'index','2520'),
  1922. (78623,13441,'_product_image_gallery',''),
  1923. (78624,13442,'_pingme','1'),
  1924. (78625,13442,'_encloseme','1'),
  1925. (78626,13442,'index','2530'),
  1926. (78627,13442,'_product_image_gallery',''),
  1927. (78628,13443,'_pingme','1'),
  1928. (78629,13443,'_encloseme','1'),
  1929. (78630,13443,'index','2540'),
  1930. (78631,13443,'_product_image_gallery',''),
  1931. (78632,13444,'_pingme','1'),
  1932. (78633,13444,'_encloseme','1'),
  1933. (78634,13444,'index','2550'),
  1934. (78635,13444,'_product_image_gallery',''),
  1935. (78636,13445,'_pingme','1'),
  1936. (78637,13445,'_encloseme','1'),
  1937. (78638,13445,'index','2560'),
  1938. (78639,13445,'_product_image_gallery',''),
  1939. (78640,13446,'_pingme','1'),
  1940. (78641,13446,'_encloseme','1'),
  1941. (78642,13446,'index','2570'),
  1942. (78643,13446,'_product_image_gallery',''),
  1943. (78644,13447,'_pingme','1'),
  1944. (78645,13447,'_encloseme','1'),
  1945. (78646,13447,'index','2580'),
  1946. (78647,13447,'_product_image_gallery',''),
  1947. (78648,13448,'_pingme','1'),
  1948. (78649,13448,'_encloseme','1'),
  1949. (78650,13448,'index','2590'),
  1950. (78651,13448,'_product_image_gallery',''),
  1951. (78652,13449,'_pingme','1'),
  1952. (78653,13449,'_encloseme','1'),
  1953. (78654,13449,'index','2600'),
  1954. (78655,13449,'_product_image_gallery',''),
  1955. (78656,13450,'_pingme','1'),
  1956. (78657,13450,'_encloseme','1'),
  1957. (78658,13450,'index','2610'),
  1958. (78659,13450,'_product_image_gallery',''),
  1959. (78660,13451,'_pingme','1'),
  1960. (78661,13451,'_encloseme','1'),
  1961. (78662,13451,'index','2620'),
  1962. (78663,13451,'_product_image_gallery',''),
  1963. (78664,13452,'_pingme','1'),
  1964. (78665,13452,'_encloseme','1'),
  1965. (78666,13452,'index','2630'),
  1966. (78667,13452,'_product_image_gallery',''),
  1967. (78668,13453,'_pingme','1'),
  1968. (78669,13453,'_encloseme','1'),
  1969. (78670,13453,'index','2640'),
  1970. (78671,13453,'_product_image_gallery',''),
  1971. (78672,13454,'_pingme','1'),
  1972. (78673,13454,'_encloseme','1'),
  1973. (78674,13454,'index','2650'),
  1974. (78675,13454,'_product_image_gallery',''),
  1975. (78676,13455,'_pingme','1'),
  1976. (78677,13455,'_encloseme','1'),
  1977. (78678,13455,'index','2660'),
  1978. (78679,13455,'_product_image_gallery',''),
  1979. (78680,13456,'_pingme','1'),
  1980. (78681,13456,'_encloseme','1'),
  1981. (78682,13456,'index','2670'),
  1982. (78683,13456,'_product_image_gallery',''),
  1983. (78684,13457,'_pingme','1'),
  1984. (78685,13457,'_encloseme','1'),
  1985. (78686,13457,'index','2680'),
  1986. (78687,13457,'_product_image_gallery',''),
  1987. (78688,13458,'_pingme','1'),
  1988. (78689,13458,'_encloseme','1'),
  1989. (78690,13458,'index','2690'),
  1990. (78691,13458,'_product_image_gallery',''),
  1991. (78692,13459,'_pingme','1'),
  1992. (78693,13459,'_encloseme','1'),
  1993. (78694,13459,'index','2700'),
  1994. (78695,13459,'_product_image_gallery',''),
  1995. (78696,13460,'_pingme','1'),
  1996. (78697,13460,'_encloseme','1'),
  1997. (78698,13460,'index','2710'),
  1998. (78699,13460,'_product_image_gallery',''),
  1999. (78700,13461,'_pingme','1'),
  2000. (78701,13461,'_encloseme','1'),
  2001. (78702,13461,'index','2720'),
  2002. (78703,13461,'_product_image_gallery',''),
  2003. (78704,13462,'_pingme','1'),
  2004. (78705,13462,'_encloseme','1'),
  2005. (78706,13462,'index','2730'),
  2006. (78707,13462,'_product_image_gallery',''),
  2007. (78708,13463,'_pingme','1'),
  2008. (78709,13463,'_encloseme','1'),
  2009. (78710,13463,'index','2740'),
  2010. (78711,13463,'_product_image_gallery',''),
  2011. (78712,13464,'_pingme','1'),
  2012. (78713,13464,'_encloseme','1'),
  2013. (78714,13464,'index','2750'),
  2014. (78715,13464,'_product_image_gallery',''),
  2015. (78716,13465,'_pingme','1'),
  2016. (78717,13465,'_encloseme','1'),
  2017. (78718,13465,'index','2760'),
  2018. (78719,13465,'_product_image_gallery',''),
  2019. (78720,13466,'_pingme','1'),
  2020. (78721,13466,'_encloseme','1'),
  2021. (78722,13466,'index','2770'),
  2022. (78723,13466,'_product_image_gallery',''),
  2023. (78724,13467,'_pingme','1'),
  2024. (78725,13467,'_encloseme','1'),
  2025. (78726,13467,'index','2780'),
  2026. (78727,13467,'_product_image_gallery',''),
  2027. (78728,13468,'_pingme','1'),
  2028. (78729,13468,'_encloseme','1'),
  2029. (78730,13468,'index','2790'),
  2030. (78731,13468,'_product_image_gallery',''),
  2031. (78732,13469,'_pingme','1'),
  2032. (78733,13469,'_encloseme','1'),
  2033. (78734,13469,'index','2800'),
  2034. (78735,13469,'_product_image_gallery',''),
  2035. (78736,13470,'_pingme','1'),
  2036. (78737,13470,'_encloseme','1'),
  2037. (78738,13470,'index','2810'),
  2038. (78739,13470,'_product_image_gallery',''),
  2039. (78740,13471,'_pingme','1'),
  2040. (78741,13471,'_encloseme','1'),
  2041. (78742,13471,'index','2820'),
  2042. (78743,13471,'_product_image_gallery',''),
  2043. (78744,13472,'_pingme','1'),
  2044. (78745,13472,'_encloseme','1'),
  2045. (78746,13472,'index','2830'),
  2046. (78747,13472,'_product_image_gallery',''),
  2047. (78748,13473,'_pingme','1'),
  2048. (78749,13473,'_encloseme','1'),
  2049. (78750,13473,'index','2840'),
  2050. (78751,13473,'_product_image_gallery',''),
  2051. (78752,13474,'_pingme','1'),
  2052. (78753,13474,'_encloseme','1'),
  2053. (78754,13474,'index','2850'),
  2054. (78755,13474,'_product_image_gallery',''),
  2055. (78756,13475,'_pingme','1'),
  2056. (78757,13475,'_encloseme','1'),
  2057. (78758,13475,'index','2860'),
  2058. (78759,13475,'_product_image_gallery',''),
  2059. (78760,13476,'_pingme','1'),
  2060. (78761,13476,'_encloseme','1'),
  2061. (78762,13476,'index','2870'),
  2062. (78763,13476,'_product_image_gallery',''),
  2063. (78764,13477,'_pingme','1'),
  2064. (78765,13477,'_encloseme','1'),
  2065. (78766,13477,'index','2880'),
  2066. (78767,13477,'_product_image_gallery',''),
  2067. (78768,13478,'_pingme','1'),
  2068. (78769,13478,'_encloseme','1'),
  2069. (78770,13478,'index','2890'),
  2070. (78771,13478,'_product_image_gallery',''),
  2071. (78772,13479,'_pingme','1'),
  2072. (78773,13479,'_encloseme','1'),
  2073. (78774,13479,'index','2900'),
  2074. (78775,13479,'_product_image_gallery',''),
  2075. (78776,13480,'_pingme','1'),
  2076. (78777,13480,'_encloseme','1'),
  2077. (78778,13480,'index','2910'),
  2078. (78779,13480,'_product_image_gallery',''),
  2079. (78780,13481,'_pingme','1'),
  2080. (78781,13481,'_encloseme','1'),
  2081. (78782,13481,'index','2920'),
  2082. (78783,13481,'_product_image_gallery',''),
  2083. (78784,13482,'_pingme','1'),
  2084. (78785,13482,'_encloseme','1'),
  2085. (78786,13482,'index','2930'),
  2086. (78787,13482,'_product_image_gallery',''),
  2087. (78788,13483,'_pingme','1'),
  2088. (78789,13483,'_encloseme','1'),
  2089. (78790,13483,'index','2940'),
  2090. (78791,13483,'_product_image_gallery',''),
  2091. (78792,13484,'_pingme','1'),
  2092. (78793,13484,'_encloseme','1'),
  2093. (78794,13484,'index','2950'),
  2094. (78795,13484,'_product_image_gallery',''),
  2095. (78796,13485,'_pingme','1'),
  2096. (78797,13485,'_encloseme','1'),
  2097. (78798,13485,'index','2960'),
  2098. (78799,13485,'_product_image_gallery',''),
  2099. (78800,13486,'_pingme','1'),
  2100. (78801,13486,'_encloseme','1'),
  2101. (78802,13486,'index','2970'),
  2102. (78803,13486,'_product_image_gallery',''),
  2103. (78804,13487,'_pingme','1'),
  2104. (78805,13487,'_encloseme','1'),
  2105. (78806,13487,'index','2980'),
  2106. (78807,13487,'_product_image_gallery',''),
  2107. (78808,13488,'_pingme','1'),
  2108. (78809,13488,'_encloseme','1'),
  2109. (78810,13488,'index','2990'),
  2110. (78811,13488,'_product_image_gallery',''),
  2111. (78812,13489,'_pingme','1'),
  2112. (78813,13489,'_encloseme','1'),
  2113. (78814,13489,'index','3000'),
  2114. (78815,13489,'_product_image_gallery',''),
  2115. (78816,13490,'_pingme','1'),
  2116. (78817,13490,'_encloseme','1'),
  2117. (78818,13490,'index','3010'),
  2118. (78819,13490,'_product_image_gallery',''),
  2119. (78820,13491,'_pingme','1'),
  2120. (78821,13491,'_encloseme','1'),
  2121. (78822,13491,'index','3020'),
  2122. (78823,13491,'_product_image_gallery',''),
  2123. (78824,13492,'_pingme','1'),
  2124. (78825,13492,'_encloseme','1'),
  2125. (78826,13492,'index','3030'),
  2126. (78827,13492,'_product_image_gallery',''),
  2127. (78828,13493,'_pingme','1'),
  2128. (78829,13493,'_encloseme','1'),
  2129. (78830,13493,'index','3040'),
  2130. (78831,13493,'_product_image_gallery',''),
  2131. (78832,13494,'_pingme','1'),
  2132. (78833,13494,'_encloseme','1'),
  2133. (78834,13494,'index','3050'),
  2134. (78835,13494,'_product_image_gallery',''),
  2135. (78836,13495,'_pingme','1'),
  2136. (78837,13495,'_encloseme','1'),
  2137. (78838,13495,'index','3060'),
  2138. (78839,13495,'_product_image_gallery',''),
  2139. (78840,13496,'_pingme','1'),
  2140. (78841,13496,'_encloseme','1'),
  2141. (78842,13496,'index','3070'),
  2142. (78843,13496,'_product_image_gallery',''),
  2143. (78844,13497,'_pingme','1'),
  2144. (78845,13497,'_encloseme','1'),
  2145. (78846,13497,'index','3080'),
  2146. (78847,13497,'_product_image_gallery',''),
  2147. (78848,13498,'_pingme','1'),
  2148. (78849,13498,'_encloseme','1'),
  2149. (78850,13498,'index','3090'),
  2150. (78851,13498,'_product_image_gallery',''),
  2151. (78852,13499,'_pingme','1'),
  2152. (78853,13499,'_encloseme','1'),
  2153. (78854,13499,'index','3100'),
  2154. (78855,13499,'_product_image_gallery',''),
  2155. (78856,13500,'_pingme','1'),
  2156. (78857,13500,'_encloseme','1'),
  2157. (78858,13500,'index','3110'),
  2158. (78859,13500,'_product_image_gallery',''),
  2159. (78860,13501,'_pingme','1'),
  2160. (78861,13501,'_encloseme','1'),
  2161. (78862,13501,'index','3120'),
  2162. (78863,13501,'_product_image_gallery',''),
  2163. (78864,13502,'_pingme','1'),
  2164. (78865,13502,'_encloseme','1'),
  2165. (78866,13502,'index','3130'),
  2166. (78867,13502,'_product_image_gallery',''),
  2167. (78868,13503,'_pingme','1'),
  2168. (78869,13503,'_encloseme','1'),
  2169. (78870,13503,'index','3140'),
  2170. (78871,13503,'_product_image_gallery',''),
  2171. (78872,13504,'_pingme','1'),
  2172. (78873,13504,'_encloseme','1'),
  2173. (78874,13504,'index','3150'),
  2174. (78875,13504,'_product_image_gallery',''),
  2175. (78876,13505,'_pingme','1'),
  2176. (78877,13505,'_encloseme','1'),
  2177. (78878,13505,'index','3160'),
  2178. (78879,13505,'_product_image_gallery',''),
  2179. (78880,13506,'_pingme','1'),
  2180. (78881,13506,'_encloseme','1'),
  2181. (78882,13506,'index','3170'),
  2182. (78883,13506,'_product_image_gallery',''),
  2183. (78884,13507,'_pingme','1'),
  2184. (78885,13507,'_encloseme','1'),
  2185. (78886,13507,'index','3180'),
  2186. (78887,13507,'_product_image_gallery',''),
  2187. (78888,13508,'_pingme','1'),
  2188. (78889,13508,'_encloseme','1'),
  2189. (78890,13508,'index','3190'),
  2190. (78891,13508,'_product_image_gallery',''),
  2191. (78892,13509,'_pingme','1'),
  2192. (78893,13509,'_encloseme','1'),
  2193. (78894,13509,'index','3200'),
  2194. (78895,13509,'_product_image_gallery',''),
  2195. (78896,13510,'_pingme','1'),
  2196. (78897,13510,'_encloseme','1'),
  2197. (78898,13510,'index','3210'),
  2198. (78899,13510,'_product_image_gallery',''),
  2199. (78900,13511,'_pingme','1'),
  2200. (78901,13511,'_encloseme','1'),
  2201. (78902,13511,'index','3220'),
  2202. (78903,13511,'_product_image_gallery',''),
  2203. (78904,13512,'_pingme','1'),
  2204. (78905,13512,'_encloseme','1'),
  2205. (78906,13512,'index','3230'),
  2206. (78907,13512,'_product_image_gallery',''),
  2207. (78908,13513,'_pingme','1'),
  2208. (78909,13513,'_encloseme','1'),
  2209. (78910,13513,'index','3240'),
  2210. (78911,13513,'_product_image_gallery',''),
  2211. (78912,13514,'_pingme','1'),
  2212. (78913,13514,'_encloseme','1'),
  2213. (78914,13514,'index','3250'),
  2214. (78915,13514,'_product_image_gallery',''),
  2215. (78916,13515,'_pingme','1'),
  2216. (78917,13515,'_encloseme','1'),
  2217. (78918,13515,'index','3260'),
  2218. (78919,13515,'_product_image_gallery',''),
  2219. (78920,13516,'_pingme','1'),
  2220. (78921,13516,'_encloseme','1'),
  2221. (78922,13516,'index','3270'),
  2222. (78923,13516,'_product_image_gallery',''),
  2223. (78924,13517,'_pingme','1'),
  2224. (78925,13517,'_encloseme','1'),
  2225. (78926,13517,'index','3280'),
  2226. (78927,13517,'_product_image_gallery',''),
  2227. (78928,13518,'_pingme','1'),
  2228. (78929,13518,'_encloseme','1'),
  2229. (78930,13518,'index','3290'),
  2230. (78931,13518,'_product_image_gallery',''),
  2231. (78932,13519,'_pingme','1'),
  2232. (78933,13519,'_encloseme','1'),
  2233. (78934,13519,'index','3300'),
  2234. (78935,13519,'_product_image_gallery',''),
  2235. (78936,13520,'_pingme','1'),
  2236. (78937,13520,'_encloseme','1'),
  2237. (78938,13520,'index','3310'),
  2238. (78939,13520,'_product_image_gallery',''),
  2239. (78940,13521,'_pingme','1'),
  2240. (78941,13521,'_encloseme','1'),
  2241. (78942,13521,'index','3320'),
  2242. (78943,13521,'_product_image_gallery',''),
  2243. (78944,13522,'_pingme','1'),
  2244. (78945,13522,'_encloseme','1'),
  2245. (78946,13522,'index','3330'),
  2246. (78947,13522,'_product_image_gallery',''),
  2247. (78948,13523,'_pingme','1'),
  2248. (78949,13523,'_encloseme','1'),
  2249. (78950,13523,'index','3340'),
  2250. (78951,13523,'_product_image_gallery',''),
  2251. (78952,13524,'_pingme','1'),
  2252. (78953,13524,'_encloseme','1'),
  2253. (78954,13524,'index','3350'),
  2254. (78955,13524,'_product_image_gallery',''),
  2255. (78956,13525,'_pingme','1'),
  2256. (78957,13525,'_encloseme','1'),
  2257. (78958,13525,'index','3360'),
  2258. (78959,13525,'_product_image_gallery',''),
  2259. (78960,13526,'_pingme','1'),
  2260. (78961,13526,'_encloseme','1'),
  2261. (78962,13526,'index','3370'),
  2262. (78963,13526,'_product_image_gallery',''),
  2263. (78964,13527,'_pingme','1'),
  2264. (78965,13527,'_encloseme','1'),
  2265. (78966,13527,'index','3380'),
  2266. (78967,13527,'_product_image_gallery',''),
  2267. (78968,13528,'_pingme','1'),
  2268. (78969,13528,'_encloseme','1'),
  2269. (78970,13528,'index','3390'),
  2270. (78971,13528,'_product_image_gallery',''),
  2271. (78972,13529,'_pingme','1'),
  2272. (78973,13529,'_encloseme','1'),
  2273. (78974,13529,'index','3400'),
  2274. (78975,13529,'_product_image_gallery',''),
  2275. (78976,13530,'_pingme','1'),
  2276. (78977,13530,'_encloseme','1'),
  2277. (78978,13530,'index','3410'),
  2278. (78979,13530,'_product_image_gallery',''),
  2279. (78980,13531,'_pingme','1'),
  2280. (78981,13531,'_encloseme','1'),
  2281. (78982,13531,'index','3420'),
  2282. (78983,13531,'_product_image_gallery',''),
  2283. (78984,13532,'_pingme','1'),
  2284. (78985,13532,'_encloseme','1'),
  2285. (78986,13532,'index','3430'),
  2286. (78987,13532,'_product_image_gallery',''),
  2287. (78988,13533,'_pingme','1'),
  2288. (78989,13533,'_encloseme','1'),
  2289. (78990,13533,'index','3440'),
  2290. (78991,13533,'_product_image_gallery',''),
  2291. (78992,13534,'_pingme','1'),
  2292. (78993,13534,'_encloseme','1'),
  2293. (78994,13534,'index','3450'),
  2294. (78995,13534,'_product_image_gallery',''),
  2295. (78996,13535,'_pingme','1'),
  2296. (78997,13535,'_encloseme','1'),
  2297. (78998,13535,'index','3460'),
  2298. (78999,13535,'_product_image_gallery',''),
  2299. (79000,13536,'_pingme','1'),
  2300. (79001,13536,'_encloseme','1'),
  2301. (79002,13536,'index','3470'),
  2302. (79003,13536,'_product_image_gallery',''),
  2303. (79004,13537,'_pingme','1'),
  2304. (79005,13537,'_encloseme','1'),
  2305. (79006,13537,'index','3480'),
  2306. (79007,13537,'_product_image_gallery',''),
  2307. (79008,13538,'_pingme','1'),
  2308. (79009,13538,'_encloseme','1'),
  2309. (79010,13538,'index','3490'),
  2310. (79011,13538,'_product_image_gallery',''),
  2311. (79012,13539,'_pingme','1'),
  2312. (79013,13539,'_encloseme','1'),
  2313. (79014,13539,'index','3500'),
  2314. (79015,13539,'_product_image_gallery',''),
  2315. (79016,13540,'_pingme','1'),
  2316. (79017,13540,'_encloseme','1'),
  2317. (79018,13540,'index','3510'),
  2318. (79019,13540,'_product_image_gallery',''),
  2319. (79020,13541,'_pingme','1'),
  2320. (79021,13541,'_encloseme','1'),
  2321. (79022,13541,'index','3520'),
  2322. (79023,13541,'_product_image_gallery',''),
  2323. (79024,13542,'_pingme','1'),
  2324. (79025,13542,'_encloseme','1'),
  2325. (79026,13542,'index','3530'),
  2326. (79027,13542,'_product_image_gallery',''),
  2327. (79028,13543,'_pingme','1'),
  2328. (79029,13543,'_encloseme','1'),
  2329. (79030,13543,'index','3540'),
  2330. (79031,13543,'_product_image_gallery',''),
  2331. (79032,13544,'_pingme','1'),
  2332. (79033,13544,'_encloseme','1'),
  2333. (79034,13544,'index','3550'),
  2334. (79035,13544,'_product_image_gallery',''),
  2335. (79036,13545,'_pingme','1'),
  2336. (79037,13545,'_encloseme','1'),
  2337. (79038,13545,'index','3560'),
  2338. (79039,13545,'_product_image_gallery',''),
  2339. (79040,13546,'_pingme','1'),
  2340. (79041,13546,'_encloseme','1'),
  2341. (79042,13546,'index','3570'),
  2342. (79043,13546,'_product_image_gallery',''),
  2343. (79044,13547,'_pingme','1'),
  2344. (79045,13547,'_encloseme','1'),
  2345. (79046,13547,'index','3580'),
  2346. (79047,13547,'_product_image_gallery',''),
  2347. (79048,13548,'_pingme','1'),
  2348. (79049,13548,'_encloseme','1'),
  2349. (79050,13548,'index','3590'),
  2350. (79051,13548,'_product_image_gallery',''),
  2351. (79052,13549,'_pingme','1'),
  2352. (79053,13549,'_encloseme','1'),
  2353. (79054,13549,'index','3600'),
  2354. (79055,13549,'_product_image_gallery',''),
  2355. (79056,13550,'_pingme','1'),
  2356. (79057,13550,'_encloseme','1'),
  2357. (79058,13550,'index','3610'),
  2358. (79059,13550,'_product_image_gallery',''),
  2359. (79060,13551,'_pingme','1'),
  2360. (79061,13551,'_encloseme','1'),
  2361. (79062,13551,'index','3620'),
  2362. (79063,13551,'_product_image_gallery',''),
  2363. (79064,13552,'_pingme','1'),
  2364. (79065,13552,'_encloseme','1'),
  2365. (79066,13552,'index','3630'),
  2366. (79067,13552,'_product_image_gallery',''),
  2367. (79068,13553,'_pingme','1'),
  2368. (79069,13553,'_encloseme','1'),
  2369. (79070,13553,'index','3640'),
  2370. (79071,13553,'_product_image_gallery',''),
  2371. (79072,13554,'_pingme','1'),
  2372. (79073,13554,'_encloseme','1'),
  2373. (79074,13554,'index','3650'),
  2374. (79075,13554,'_product_image_gallery',''),
  2375. (79076,13555,'_pingme','1'),
  2376. (79077,13555,'_encloseme','1'),
  2377. (79078,13555,'index','3660'),
  2378. (79079,13555,'_product_image_gallery',''),
  2379. (79080,13556,'_pingme','1'),
  2380. (79081,13556,'_encloseme','1'),
  2381. (79082,13556,'index','3670'),
  2382. (79083,13556,'_product_image_gallery',''),
  2383. (79084,13557,'_pingme','1'),
  2384. (79085,13557,'_encloseme','1'),
  2385. (79086,13557,'index','3680'),
  2386. (79087,13557,'_product_image_gallery',''),
  2387. (79088,13558,'_pingme','1'),
  2388. (79089,13558,'_encloseme','1'),
  2389. (79090,13558,'index','3690'),
  2390. (79091,13558,'_product_image_gallery',''),
  2391. (79092,13559,'_pingme','1'),
  2392. (79093,13559,'_encloseme','1'),
  2393. (79094,13559,'index','3700'),
  2394. (79095,13559,'_product_image_gallery',''),
  2395. (79096,13560,'_pingme','1'),
  2396. (79097,13560,'_encloseme','1'),
  2397. (79098,13560,'index','3710'),
  2398. (79099,13560,'_product_image_gallery',''),
  2399. (79100,13561,'_pingme','1'),
  2400. (79101,13561,'_encloseme','1'),
  2401. (79102,13561,'index','3720'),
  2402. (79103,13561,'_product_image_gallery',''),
  2403. (79104,13562,'_pingme','1'),
  2404. (79105,13562,'_encloseme','1'),
  2405. (79106,13562,'index','3730'),
  2406. (79107,13562,'_product_image_gallery',''),
  2407. (79108,13563,'_pingme','1'),
  2408. (79109,13563,'_encloseme','1'),
  2409. (79110,13563,'index','3740'),
  2410. (79111,13563,'_product_image_gallery',''),
  2411. (79112,13564,'_pingme','1'),
  2412. (79113,13564,'_encloseme','1'),
  2413. (79114,13564,'index','3750'),
  2414. (79115,13564,'_product_image_gallery',''),
  2415. (79116,13565,'_pingme','1'),
  2416. (79117,13565,'_encloseme','1'),
  2417. (79118,13565,'index','3760'),
  2418. (79119,13565,'_product_image_gallery',''),
  2419. (79120,13566,'_pingme','1'),
  2420. (79121,13566,'_encloseme','1'),
  2421. (79122,13566,'index','3770'),
  2422. (79123,13566,'_product_image_gallery',''),
  2423. (79124,13567,'_pingme','1'),
  2424. (79125,13567,'_encloseme','1'),
  2425. (79126,13567,'index','3780'),
  2426. (79127,13567,'_product_image_gallery',''),
  2427. (79128,13568,'_pingme','1'),
  2428. (79129,13568,'_encloseme','1'),
  2429. (79130,13568,'index','3790'),
  2430. (79131,13568,'_product_image_gallery',''),
  2431. (79132,13569,'_pingme','1'),
  2432. (79133,13569,'_encloseme','1'),
  2433. (79134,13569,'index','3800'),
  2434. (79135,13569,'_product_image_gallery',''),
  2435. (79136,13570,'_pingme','1'),
  2436. (79137,13570,'_encloseme','1'),
  2437. (79138,13570,'index','3810'),
  2438. (79139,13570,'_product_image_gallery',''),
  2439. (79140,13571,'_pingme','1'),
  2440. (79141,13571,'_encloseme','1'),
  2441. (79142,13571,'index','3820'),
  2442. (79143,13571,'_product_image_gallery',''),
  2443. (79144,13572,'_pingme','1'),
  2444. (79145,13572,'_encloseme','1'),
  2445. (79146,13572,'index','3830'),
  2446. (79147,13572,'_product_image_gallery',''),
  2447. (79148,13573,'_pingme','1'),
  2448. (79149,13573,'_encloseme','1'),
  2449. (79150,13573,'index','3840'),
  2450. (79151,13573,'_product_image_gallery',''),
  2451. (79152,13574,'_pingme','1'),
  2452. (79153,13574,'_encloseme','1'),
  2453. (79154,13574,'index','3850'),
  2454. (79155,13574,'_product_image_gallery',''),
  2455. (79156,13575,'_pingme','1'),
  2456. (79157,13575,'_encloseme','1'),
  2457. (79158,13575,'index','3860'),
  2458. (79159,13575,'_product_image_gallery',''),
  2459. (79160,13576,'_pingme','1'),
  2460. (79161,13576,'_encloseme','1'),
  2461. (79162,13576,'index','3870'),
  2462. (79163,13576,'_product_image_gallery',''),
  2463. (79164,13577,'_pingme','1'),
  2464. (79165,13577,'_encloseme','1'),
  2465. (79166,13577,'index','3880'),
  2466. (79167,13577,'_product_image_gallery',''),
  2467. (79168,13578,'_pingme','1'),
  2468. (79169,13578,'_encloseme','1'),
  2469. (79170,13578,'index','3890'),
  2470. (79171,13578,'_product_image_gallery',''),
  2471. (79172,13579,'_pingme','1'),
  2472. (79173,13579,'_encloseme','1'),
  2473. (79174,13579,'index','3900'),
  2474. (79175,13579,'_product_image_gallery',''),
  2475. (79176,13580,'_pingme','1'),
  2476. (79177,13580,'_encloseme','1'),
  2477. (79178,13580,'index','3910'),
  2478. (79179,13580,'_product_image_gallery',''),
  2479. (79180,13581,'_pingme','1'),
  2480. (79181,13581,'_encloseme','1'),
  2481. (79182,13581,'index','3920'),
  2482. (79183,13581,'_product_image_gallery',''),
  2483. (79184,13582,'_pingme','1'),
  2484. (79185,13582,'_encloseme','1'),
  2485. (79186,13582,'index','3930'),
  2486. (79187,13582,'_product_image_gallery',''),
  2487. (79188,13583,'_pingme','1'),
  2488. (79189,13583,'_encloseme','1'),
  2489. (79190,13583,'index','3940'),
  2490. (79191,13583,'_product_image_gallery',''),
  2491. (79192,13584,'_pingme','1'),
  2492. (79193,13584,'_encloseme','1'),
  2493. (79194,13584,'index','3950'),
  2494. (79195,13584,'_product_image_gallery',''),
  2495. (79196,13585,'_pingme','1'),
  2496. (79197,13585,'_encloseme','1'),
  2497. (79198,13585,'index','3960'),
  2498. (79199,13585,'_product_image_gallery',''),
  2499. (79200,13586,'_pingme','1'),
  2500. (79201,13586,'_encloseme','1'),
  2501. (79202,13586,'index','3970'),
  2502. (79203,13586,'_product_image_gallery',''),
  2503. (79204,13587,'_pingme','1'),
  2504. (79205,13587,'_encloseme','1'),
  2505. (79206,13587,'index','3980'),
  2506. (79207,13587,'_product_image_gallery',''),
  2507. (79208,13588,'_pingme','1'),
  2508. (79209,13588,'_encloseme','1'),
  2509. (79210,13588,'index','3990'),
  2510. (79211,13588,'_product_image_gallery',''),
  2511. (79212,13589,'_pingme','1'),
  2512. (79213,13589,'_encloseme','1'),
  2513. (79214,13589,'index','4000'),
  2514. (79215,13589,'_product_image_gallery',''),
  2515. (79216,13590,'_pingme','1'),
  2516. (79217,13590,'_encloseme','1'),
  2517. (79218,13590,'index','4010'),
  2518. (79219,13590,'_product_image_gallery',''),
  2519. (79220,13591,'_pingme','1'),
  2520. (79221,13591,'_encloseme','1'),
  2521. (79222,13591,'index','4020'),
  2522. (79223,13591,'_product_image_gallery',''),
  2523. (79224,13592,'_pingme','1'),
  2524. (79225,13592,'_encloseme','1'),
  2525. (79226,13592,'index','4030'),
  2526. (79227,13592,'_product_image_gallery',''),
  2527. (79228,13593,'_pingme','1'),
  2528. (79229,13593,'_encloseme','1'),
  2529. (79230,13593,'index','4040'),
  2530. (79231,13593,'_product_image_gallery',''),
  2531. (79232,13594,'_pingme','1'),
  2532. (79233,13594,'_encloseme','1'),
  2533. (79234,13594,'index','4050'),
  2534. (79235,13594,'_product_image_gallery',''),
  2535. (79236,13595,'_pingme','1'),
  2536. (79237,13595,'_encloseme','1'),
  2537. (79238,13595,'index','4060'),
  2538. (79239,13595,'_product_image_gallery',''),
  2539. (79240,13596,'_pingme','1'),
  2540. (79241,13596,'_encloseme','1'),
  2541. (79242,13596,'index','4070'),
  2542. (79243,13596,'_product_image_gallery',''),
  2543. (79244,13597,'_pingme','1'),
  2544. (79245,13597,'_encloseme','1'),
  2545. (79246,13597,'index','4080'),
  2546. (79247,13597,'_product_image_gallery',''),
  2547. (79248,13598,'_pingme','1'),
  2548. (79249,13598,'_encloseme','1'),
  2549. (79250,13598,'index','4090'),
  2550. (79251,13598,'_product_image_gallery',''),
  2551. (79252,13599,'_pingme','1'),
  2552. (79253,13599,'_encloseme','1'),
  2553. (79254,13599,'index','4100'),
  2554. (79255,13599,'_product_image_gallery',''),
  2555. (79256,13600,'_pingme','1'),
  2556. (79257,13600,'_encloseme','1'),
  2557. (79258,13600,'index','4110'),
  2558. (79259,13600,'_product_image_gallery',''),
  2559. (79260,13601,'_pingme','1'),
  2560. (79261,13601,'_encloseme','1'),
  2561. (79262,13601,'index','4120'),
  2562. (79263,13601,'_product_image_gallery',''),
  2563. (79264,13602,'_pingme','1'),
  2564. (79265,13602,'_encloseme','1'),
  2565. (79266,13602,'index','4130'),
  2566. (79267,13602,'_product_image_gallery',''),
  2567. (79268,13603,'_pingme','1'),
  2568. (79269,13603,'_encloseme','1'),
  2569. (79270,13603,'index','4140'),
  2570. (79271,13603,'_product_image_gallery',''),
  2571. (79272,13604,'_pingme','1'),
  2572. (79273,13604,'_encloseme','1'),
  2573. (79274,13604,'index','4150'),
  2574. (79275,13604,'_product_image_gallery',''),
  2575. (79276,13605,'_pingme','1'),
  2576. (79277,13605,'_encloseme','1'),
  2577. (79278,13605,'index','4160'),
  2578. (79279,13605,'_product_image_gallery',''),
  2579. (79280,13606,'_pingme','1'),
  2580. (79281,13606,'_encloseme','1'),
  2581. (79282,13606,'index','4170'),
  2582. (79283,13606,'_product_image_gallery',''),
  2583. (79284,13607,'_pingme','1'),
  2584. (79285,13607,'_encloseme','1'),
  2585. (79286,13607,'index','4180'),
  2586. (79287,13607,'_product_image_gallery',''),
  2587. (79288,13608,'_pingme','1'),
  2588. (79289,13608,'_encloseme','1'),
  2589. (79290,13608,'index','4190'),
  2590. (79291,13608,'_product_image_gallery',''),
  2591. (79292,13609,'_pingme','1'),
  2592. (79293,13609,'_encloseme','1'),
  2593. (79294,13609,'index','4200'),
  2594. (79295,13609,'_product_image_gallery',''),
  2595. (79296,13610,'_pingme','1'),
  2596. (79297,13610,'_encloseme','1'),
  2597. (79298,13610,'index','4210'),
  2598. (79299,13610,'_product_image_gallery',''),
  2599. (79300,13611,'_pingme','1'),
  2600. (79301,13611,'_encloseme','1'),
  2601. (79302,13611,'index','4220'),
  2602. (79303,13611,'_product_image_gallery',''),
  2603. (79304,13612,'_pingme','1'),
  2604. (79305,13612,'_encloseme','1'),
  2605. (79306,13612,'index','4230'),
  2606. (79307,13612,'_product_image_gallery',''),
  2607. (79308,13613,'_pingme','1'),
  2608. (79309,13613,'_encloseme','1'),
  2609. (79310,13613,'index','4240'),
  2610. (79311,13613,'_product_image_gallery',''),
  2611. (79312,13614,'_pingme','1'),
  2612. (79313,13614,'_encloseme','1'),
  2613. (79314,13614,'index','4250'),
  2614. (79315,13614,'_product_image_gallery',''),
  2615. (79316,13615,'_pingme','1'),
  2616. (79317,13615,'_encloseme','1'),
  2617. (79318,13615,'index','4260'),
  2618. (79319,13615,'_product_image_gallery',''),
  2619. (79320,13616,'_pingme','1'),
  2620. (79321,13616,'_encloseme','1'),
  2621. (79322,13616,'index','4270'),
  2622. (79323,13616,'_product_image_gallery',''),
  2623. (79324,13617,'_pingme','1'),
  2624. (79325,13617,'_encloseme','1'),
  2625. (79326,13617,'index','4280'),
  2626. (79327,13617,'_product_image_gallery',''),
  2627. (79328,13618,'_pingme','1'),
  2628. (79329,13618,'_encloseme','1'),
  2629. (79330,13618,'index','4290'),
  2630. (79331,13618,'_product_image_gallery',''),
  2631. (79332,13619,'_pingme','1'),
  2632. (79333,13619,'_encloseme','1'),
  2633. (79334,13619,'index','4300'),
  2634. (79335,13619,'_product_image_gallery',''),
  2635. (79336,13620,'_pingme','1'),
  2636. (79337,13620,'_encloseme','1'),
  2637. (79338,13620,'index','4310'),
  2638. (79339,13620,'_product_image_gallery',''),
  2639. (79340,13621,'_pingme','1'),
  2640. (79341,13621,'_encloseme','1'),
  2641. (79342,13621,'index','4320'),
  2642. (79343,13621,'_product_image_gallery',''),
  2643. (79344,13622,'_pingme','1'),
  2644. (79345,13622,'_encloseme','1'),
  2645. (79346,13622,'index','4330'),
  2646. (79347,13622,'_product_image_gallery',''),
  2647. (79348,13623,'_pingme','1'),
  2648. (79349,13623,'_encloseme','1'),
  2649. (79350,13623,'index','4340'),
  2650. (79351,13623,'_product_image_gallery',''),
  2651. (79352,13624,'_pingme','1'),
  2652. (79353,13624,'_encloseme','1'),
  2653. (79354,13624,'index','4350'),
  2654. (79355,13624,'_product_image_gallery',''),
  2655. (79356,13625,'_pingme','1'),
  2656. (79357,13625,'_encloseme','1'),
  2657. (79358,13625,'index','4360'),
  2658. (79359,13625,'_product_image_gallery',''),
  2659. (79360,13626,'_pingme','1'),
  2660. (79361,13626,'_encloseme','1'),
  2661. (79362,13626,'index','4370'),
  2662. (79363,13626,'_product_image_gallery',''),
  2663. (79364,13627,'_pingme','1'),
  2664. (79365,13627,'_encloseme','1'),
  2665. (79366,13627,'index','4380'),
  2666. (79367,13627,'_product_image_gallery',''),
  2667. (79368,13628,'_pingme','1'),
  2668. (79369,13628,'_encloseme','1'),
  2669. (79370,13628,'index','4390'),
  2670. (79371,13628,'_product_image_gallery',''),
  2671. (79372,13629,'_pingme','1'),
  2672. (79373,13629,'_encloseme','1'),
  2673. (79374,13629,'index','4400'),
  2674. (79375,13629,'_product_image_gallery',''),
  2675. (79376,13630,'_pingme','1'),
  2676. (79377,13630,'_encloseme','1'),
  2677. (79378,13630,'index','4410'),
  2678. (79379,13630,'_product_image_gallery',''),
  2679. (79380,13631,'_pingme','1'),
  2680. (79381,13631,'_encloseme','1'),
  2681. (79382,13631,'index','4420'),
  2682. (79383,13631,'_product_image_gallery',''),
  2683. (79384,13632,'_pingme','1'),
  2684. (79385,13632,'_encloseme','1'),
  2685. (79386,13632,'index','4430'),
  2686. (79387,13632,'_product_image_gallery',''),
  2687. (79388,13633,'_pingme','1'),
  2688. (79389,13633,'_encloseme','1'),
  2689. (79390,13633,'index','4440'),
  2690. (79391,13633,'_product_image_gallery',''),
  2691. (79392,13634,'_pingme','1'),
  2692. (79393,13634,'_encloseme','1'),
  2693. (79394,13634,'index','4450'),
  2694. (79395,13634,'_product_image_gallery',''),
  2695. (79396,13635,'_pingme','1'),
  2696. (79397,13635,'_encloseme','1'),
  2697. (79398,13635,'index','4460'),
  2698. (79399,13635,'_product_image_gallery',''),
  2699. (79400,13636,'_pingme','1'),
  2700. (79401,13636,'_encloseme','1'),
  2701. (79402,13636,'index','4470'),
  2702. (79403,13636,'_product_image_gallery',''),
  2703. (79404,13637,'_pingme','1'),
  2704. (79405,13637,'_encloseme','1'),
  2705. (79406,13637,'index','4480'),
  2706. (79407,13637,'_product_image_gallery',''),
  2707. (79408,13638,'_pingme','1'),
  2708. (79409,13638,'_encloseme','1'),
  2709. (79410,13638,'index','4490'),
  2710. (79411,13638,'_product_image_gallery',''),
  2711. (79412,13639,'_pingme','1'),
  2712. (79413,13639,'_encloseme','1'),
  2713. (79414,13639,'index','4500'),
  2714. (79415,13639,'_product_image_gallery',''),
  2715. (79416,13640,'_pingme','1'),
  2716. (79417,13640,'_encloseme','1'),
  2717. (79418,13640,'index','4510'),
  2718. (79419,13640,'_product_image_gallery',''),
  2719. (79420,13641,'_pingme','1'),
  2720. (79421,13641,'_encloseme','1'),
  2721. (79422,13641,'index','4520'),
  2722. (79423,13641,'_product_image_gallery',''),
  2723. (79424,13642,'_pingme','1'),
  2724. (79425,13642,'_encloseme','1'),
  2725. (79426,13642,'index','4530'),
  2726. (79427,13642,'_product_image_gallery',''),
  2727. (79428,13643,'_pingme','1'),
  2728. (79429,13643,'_encloseme','1'),
  2729. (79430,13643,'index','4540'),
  2730. (79431,13643,'_product_image_gallery',''),
  2731. (79432,13644,'_pingme','1'),
  2732. (79433,13644,'_encloseme','1'),
  2733. (79434,13644,'index','4550'),
  2734. (79435,13644,'_product_image_gallery',''),
  2735. (79436,13645,'_pingme','1'),
  2736. (79437,13645,'_encloseme','1'),
  2737. (79438,13645,'index','4560'),
  2738. (79439,13645,'_product_image_gallery',''),
  2739. (79440,13646,'_pingme','1'),
  2740. (79441,13646,'_encloseme','1'),
  2741. (79442,13646,'index','4570'),
  2742. (79443,13646,'_product_image_gallery',''),
  2743. (79444,13647,'_pingme','1'),
  2744. (79445,13647,'_encloseme','1'),
  2745. (79446,13647,'index','4580'),
  2746. (79447,13647,'_product_image_gallery',''),
  2747. (79448,13648,'_pingme','1'),
  2748. (79449,13648,'_encloseme','1'),
  2749. (79450,13648,'index','4590'),
  2750. (79451,13648,'_product_image_gallery',''),
  2751. (79452,13649,'_pingme','1'),
  2752. (79453,13649,'_encloseme','1'),
  2753. (79454,13649,'index','4600'),
  2754. (79455,13649,'_product_image_gallery',''),
  2755. (79456,13650,'_pingme','1'),
  2756. (79457,13650,'_encloseme','1'),
  2757. (79458,13650,'index','4610'),
  2758. (79459,13650,'_product_image_gallery',''),
  2759. (79460,13651,'_pingme','1'),
  2760. (79461,13651,'_encloseme','1'),
  2761. (79462,13651,'index','4620'),
  2762. (79463,13651,'_product_image_gallery',''),
  2763. (79464,13652,'_pingme','1'),
  2764. (79465,13652,'_encloseme','1'),
  2765. (79466,13652,'index','4630'),
  2766. (79467,13652,'_product_image_gallery',''),
  2767. (79468,13653,'_pingme','1'),
  2768. (79469,13653,'_encloseme','1'),
  2769. (79470,13653,'index','4640'),
  2770. (79471,13653,'_product_image_gallery',''),
  2771. (79472,13654,'_pingme','1'),
  2772. (79473,13654,'_encloseme','1'),
  2773. (79474,13654,'index','4650'),
  2774. (79475,13654,'_product_image_gallery',''),
  2775. (79476,13655,'_pingme','1'),
  2776. (79477,13655,'_encloseme','1'),
  2777. (79478,13655,'index','4660'),
  2778. (79479,13655,'_product_image_gallery',''),
  2779. (79480,13656,'_pingme','1'),
  2780. (79481,13656,'_encloseme','1'),
  2781. (79482,13656,'index','4670'),
  2782. (79483,13656,'_product_image_gallery',''),
  2783. (79484,13657,'_pingme','1'),
  2784. (79485,13657,'_encloseme','1'),
  2785. (79486,13657,'index','4680'),
  2786. (79487,13657,'_product_image_gallery',''),
  2787. (79488,13658,'_pingme','1'),
  2788. (79489,13658,'_encloseme','1'),
  2789. (79490,13658,'index','4690'),
  2790. (79491,13658,'_product_image_gallery',''),
  2791. (79492,13659,'_pingme','1'),
  2792. (79493,13659,'_encloseme','1'),
  2793. (79494,13659,'index','4700'),
  2794. (79495,13659,'_product_image_gallery',''),
  2795. (79496,13660,'_pingme','1'),
  2796. (79497,13660,'_encloseme','1'),
  2797. (79498,13660,'index','4710'),
  2798. (79499,13660,'_product_image_gallery',''),
  2799. (79500,13661,'_pingme','1'),
  2800. (79501,13661,'_encloseme','1'),
  2801. (79502,13661,'index','4720'),
  2802. (79503,13661,'_product_image_gallery',''),
  2803. (79504,13662,'_pingme','1'),
  2804. (79505,13662,'_encloseme','1'),
  2805. (79506,13662,'index','4730'),
  2806. (79507,13662,'_product_image_gallery',''),
  2807. (79508,13663,'_pingme','1'),
  2808. (79509,13663,'_encloseme','1'),
  2809. (79510,13663,'index','4740'),
  2810. (79511,13663,'_product_image_gallery',''),
  2811. (79512,13664,'_pingme','1'),
  2812. (79513,13664,'_encloseme','1'),
  2813. (79514,13664,'index','4750'),
  2814. (79515,13664,'_product_image_gallery',''),
  2815. (79516,13665,'_pingme','1'),
  2816. (79517,13665,'_encloseme','1'),
  2817. (79518,13665,'index','4760'),
  2818. (79519,13665,'_product_image_gallery',''),
  2819. (79520,13666,'_pingme','1'),
  2820. (79521,13666,'_encloseme','1'),
  2821. (79522,13666,'index','4770'),
  2822. (79523,13666,'_product_image_gallery',''),
  2823. (79524,13667,'_pingme','1'),
  2824. (79525,13667,'_encloseme','1'),
  2825. (79526,13667,'index','4780'),
  2826. (79527,13667,'_product_image_gallery',''),
  2827. (79528,13668,'_pingme','1'),
  2828. (79529,13668,'_encloseme','1'),
  2829. (79530,13668,'index','4790'),
  2830. (79531,13668,'_product_image_gallery',''),
  2831. (79532,13669,'_pingme','1'),
  2832. (79533,13669,'_encloseme','1'),
  2833. (79534,13669,'index','4800'),
  2834. (79535,13669,'_product_image_gallery',''),
  2835. (79536,13670,'_pingme','1'),
  2836. (79537,13670,'_encloseme','1'),
  2837. (79538,13670,'index','4810'),
  2838. (79539,13670,'_product_image_gallery',''),
  2839. (79540,13671,'_pingme','1'),
  2840. (79541,13671,'_encloseme','1'),
  2841. (79542,13671,'index','4820'),
  2842. (79543,13671,'_product_image_gallery',''),
  2843. (79544,13672,'_pingme','1'),
  2844. (79545,13672,'_encloseme','1'),
  2845. (79546,13672,'index','4830'),
  2846. (79547,13672,'_product_image_gallery',''),
  2847. (79548,13673,'_pingme','1'),
  2848. (79549,13673,'_encloseme','1'),
  2849. (79550,13673,'index','4840'),
  2850. (79551,13673,'_product_image_gallery',''),
  2851. (79552,13674,'_pingme','1'),
  2852. (79553,13674,'_encloseme','1'),
  2853. (79554,13674,'index','4850'),
  2854. (79555,13674,'_product_image_gallery',''),
  2855. (79556,13675,'_pingme','1'),
  2856. (79557,13675,'_encloseme','1'),
  2857. (79558,13675,'index','4860'),
  2858. (79559,13675,'_product_image_gallery',''),
  2859. (79560,13676,'_pingme','1'),
  2860. (79561,13676,'_encloseme','1'),
  2861. (79562,13676,'index','4870'),
  2862. (79563,13676,'_product_image_gallery',''),
  2863. (79564,13677,'_pingme','1'),
  2864. (79565,13677,'_encloseme','1'),
  2865. (79566,13677,'index','4880'),
  2866. (79567,13677,'_product_image_gallery',''),
  2867. (79568,13678,'_pingme','1'),
  2868. (79569,13678,'_encloseme','1'),
  2869. (79570,13678,'index','4890'),
  2870. (79571,13678,'_product_image_gallery',''),
  2871. (79572,13679,'_pingme','1'),
  2872. (79573,13679,'_encloseme','1'),
  2873. (79574,13679,'index','4900'),
  2874. (79575,13679,'_product_image_gallery',''),
  2875. (79576,13680,'_pingme','1'),
  2876. (79577,13680,'_encloseme','1'),
  2877. (79578,13680,'index','4910'),
  2878. (79579,13680,'_product_image_gallery',''),
  2879. (79580,13681,'_pingme','1'),
  2880. (79581,13681,'_encloseme','1'),
  2881. (79582,13681,'index','4920'),
  2882. (79583,13681,'_product_image_gallery',''),
  2883. (79584,13682,'_pingme','1'),
  2884. (79585,13682,'_encloseme','1'),
  2885. (79586,13682,'index','4930'),
  2886. (79587,13682,'_product_image_gallery',''),
  2887. (79588,13683,'_pingme','1'),
  2888. (79589,13683,'_encloseme','1'),
  2889. (79590,13683,'index','4940'),
  2890. (79591,13683,'_product_image_gallery',''),
  2891. (79592,13684,'_pingme','1'),
  2892. (79593,13684,'_encloseme','1'),
  2893. (79594,13684,'index','4950'),
  2894. (79595,13684,'_product_image_gallery',''),
  2895. (79596,13685,'_pingme','1'),
  2896. (79597,13685,'_encloseme','1'),
  2897. (79598,13685,'index','4960'),
  2898. (79599,13685,'_product_image_gallery',''),
  2899. (79600,13686,'_pingme','1'),
  2900. (79601,13686,'_encloseme','1'),
  2901. (79602,13686,'index','4970'),
  2902. (79603,13686,'_product_image_gallery',''),
  2903. (79604,13687,'_pingme','1'),
  2904. (79605,13687,'_encloseme','1'),
  2905. (79606,13687,'index','4980'),
  2906. (79607,13687,'_product_image_gallery',''),
  2907. (79608,13688,'_pingme','1'),
  2908. (79609,13688,'_encloseme','1'),
  2909. (79610,13688,'index','4990'),
  2910. (79611,13688,'_product_image_gallery',''),
  2911. (79612,13689,'_pingme','1'),
  2912. (79613,13689,'_encloseme','1'),
  2913. (79614,13689,'index','5000'),
  2914. (79615,13689,'_product_image_gallery',''),
  2915. (79616,13690,'_pingme','1'),
  2916. (79617,13690,'_encloseme','1'),
  2917. (79618,13690,'index','5010'),
  2918. (79619,13690,'_product_image_gallery',''),
  2919. (79620,13691,'_pingme','1'),
  2920. (79621,13691,'_encloseme','1'),
  2921. (79622,13691,'index','5020'),
  2922. (79623,13691,'_product_image_gallery',''),
  2923. (79624,13692,'_pingme','1'),
  2924. (79625,13692,'_encloseme','1'),
  2925. (79626,13692,'index','5030'),
  2926. (79627,13692,'_product_image_gallery',''),
  2927. (79628,13693,'_pingme','1'),
  2928. (79629,13693,'_encloseme','1'),
  2929. (79630,13693,'index','5040'),
  2930. (79631,13693,'_product_image_gallery',''),
  2931. (79632,13694,'_pingme','1'),
  2932. (79633,13694,'_encloseme','1'),
  2933. (79634,13694,'index','5050'),
  2934. (79635,13694,'_product_image_gallery',''),
  2935. (79636,13695,'_pingme','1'),
  2936. (79637,13695,'_encloseme','1'),
  2937. (79638,13695,'index','5060'),
  2938. (79639,13695,'_product_image_gallery',''),
  2939. (79640,13696,'_pingme','1'),
  2940. (79641,13696,'_encloseme','1'),
  2941. (79642,13696,'index','5070'),
  2942. (79643,13696,'_product_image_gallery',''),
  2943. (79644,13697,'_pingme','1'),
  2944. (79645,13697,'_encloseme','1'),
  2945. (79646,13697,'index','5080'),
  2946. (79647,13697,'_product_image_gallery',''),
  2947. (79648,13698,'_pingme','1'),
  2948. (79649,13698,'_encloseme','1'),
  2949. (79650,13698,'index','5090'),
  2950. (79651,13698,'_product_image_gallery',''),
  2951. (79652,13699,'_pingme','1'),
  2952. (79653,13699,'_encloseme','1'),
  2953. (79654,13699,'index','5100'),
  2954. (79655,13699,'_product_image_gallery',''),
  2955. (79656,13700,'_pingme','1'),
  2956. (79657,13700,'_encloseme','1'),
  2957. (79658,13700,'index','5110'),
  2958. (79659,13700,'_product_image_gallery',''),
  2959. (79660,13701,'_pingme','1'),
  2960. (79661,13701,'_encloseme','1'),
  2961. (79662,13701,'index','5120'),
  2962. (79663,13701,'_product_image_gallery',''),
  2963. (79664,13702,'_pingme','1'),
  2964. (79665,13702,'_encloseme','1'),
  2965. (79666,13702,'index','5130'),
  2966. (79667,13702,'_product_image_gallery',''),
  2967. (79668,13703,'_pingme','1'),
  2968. (79669,13703,'_encloseme','1'),
  2969. (79670,13703,'index','5140'),
  2970. (79671,13703,'_product_image_gallery',''),
  2971. (79672,13704,'_pingme','1'),
  2972. (79673,13704,'_encloseme','1'),
  2973. (79674,13704,'index','5150'),
  2974. (79675,13704,'_product_image_gallery',''),
  2975. (79676,13705,'_pingme','1'),
  2976. (79677,13705,'_encloseme','1'),
  2977. (79678,13705,'index','5160'),
  2978. (79679,13705,'_product_image_gallery',''),
  2979. (79680,13706,'_pingme','1'),
  2980. (79681,13706,'_encloseme','1'),
  2981. (79682,13706,'index','5170'),
  2982. (79683,13706,'_product_image_gallery',''),
  2983. (79684,13707,'_pingme','1'),
  2984. (79685,13707,'_encloseme','1'),
  2985. (79686,13707,'index','5180'),
  2986. (79687,13707,'_product_image_gallery',''),
  2987. (79688,13708,'_pingme','1'),
  2988. (79689,13708,'_encloseme','1'),
  2989. (79690,13708,'index','5190'),
  2990. (79691,13708,'_product_image_gallery',''),
  2991. (79692,13709,'_pingme','1'),
  2992. (79693,13709,'_encloseme','1'),
  2993. (79694,13709,'index','5200'),
  2994. (79695,13709,'_product_image_gallery',''),
  2995. (79696,13710,'_pingme','1'),
  2996. (79697,13710,'_encloseme','1'),
  2997. (79698,13710,'index','5210'),
  2998. (79699,13710,'_product_image_gallery',''),
  2999. (79700,13711,'_pingme','1'),
  3000. (79701,13711,'_encloseme','1'),
  3001. (79702,13711,'index','5220'),
  3002. (79703,13711,'_product_image_gallery',''),
  3003. (79704,13712,'_pingme','1'),
  3004. (79705,13712,'_encloseme','1'),
  3005. (79706,13712,'index','5230'),
  3006. (79707,13712,'_product_image_gallery',''),
  3007. (79708,13713,'_pingme','1'),
  3008. (79709,13713,'_encloseme','1'),
  3009. (79710,13713,'index','5240'),
  3010. (79711,13713,'_product_image_gallery',''),
  3011. (79712,13714,'_pingme','1'),
  3012. (79713,13714,'_encloseme','1'),
  3013. (79714,13714,'index','5250'),
  3014. (79715,13714,'_product_image_gallery',''),
  3015. (79716,13715,'_pingme','1'),
  3016. (79717,13715,'_encloseme','1'),
  3017. (79718,13715,'index','5260'),
  3018. (79719,13715,'_product_image_gallery',''),
  3019. (79720,13716,'_pingme','1'),
  3020. (79721,13716,'_encloseme','1'),
  3021. (79722,13716,'index','5270'),
  3022. (79723,13716,'_product_image_gallery',''),
  3023. (79724,13717,'_pingme','1'),
  3024. (79725,13717,'_encloseme','1'),
  3025. (79726,13717,'index','5280'),
  3026. (79727,13717,'_product_image_gallery',''),
  3027. (79728,13718,'_pingme','1'),
  3028. (79729,13718,'_encloseme','1'),
  3029. (79730,13718,'index','5290'),
  3030. (79731,13718,'_product_image_gallery',''),
  3031. (79732,13719,'_pingme','1'),
  3032. (79733,13719,'_encloseme','1'),
  3033. (79734,13719,'index','5300'),
  3034. (79735,13719,'_product_image_gallery',''),
  3035. (79736,13720,'_pingme','1'),
  3036. (79737,13720,'_encloseme','1'),
  3037. (79738,13720,'index','5310'),
  3038. (79739,13720,'_product_image_gallery',''),
  3039. (79740,13721,'_pingme','1'),
  3040. (79741,13721,'_encloseme','1'),
  3041. (79742,13721,'index','5320'),
  3042. (79743,13721,'_product_image_gallery',''),
  3043. (79744,13722,'_pingme','1'),
  3044. (79745,13722,'_encloseme','1'),
  3045. (79746,13722,'index','5330'),
  3046. (79747,13722,'_product_image_gallery',''),
  3047. (79748,13723,'_pingme','1'),
  3048. (79749,13723,'_encloseme','1'),
  3049. (79750,13723,'index','5340'),
  3050. (79751,13723,'_product_image_gallery',''),
  3051. (79752,13724,'_pingme','1'),
  3052. (79753,13724,'_encloseme','1'),
  3053. (79754,13724,'index','5350'),
  3054. (79755,13724,'_product_image_gallery',''),
  3055. (79756,13725,'_pingme','1'),
  3056. (79757,13725,'_encloseme','1'),
  3057. (79758,13725,'index','5360'),
  3058. (79759,13725,'_product_image_gallery',''),
  3059. (79760,13726,'_pingme','1'),
  3060. (79761,13726,'_encloseme','1'),
  3061. (79762,13726,'index','5370'),
  3062. (79763,13726,'_product_image_gallery',''),
  3063. (79764,13727,'_pingme','1'),
  3064. (79765,13727,'_encloseme','1'),
  3065. (79766,13727,'index','5380'),
  3066. (79767,13727,'_product_image_gallery',''),
  3067. (79768,13728,'_pingme','1'),
  3068. (79769,13728,'_encloseme','1'),
  3069. (79770,13728,'index','5390'),
  3070. (79771,13728,'_product_image_gallery',''),
  3071. (79772,13729,'_pingme','1'),
  3072. (79773,13729,'_encloseme','1'),
  3073. (79774,13729,'index','5400'),
  3074. (79775,13729,'_product_image_gallery',''),
  3075. (79776,13730,'_pingme','1'),
  3076. (79777,13730,'_encloseme','1'),
  3077. (79778,13730,'index','5410'),
  3078. (79779,13730,'_product_image_gallery',''),
  3079. (79780,13731,'_pingme','1'),
  3080. (79781,13731,'_encloseme','1'),
  3081. (79782,13731,'index','5420'),
  3082. (79783,13731,'_product_image_gallery',''),
  3083. (79784,13732,'_pingme','1'),
  3084. (79785,13732,'_encloseme','1'),
  3085. (79786,13732,'index','5430'),
  3086. (79787,13732,'_product_image_gallery',''),
  3087. (79788,13733,'_pingme','1'),
  3088. (79789,13733,'_encloseme','1'),
  3089. (79790,13733,'index','5440'),
  3090. (79791,13733,'_product_image_gallery',''),
  3091. (79792,13734,'_pingme','1'),
  3092. (79793,13734,'_encloseme','1'),
  3093. (79794,13734,'index','5450'),
  3094. (79795,13734,'_product_image_gallery',''),
  3095. (79796,13735,'_pingme','1'),
  3096. (79797,13735,'_encloseme','1'),
  3097. (79798,13735,'index','5460'),
  3098. (79799,13735,'_product_image_gallery',''),
  3099. (79800,13736,'_pingme','1'),
  3100. (79801,13736,'_encloseme','1'),
  3101. (79802,13736,'index','5470'),
  3102. (79803,13736,'_product_image_gallery',''),
  3103. (79804,13737,'_pingme','1'),
  3104. (79805,13737,'_encloseme','1'),
  3105. (79806,13737,'index','5480'),
  3106. (79807,13737,'_product_image_gallery',''),
  3107. (79808,13738,'_pingme','1'),
  3108. (79809,13738,'_encloseme','1'),
  3109. (79810,13738,'index','5490'),
  3110. (79811,13738,'_product_image_gallery',''),
  3111. (79812,13739,'_pingme','1'),
  3112. (79813,13739,'_encloseme','1'),
  3113. (79814,13739,'index','5500'),
  3114. (79815,13739,'_product_image_gallery',''),
  3115. (79816,13740,'_pingme','1'),
  3116. (79817,13740,'_encloseme','1'),
  3117. (79818,13740,'index','5510'),
  3118. (79819,13740,'_product_image_gallery',''),
  3119. (79820,13741,'_pingme','1'),
  3120. (79821,13741,'_encloseme','1'),
  3121. (79822,13741,'index','5520'),
  3122. (79823,13741,'_product_image_gallery',''),
  3123. (79824,13742,'_pingme','1'),
  3124. (79825,13742,'_encloseme','1'),
  3125. (79826,13742,'index','5530'),
  3126. (79827,13742,'_product_image_gallery',''),
  3127. (79828,13743,'_pingme','1'),
  3128. (79829,13743,'_encloseme','1'),
  3129. (79830,13743,'index','5540'),
  3130. (79831,13743,'_product_image_gallery',''),
  3131. (79832,13744,'_pingme','1'),
  3132. (79833,13744,'_encloseme','1'),
  3133. (79834,13744,'index','5550'),
  3134. (79835,13744,'_product_image_gallery',''),
  3135. (79836,13745,'_pingme','1'),
  3136. (79837,13745,'_encloseme','1'),
  3137. (79838,13745,'index','5560'),
  3138. (79839,13745,'_product_image_gallery',''),
  3139. (79840,13746,'_pingme','1'),
  3140. (79841,13746,'_encloseme','1'),
  3141. (79842,13746,'index','5570'),
  3142. (79843,13746,'_product_image_gallery',''),
  3143. (79844,13747,'_pingme','1'),
  3144. (79845,13747,'_encloseme','1'),
  3145. (79846,13747,'index','5580'),
  3146. (79847,13747,'_product_image_gallery',''),
  3147. (79848,13748,'_pingme','1'),
  3148. (79849,13748,'_encloseme','1'),
  3149. (79850,13748,'index','5590'),
  3150. (79851,13748,'_product_image_gallery',''),
  3151. (79852,13749,'_pingme','1'),
  3152. (79853,13749,'_encloseme','1'),
  3153. (79854,13749,'index','5600'),
  3154. (79855,13749,'_product_image_gallery',''),
  3155. (79856,13750,'_pingme','1'),
  3156. (79857,13750,'_encloseme','1'),
  3157. (79858,13750,'index','5610'),
  3158. (79859,13750,'_product_image_gallery',''),
  3159. (79860,13751,'_pingme','1'),
  3160. (79861,13751,'_encloseme','1'),
  3161. (79862,13751,'index','5620'),
  3162. (79863,13751,'_product_image_gallery',''),
  3163. (79864,13752,'_pingme','1'),
  3164. (79865,13752,'_encloseme','1'),
  3165. (79866,13752,'index','5630'),
  3166. (79867,13752,'_product_image_gallery',''),
  3167. (79868,13753,'_pingme','1'),
  3168. (79869,13753,'_encloseme','1'),
  3169. (79870,13753,'index','5640'),
  3170. (79871,13753,'_product_image_gallery',''),
  3171. (79872,13754,'_pingme','1'),
  3172. (79873,13754,'_encloseme','1'),
  3173. (79874,13754,'index','5650'),
  3174. (79875,13754,'_product_image_gallery',''),
  3175. (79876,13755,'_pingme','1'),
  3176. (79877,13755,'_encloseme','1'),
  3177. (79878,13755,'index','5660'),
  3178. (79879,13755,'_product_image_gallery',''),
  3179. (79880,13756,'_pingme','1'),
  3180. (79881,13756,'_encloseme','1'),
  3181. (79882,13756,'index','5670'),
  3182. (79883,13756,'_product_image_gallery',''),
  3183. (79884,13757,'_pingme','1'),
  3184. (79885,13757,'_encloseme','1'),
  3185. (79886,13757,'index','5680'),
  3186. (79887,13757,'_product_image_gallery',''),
  3187. (79888,13758,'_pingme','1'),
  3188. (79889,13758,'_encloseme','1'),
  3189. (79890,13758,'index','5690'),
  3190. (79891,13758,'_product_image_gallery',''),
  3191. (79892,13759,'_pingme','1'),
  3192. (79893,13759,'_encloseme','1'),
  3193. (79894,13759,'index','5700'),
  3194. (79895,13759,'_product_image_gallery',''),
  3195. (79896,13760,'_pingme','1'),
  3196. (79897,13760,'_encloseme','1'),
  3197. (79898,13760,'index','5710'),
  3198. (79899,13760,'_product_image_gallery',''),
  3199. (79900,13761,'_pingme','1'),
  3200. (79901,13761,'_encloseme','1'),
  3201. (79902,13761,'index','5720'),
  3202. (79903,13761,'_product_image_gallery',''),
  3203. (79904,13762,'_pingme','1'),
  3204. (79905,13762,'_encloseme','1'),
  3205. (79906,13762,'index','5730'),
  3206. (79907,13762,'_product_image_gallery',''),
  3207. (79908,13763,'_pingme','1'),
  3208. (79909,13763,'_encloseme','1'),
  3209. (79910,13763,'index','5740'),
  3210. (79911,13763,'_product_image_gallery',''),
  3211. (79912,13764,'_pingme','1'),
  3212. (79913,13764,'_encloseme','1'),
  3213. (79914,13764,'index','5750'),
  3214. (79915,13764,'_product_image_gallery',''),
  3215. (79916,13765,'_pingme','1'),
  3216. (79917,13765,'_encloseme','1'),
  3217. (79918,13765,'index','5760'),
  3218. (79919,13765,'_product_image_gallery',''),
  3219. (79920,13766,'_pingme','1'),
  3220. (79921,13766,'_encloseme','1'),
  3221. (79922,13766,'index','5770'),
  3222. (79923,13766,'_product_image_gallery',''),
  3223. (79924,13767,'_pingme','1'),
  3224. (79925,13767,'_encloseme','1'),
  3225. (79926,13767,'index','5780'),
  3226. (79927,13767,'_product_image_gallery',''),
  3227. (79928,13768,'_pingme','1'),
  3228. (79929,13768,'_encloseme','1'),
  3229. (79930,13768,'index','5790'),
  3230. (79931,13768,'_product_image_gallery',''),
  3231. (79932,13769,'_pingme','1'),
  3232. (79933,13769,'_encloseme','1'),
  3233. (79934,13769,'index','5800'),
  3234. (79935,13769,'_product_image_gallery',''),
  3235. (79936,13770,'_pingme','1'),
  3236. (79937,13770,'_encloseme','1'),
  3237. (79938,13770,'index','5810'),
  3238. (79939,13770,'_product_image_gallery',''),
  3239. (79940,13771,'_pingme','1'),
  3240. (79941,13771,'_encloseme','1'),
  3241. (79942,13771,'index','5820'),
  3242. (79943,13771,'_product_image_gallery',''),
  3243. (79944,13772,'_pingme','1'),
  3244. (79945,13772,'_encloseme','1'),
  3245. (79946,13772,'index','5830'),
  3246. (79947,13772,'_product_image_gallery',''),
  3247. (79948,13773,'_pingme','1'),
  3248. (79949,13773,'_encloseme','1'),
  3249. (79950,13773,'index','5840'),
  3250. (79951,13773,'_product_image_gallery',''),
  3251. (79952,13774,'_pingme','1'),
  3252. (79953,13774,'_encloseme','1'),
  3253. (79954,13774,'index','5850'),
  3254. (79955,13774,'_product_image_gallery',''),
  3255. (79956,13775,'_pingme','1'),
  3256. (79957,13775,'_encloseme','1'),
  3257. (79958,13775,'index','5860'),
  3258. (79959,13775,'_product_image_gallery',''),
  3259. (79960,13776,'_pingme','1'),
  3260. (79961,13776,'_encloseme','1'),
  3261. (79962,13776,'index','5870'),
  3262. (79963,13776,'_product_image_gallery',''),
  3263. (79964,13777,'_pingme','1'),
  3264. (79965,13777,'_encloseme','1'),
  3265. (79966,13777,'index','5880'),
  3266. (79967,13777,'_product_image_gallery',''),
  3267. (79968,13778,'_pingme','1'),
  3268. (79969,13778,'_encloseme','1'),
  3269. (79970,13778,'index','5890'),
  3270. (79971,13778,'_product_image_gallery',''),
  3271. (79972,13779,'_pingme','1'),
  3272. (79973,13779,'_encloseme','1'),
  3273. (79974,13779,'index','5900'),
  3274. (79975,13779,'_product_image_gallery',''),
  3275. (79976,13780,'_pingme','1'),
  3276. (79977,13780,'_encloseme','1'),
  3277. (79978,13780,'index','5910'),
  3278. (79979,13780,'_product_image_gallery',''),
  3279. (79980,13781,'_pingme','1'),
  3280. (79981,13781,'_encloseme','1'),
  3281. (79982,13781,'index','5920'),
  3282. (79983,13781,'_product_image_gallery',''),
  3283. (79984,13782,'_pingme','1'),
  3284. (79985,13782,'_encloseme','1'),
  3285. (79986,13782,'index','5930'),
  3286. (79987,13782,'_product_image_gallery',''),
  3287. (79988,13783,'_pingme','1'),
  3288. (79989,13783,'_encloseme','1'),
  3289. (79990,13783,'index','5940'),
  3290. (79991,13783,'_product_image_gallery',''),
  3291. (79992,13784,'_pingme','1'),
  3292. (79993,13784,'_encloseme','1'),
  3293. (79994,13784,'index','5950'),
  3294. (79995,13784,'_product_image_gallery',''),
  3295. (79996,13785,'_pingme','1'),
  3296. (79997,13785,'_encloseme','1'),
  3297. (79998,13785,'index','5960'),
  3298. (79999,13785,'_product_image_gallery',''),
  3299. (80000,13786,'_pingme','1'),
  3300. (80001,13786,'_encloseme','1'),
  3301. (80002,13786,'index','5970'),
  3302. (80003,13786,'_product_image_gallery',''),
  3303. (80004,13787,'_pingme','1'),
  3304. (80005,13787,'_encloseme','1'),
  3305. (80006,13787,'index','5980'),
  3306. (80007,13787,'_product_image_gallery',''),
  3307. (80008,13788,'_pingme','1'),
  3308. (80009,13788,'_encloseme','1'),
  3309. (80010,13788,'index','5990'),
  3310. (80011,13788,'_product_image_gallery',''),
  3311. (80012,13789,'_pingme','1'),
  3312. (80013,13789,'_encloseme','1'),
  3313. (80014,13789,'index','6000'),
  3314. (80015,13789,'_product_image_gallery',''),
  3315. (80016,13790,'_pingme','1'),
  3316. (80017,13790,'_encloseme','1'),
  3317. (80018,13790,'index','6010'),
  3318. (80019,13790,'_product_image_gallery',''),
  3319. (80020,13791,'_pingme','1'),
  3320. (80021,13791,'_encloseme','1'),
  3321. (80022,13791,'index','6020'),
  3322. (80023,13791,'_product_image_gallery',''),
  3323. (80024,13792,'_pingme','1'),
  3324. (80025,13792,'_encloseme','1'),
  3325. (80026,13792,'index','6030'),
  3326. (80027,13792,'_product_image_gallery',''),
  3327. (80028,13793,'_pingme','1'),
  3328. (80029,13793,'_encloseme','1'),
  3329. (80030,13793,'index','6040'),
  3330. (80031,13793,'_product_image_gallery',''),
  3331. (80032,13794,'_pingme','1'),
  3332. (80033,13794,'_encloseme','1'),
  3333. (80034,13794,'index','6050'),
  3334. (80035,13794,'_product_image_gallery',''),
  3335. (80036,13795,'_pingme','1'),
  3336. (80037,13795,'_encloseme','1'),
  3337. (80038,13795,'index','6060'),
  3338. (80039,13795,'_product_image_gallery',''),
  3339. (80040,13796,'_pingme','1'),
  3340. (80041,13796,'_encloseme','1'),
  3341. (80042,13796,'index','6070'),
  3342. (80043,13796,'_product_image_gallery',''),
  3343. (80044,13797,'_pingme','1'),
  3344. (80045,13797,'_encloseme','1'),
  3345. (80046,13797,'index','6080'),
  3346. (80047,13797,'_product_image_gallery',''),
  3347. (80048,13798,'_pingme','1'),
  3348. (80049,13798,'_encloseme','1'),
  3349. (80050,13798,'index','6090'),
  3350. (80051,13798,'_product_image_gallery',''),
  3351. (80052,13799,'_pingme','1'),
  3352. (80053,13799,'_encloseme','1'),
  3353. (80054,13799,'index','6100'),
  3354. (80055,13799,'_product_image_gallery',''),
  3355. (80056,13800,'_pingme','1'),
  3356. (80057,13800,'_encloseme','1'),
  3357. (80058,13800,'index','6110'),
  3358. (80059,13800,'_product_image_gallery',''),
  3359. (80060,13801,'_pingme','1'),
  3360. (80061,13801,'_encloseme','1'),
  3361. (80062,13801,'index','6120'),
  3362. (80063,13801,'_product_image_gallery',''),
  3363. (80064,13802,'_pingme','1'),
  3364. (80065,13802,'_encloseme','1'),
  3365. (80066,13802,'index','6130'),
  3366. (80067,13802,'_product_image_gallery',''),
  3367. (80068,13803,'_pingme','1'),
  3368. (80069,13803,'_encloseme','1'),
  3369. (80070,13803,'index','6140'),
  3370. (80071,13803,'_product_image_gallery',''),
  3371. (80072,13804,'_pingme','1'),
  3372. (80073,13804,'_encloseme','1'),
  3373. (80074,13804,'index','6150'),
  3374. (80075,13804,'_product_image_gallery',''),
  3375. (80076,13805,'_pingme','1'),
  3376. (80077,13805,'_encloseme','1'),
  3377. (80078,13805,'index','6160'),
  3378. (80079,13805,'_product_image_gallery',''),
  3379. (80080,13806,'_pingme','1'),
  3380. (80081,13806,'_encloseme','1'),
  3381. (80082,13806,'index','6170'),
  3382. (80083,13806,'_product_image_gallery',''),
  3383. (80084,13807,'_pingme','1'),
  3384. (80085,13807,'_encloseme','1'),
  3385. (80086,13807,'index','6180'),
  3386. (80087,13807,'_product_image_gallery',''),
  3387. (80088,13808,'_pingme','1'),
  3388. (80089,13808,'_encloseme','1'),
  3389. (80090,13808,'index','6190'),
  3390. (80091,13808,'_product_image_gallery',''),
  3391. (80092,13809,'_pingme','1'),
  3392. (80093,13809,'_encloseme','1'),
  3393. (80094,13809,'index','6200'),
  3394. (80095,13809,'_product_image_gallery',''),
  3395. (80096,13810,'_pingme','1'),
  3396. (80097,13810,'_encloseme','1'),
  3397. (80098,13810,'index','6210'),
  3398. (80099,13810,'_product_image_gallery',''),
  3399. (80100,13811,'_pingme','1'),
  3400. (80101,13811,'_encloseme','1'),
  3401. (80102,13811,'index','6220'),
  3402. (80103,13811,'_product_image_gallery',''),
  3403. (80104,13812,'_pingme','1'),
  3404. (80105,13812,'_encloseme','1'),
  3405. (80106,13812,'index','6230'),
  3406. (80107,13812,'_product_image_gallery',''),
  3407. (80108,13813,'_pingme','1'),
  3408. (80109,13813,'_encloseme','1'),
  3409. (80110,13813,'index','6240'),
  3410. (80111,13813,'_product_image_gallery',''),
  3411. (80112,13814,'_pingme','1'),
  3412. (80113,13814,'_encloseme','1'),
  3413. (80114,13814,'index','6250'),
  3414. (80115,13814,'_product_image_gallery',''),
  3415. (80116,13815,'_pingme','1'),
  3416. (80117,13815,'_encloseme','1'),
  3417. (80118,13815,'index','6260'),
  3418. (80119,13815,'_product_image_gallery',''),
  3419. (80120,13816,'_pingme','1'),
  3420. (80121,13816,'_encloseme','1'),
  3421. (80122,13816,'index','6270'),
  3422. (80123,13816,'_product_image_gallery',''),
  3423. (80124,13817,'_pingme','1'),
  3424. (80125,13817,'_encloseme','1'),
  3425. (80126,13817,'index','6280'),
  3426. (80127,13817,'_product_image_gallery',''),
  3427. (80128,13818,'_pingme','1'),
  3428. (80129,13818,'_encloseme','1'),
  3429. (80130,13818,'index','6290'),
  3430. (80131,13818,'_product_image_gallery',''),
  3431. (80132,13819,'_pingme','1'),
  3432. (80133,13819,'_encloseme','1'),
  3433. (80134,13819,'index','6300'),
  3434. (80135,13819,'_product_image_gallery',''),
  3435. (80136,13820,'_pingme','1'),
  3436. (80137,13820,'_encloseme','1'),
  3437. (80138,13820,'index','6310'),
  3438. (80139,13820,'_product_image_gallery',''),
  3439. (80140,13821,'_pingme','1'),
  3440. (80141,13821,'_encloseme','1'),
  3441. (80142,13821,'index','6320'),
  3442. (80143,13821,'_product_image_gallery',''),
  3443. (80144,13822,'_pingme','1'),
  3444. (80145,13822,'_encloseme','1'),
  3445. (80146,13822,'index','6330'),
  3446. (80147,13822,'_product_image_gallery',''),
  3447. (80148,13823,'_pingme','1'),
  3448. (80149,13823,'_encloseme','1'),
  3449. (80150,13823,'index','6340'),
  3450. (80151,13823,'_product_image_gallery',''),
  3451. (80152,13824,'_pingme','1'),
  3452. (80153,13824,'_encloseme','1'),
  3453. (80154,13824,'index','6350'),
  3454. (80155,13824,'_product_image_gallery',''),
  3455. (80156,13825,'_pingme','1'),
  3456. (80157,13825,'_encloseme','1'),
  3457. (80158,13825,'index','6360'),
  3458. (80159,13825,'_product_image_gallery',''),
  3459. (80160,13826,'_pingme','1'),
  3460. (80161,13826,'_encloseme','1'),
  3461. (80162,13826,'index','6370'),
  3462. (80163,13826,'_product_image_gallery',''),
  3463. (80164,13827,'_pingme','1'),
  3464. (80165,13827,'_encloseme','1'),
  3465. (80166,13827,'index','6380'),
  3466. (80167,13827,'_product_image_gallery',''),
  3467. (80168,13828,'_pingme','1'),
  3468. (80169,13828,'_encloseme','1'),
  3469. (80170,13828,'index','6390'),
  3470. (80171,13828,'_product_image_gallery',''),
  3471. (80172,13829,'_pingme','1'),
  3472. (80173,13829,'_encloseme','1'),
  3473. (80174,13829,'index','6400'),
  3474. (80175,13829,'_product_image_gallery',''),
  3475. (80176,13830,'_pingme','1'),
  3476. (80177,13830,'_encloseme','1'),
  3477. (80178,13830,'index','6410'),
  3478. (80179,13830,'_product_image_gallery',''),
  3479. (80180,13831,'_pingme','1'),
  3480. (80181,13831,'_encloseme','1'),
  3481. (80182,13831,'index','6420'),
  3482. (80183,13831,'_product_image_gallery',''),
  3483. (80184,13832,'_pingme','1'),
  3484. (80185,13832,'_encloseme','1'),
  3485. (80186,13832,'index','6430'),
  3486. (80187,13832,'_product_image_gallery',''),
  3487. (80188,13833,'_pingme','1'),
  3488. (80189,13833,'_encloseme','1'),
  3489. (80190,13833,'index','6440'),
  3490. (80191,13833,'_product_image_gallery',''),
  3491. (80192,13834,'_pingme','1'),
  3492. (80193,13834,'_encloseme','1'),
  3493. (80194,13834,'index','6450'),
  3494. (80195,13834,'_product_image_gallery',''),
  3495. (80196,13835,'_pingme','1'),
  3496. (80197,13835,'_encloseme','1'),
  3497. (80198,13835,'index','6470'),
  3498. (80199,13835,'_product_image_gallery',''),
  3499. (80200,13836,'_pingme','1'),
  3500. (80201,13836,'_encloseme','1'),
  3501. (80202,13836,'index','6480'),
  3502. (80203,13836,'_product_image_gallery',''),
  3503. (80204,13837,'_pingme','1'),
  3504. (80205,13837,'_encloseme','1'),
  3505. (80206,13837,'index','6490'),
  3506. (80207,13837,'_product_image_gallery',''),
  3507. (80208,13838,'_pingme','1'),
  3508. (80209,13838,'_encloseme','1'),
  3509. (80210,13838,'index','6500'),
  3510. (80211,13838,'_product_image_gallery',''),
  3511. (80212,13839,'_pingme','1'),
  3512. (80213,13839,'_encloseme','1'),
  3513. (80214,13839,'index','6510'),
  3514. (80215,13839,'_product_image_gallery',''),
  3515. (80216,13840,'_pingme','1'),
  3516. (80217,13840,'_encloseme','1'),
  3517. (80218,13840,'index','6520'),
  3518. (80219,13840,'_product_image_gallery',''),
  3519. (80220,13841,'_pingme','1'),
  3520. (80221,13841,'_encloseme','1'),
  3521. (80222,13841,'index','6530'),
  3522. (80223,13841,'_product_image_gallery',''),
  3523. (80224,13842,'_pingme','1'),
  3524. (80225,13842,'_encloseme','1'),
  3525. (80226,13842,'index','6540'),
  3526. (80227,13842,'_product_image_gallery',''),
  3527. (80228,13843,'_pingme','1'),
  3528. (80229,13843,'_encloseme','1'),
  3529. (80230,13843,'index','6550'),
  3530. (80231,13843,'_product_image_gallery',''),
  3531. (80232,13844,'_pingme','1'),
  3532. (80233,13844,'_encloseme','1'),
  3533. (80234,13844,'index','6560'),
  3534. (80235,13844,'_product_image_gallery',''),
  3535. (80236,13845,'_pingme','1'),
  3536. (80237,13845,'_encloseme','1'),
  3537. (80238,13845,'index','6570'),
  3538. (80239,13845,'_product_image_gallery',''),
  3539. (80240,13846,'_pingme','1'),
  3540. (80241,13846,'_encloseme','1'),
  3541. (80242,13846,'index','6580'),
  3542. (80243,13846,'_product_image_gallery',''),
  3543. (80244,13847,'_pingme','1'),
  3544. (80245,13847,'_encloseme','1'),
  3545. (80246,13847,'index','6590'),
  3546. (80247,13847,'_product_image_gallery',''),
  3547. (80248,13848,'_pingme','1'),
  3548. (80249,13848,'_encloseme','1'),
  3549. (80250,13848,'index','6600'),
  3550. (80251,13848,'_product_image_gallery',''),
  3551. (80252,13849,'_pingme','1'),
  3552. (80253,13849,'_encloseme','1'),
  3553. (80254,13849,'index','6620'),
  3554. (80255,13849,'_product_image_gallery',''),
  3555. (80256,13850,'_pingme','1'),
  3556. (80257,13850,'_encloseme','1'),
  3557. (80258,13850,'index','6630'),
  3558. (80259,13850,'_product_image_gallery',''),
  3559. (80260,13851,'_pingme','1'),
  3560. (80261,13851,'_encloseme','1'),
  3561. (80262,13851,'index','6640'),
  3562. (80263,13851,'_product_image_gallery',''),
  3563. (80264,13852,'_pingme','1'),
  3564. (80265,13852,'_encloseme','1'),
  3565. (80266,13852,'index','6650'),
  3566. (80267,13852,'_product_image_gallery',''),
  3567. (80268,13853,'_pingme','1'),
  3568. (80269,13853,'_encloseme','1'),
  3569. (80270,13853,'index','6660'),
  3570. (80271,13853,'_product_image_gallery',''),
  3571. (80272,13854,'_pingme','1'),
  3572. (80273,13854,'_encloseme','1'),
  3573. (80274,13854,'index','6670'),
  3574. (80275,13854,'_product_image_gallery',''),
  3575. (80276,13855,'_pingme','1'),
  3576. (80277,13855,'_encloseme','1'),
  3577. (80278,13855,'index','6680'),
  3578. (80279,13855,'_product_image_gallery',''),
  3579. (80280,13856,'_pingme','1'),
  3580. (80281,13856,'_encloseme','1'),
  3581. (80282,13856,'index','6690'),
  3582. (80283,13856,'_product_image_gallery',''),
  3583. (80284,13857,'_pingme','1'),
  3584. (80285,13857,'_encloseme','1'),
  3585. (80286,13857,'index','6700'),
  3586. (80287,13857,'_product_image_gallery',''),
  3587. (80288,13858,'_pingme','1'),
  3588. (80289,13858,'_encloseme','1'),
  3589. (80290,13858,'index','6710'),
  3590. (80291,13858,'_product_image_gallery',''),
  3591. (80292,13859,'_pingme','1'),
  3592. (80293,13859,'_encloseme','1'),
  3593. (80294,13859,'index','6720'),
  3594. (80295,13859,'_product_image_gallery',''),
  3595. (80296,13860,'_pingme','1'),
  3596. (80297,13860,'_encloseme','1'),
  3597. (80298,13860,'index','6730'),
  3598. (80299,13860,'_product_image_gallery',''),
  3599. (80300,13861,'_pingme','1'),
  3600. (80301,13861,'_encloseme','1'),
  3601. (80302,13861,'index','6740'),
  3602. (80303,13861,'_product_image_gallery',''),
  3603. (80304,13862,'_pingme','1'),
  3604. (80305,13862,'_encloseme','1'),
  3605. (80306,13862,'index','6750'),
  3606. (80307,13862,'_product_image_gallery',''),
  3607. (80308,13863,'_pingme','1'),
  3608. (80309,13863,'_encloseme','1'),
  3609. (80310,13863,'index','6760'),
  3610. (80311,13863,'_product_image_gallery',''),
  3611. (80312,13864,'_pingme','1'),
  3612. (80313,13864,'_encloseme','1'),
  3613. (80314,13864,'index','6770'),
  3614. (80315,13864,'_product_image_gallery',''),
  3615. (80316,13865,'_pingme','1'),
  3616. (80317,13865,'_encloseme','1'),
  3617. (80318,13865,'index','6780'),
  3618. (80319,13865,'_product_image_gallery',''),
  3619. (80320,13866,'_pingme','1'),
  3620. (80321,13866,'_encloseme','1'),
  3621. (80322,13866,'index','6790'),
  3622. (80323,13866,'_product_image_gallery',''),
  3623. (80324,13867,'_pingme','1'),
  3624. (80325,13867,'_encloseme','1'),
  3625. (80326,13867,'index','6800'),
  3626. (80327,13867,'_product_image_gallery',''),
  3627. (80328,13868,'_pingme','1'),
  3628. (80329,13868,'_encloseme','1'),
  3629. (80330,13868,'index','6810'),
  3630. (80331,13868,'_product_image_gallery',''),
  3631. (80332,13869,'_pingme','1'),
  3632. (80333,13869,'_encloseme','1'),
  3633. (80334,13869,'index','6820'),
  3634. (80335,13869,'_product_image_gallery',''),
  3635. (80336,13870,'_pingme','1'),
  3636. (80337,13870,'_encloseme','1'),
  3637. (80338,13870,'index','6830'),
  3638. (80339,13870,'_product_image_gallery',''),
  3639. (80340,13871,'_pingme','1'),
  3640. (80341,13871,'_encloseme','1'),
  3641. (80342,13871,'index','6840'),
  3642. (80343,13871,'_product_image_gallery',''),
  3643. (80344,13872,'_pingme','1'),
  3644. (80345,13872,'_encloseme','1'),
  3645. (80346,13872,'index','6850'),
  3646. (80347,13872,'_product_image_gallery',''),
  3647. (80348,13873,'_pingme','1'),
  3648. (80349,13873,'_encloseme','1'),
  3649. (80350,13873,'index','6860'),
  3650. (80351,13873,'_product_image_gallery',''),
  3651. (80352,13874,'_pingme','1'),
  3652. (80353,13874,'_encloseme','1'),
  3653. (80354,13874,'index','6870'),
  3654. (80355,13874,'_product_image_gallery',''),
  3655. (80356,13875,'_pingme','1'),
  3656. (80357,13875,'_encloseme','1'),
  3657. (80358,13875,'index','6880'),
  3658. (80359,13875,'_product_image_gallery',''),
  3659. (80360,13876,'_pingme','1'),
  3660. (80361,13876,'_encloseme','1'),
  3661. (80362,13876,'index','6890'),
  3662. (80363,13876,'_product_image_gallery',''),
  3663. (80364,13877,'_pingme','1'),
  3664. (80365,13877,'_encloseme','1'),
  3665. (80366,13877,'index','6900'),
  3666. (80367,13877,'_product_image_gallery',''),
  3667. (80368,13878,'_pingme','1'),
  3668. (80369,13878,'_encloseme','1'),
  3669. (80370,13878,'index','6910'),
  3670. (80371,13878,'_product_image_gallery',''),
  3671. (80372,13879,'_pingme','1'),
  3672. (80373,13879,'_encloseme','1'),
  3673. (80374,13879,'index','6920'),
  3674. (80375,13879,'_product_image_gallery',''),
  3675. (80376,13880,'_pingme','1'),
  3676. (80377,13880,'_encloseme','1'),
  3677. (80378,13880,'index','6930'),
  3678. (80379,13880,'_product_image_gallery',''),
  3679. (80380,13881,'_pingme','1'),
  3680. (80381,13881,'_encloseme','1'),
  3681. (80382,13881,'index','6940'),
  3682. (80383,13881,'_product_image_gallery',''),
  3683. (80384,13882,'_pingme','1'),
  3684. (80385,13882,'_encloseme','1'),
  3685. (80386,13882,'index','6950'),
  3686. (80387,13882,'_product_image_gallery',''),
  3687. (80388,13883,'_pingme','1'),
  3688. (80389,13883,'_encloseme','1'),
  3689. (80390,13883,'index','6960'),
  3690. (80391,13883,'_product_image_gallery',''),
  3691. (80392,13884,'_pingme','1'),
  3692. (80393,13884,'_encloseme','1'),
  3693. (80394,13884,'index','6970'),
  3694. (80395,13884,'_product_image_gallery',''),
  3695. (80396,13885,'_pingme','1'),
  3696. (80397,13885,'_encloseme','1'),
  3697. (80398,13885,'index','6980'),
  3698. (80399,13885,'_product_image_gallery',''),
  3699. (80400,13886,'_pingme','1'),
  3700. (80401,13886,'_encloseme','1'),
  3701. (80402,13886,'index','6990'),
  3702. (80403,13886,'_product_image_gallery',''),
  3703. (80404,13887,'_pingme','1'),
  3704. (80405,13887,'_encloseme','1'),
  3705. (80406,13887,'index','7000'),
  3706. (80407,13887,'_product_image_gallery',''),
  3707. (80408,13888,'_pingme','1'),
  3708. (80409,13888,'_encloseme','1'),
  3709. (80410,13888,'index','7010'),
  3710. (80411,13888,'_product_image_gallery',''),
  3711. (80412,13889,'_pingme','1'),
  3712. (80413,13889,'_encloseme','1'),
  3713. (80414,13889,'index','7020'),
  3714. (80415,13889,'_product_image_gallery',''),
  3715. (80416,13890,'_pingme','1'),
  3716. (80417,13890,'_encloseme','1'),
  3717. (80418,13890,'index','7030'),
  3718. (80419,13890,'_product_image_gallery',''),
  3719. (80420,13891,'_pingme','1'),
  3720. (80421,13891,'_encloseme','1'),
  3721. (80422,13891,'index','7040'),
  3722. (80423,13891,'_product_image_gallery',''),
  3723. (80424,13892,'_pingme','1'),
  3724. (80425,13892,'_encloseme','1'),
  3725. (80426,13892,'index','5'),
  3726. (80427,13892,'isMainPart','Introduction'),
  3727. (80428,13892,'_product_image_gallery',''),
  3728. (80429,13893,'_pingme','1'),
  3729. (80430,13893,'_encloseme','1'),
  3730. (80431,13893,'index','325'),
  3731. (80432,13893,'isMainPart','Première Partie'),
  3732. (80433,13893,'_product_image_gallery',''),
  3733. (80434,13894,'_pingme','1'),
  3734. (80435,13894,'_encloseme','1'),
  3735. (80436,13894,'index','4205'),
  3736. (80437,13894,'isMainPart','Deuxième Partie'),
  3737. (80438,13894,'_product_image_gallery',''),
  3738. (80439,13895,'_pingme','1'),
  3739. (80440,13895,'_encloseme','1'),
  3740. (80441,13895,'index','6545'),
  3741. (80442,13895,'isMainPart','Crédits'),
  3742. (80443,13895,'_product_image_gallery',''),
  3743. (80444,13896,'_pingme','1'),
  3744. (80445,13896,'_encloseme','1'),
  3745. (80446,13896,'index','6775'),
  3746. (80447,13896,'isMainPart','Postface'),
  3747. (80448,13896,'_product_image_gallery',''),
  3748. (80449,13897,'_pingme','1'),
  3749. (80450,13897,'_encloseme','1'),
  3750. (80451,13897,'index','1065'),
  3751. (80452,13897,'isSubPart','Les soirées de Saint-Pétersbourg'),
  3752. (80453,13897,'_product_image_gallery',''),
  3753. (80454,13898,'_pingme','1'),
  3754. (80455,13898,'_encloseme','1'),
  3755. (80456,13898,'index','1745'),
  3756. (80457,13898,'isSubPart','Ces fleurs entre les rails dans le vent confus des voyages'),
  3757. (80458,13898,'_product_image_gallery',''),
  3758. (80459,13899,'_pingme','1'),
  3759. (80460,13899,'_encloseme','1'),
  3760. (80461,13899,'index','2635'),
  3761. (80462,13899,'isSubPart','L\'Esprit des Lois'),
  3762. (80463,13899,'_product_image_gallery',''),
  3763. (80464,13900,'_pingme','1'),
  3764. (80465,13900,'_encloseme','1'),
  3765. (80466,13900,'index','4025'),
  3766. (80467,13900,'isSubPart','La région centrale'),
  3767. (80468,13900,'_product_image_gallery',''),
  3768. (80469,13901,'_pingme','1'),
  3769. (80470,13901,'_encloseme','1'),
  3770. (80471,13901,'index','4545'),
  3771. (80472,13901,'isSubPart','Ces fleures perdues dans le vent'),
  3772. (80473,13901,'_product_image_gallery',''),
  3773. (80474,13902,'_pingme','1'),
  3774. (80475,13902,'_encloseme','1'),
  3775. (80476,13902,'index','5155'),
  3776. (80477,13902,'isSubPart','Archéologie et pirates'),
  3777. (80478,13902,'_product_image_gallery',''),
  3778. (80479,13903,'_pingme','1'),
  3779. (80480,13903,'_encloseme','1'),
  3780. (80481,13903,'index','6075'),
  3781. (80482,13903,'isSubPart','Hicham'),
  3782. (80483,13903,'_product_image_gallery',''),
  3783. (80484,13904,'_pingme','1'),
  3784. (80485,13904,'_encloseme','1'),
  3785. (80486,13904,'index','6095'),
  3786. (80487,13904,'isSubPart','Tarek'),
  3787. (80488,13904,'_product_image_gallery',''),
  3788. (80489,13856,'_edit_lock','1695712732:1'),
  3789. (80490,13820,'_edit_lock','1695712759:1'),
  3790. (80491,13617,'_edit_lock','1695717219:1'),
  3791. (80492,13857,'_edit_lock','1695728963:1'),
  3792. (80493,13459,'_edit_lock','1695729366:1'),
  3793. (80494,13231,'_edit_lock','1695729283:1'),
  3794. (80495,13232,'_edit_lock','1695729314:1'),
  3795. (80503,13893,'_edit_lock','1699517818:1'),
  3796. (80504,13894,'_edit_lock','1699517955:1'),
  3797. (80505,13224,'_edit_lock','1695729938:1'),
  3798. (80506,13907,'_edit_lock','1699517831:1'),
  3799. (80507,13907,'index','326'),
  3800. (80508,13907,'_edit_last','1'),
  3801. (80510,13907,'_pingme','1'),
  3802. (80511,13907,'_encloseme','1'),
  3803. (80512,13907,'isSubPart','Remakes'),
  3804. (80513,13910,'_edit_lock','1699517745:1'),
  3805. (80514,13910,'index','4206'),
  3806. (80515,13910,'_edit_last','1'),
  3807. (80516,13910,'index','4206'),
  3808. (80517,13910,'_pingme','1'),
  3809. (80518,13910,'_encloseme','1'),
  3810. (80519,13910,'isSubPart','Sous les yeux de l’occident'),
  3811. (80520,13879,'_edit_lock','1695745192:1'),
  3812. (80521,13913,'_menu_item_type','custom'),
  3813. (80522,13913,'_menu_item_menu_item_parent','0'),
  3814. (80523,13913,'_menu_item_object_id','13913'),
  3815. (80524,13913,'_menu_item_object','custom'),
  3816. (80525,13913,'_menu_item_target',''),
  3817. (80526,13913,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3818. (80527,13913,'_menu_item_xfn',''),
  3819. (80528,13913,'_menu_item_url','https://localhost/'),
  3820. (80529,13913,'_menu_item_orphaned','1695746505'),
  3821. (80530,13914,'_menu_item_type','post_type'),
  3822. (80531,13914,'_menu_item_menu_item_parent','0'),
  3823. (80532,13914,'_menu_item_object_id','5658'),
  3824. (80533,13914,'_menu_item_object','page'),
  3825. (80534,13914,'_menu_item_target',''),
  3826. (80535,13914,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3827. (80536,13914,'_menu_item_xfn',''),
  3828. (80537,13914,'_menu_item_url',''),
  3829. (80538,13914,'_menu_item_orphaned','1695746505'),
  3830. (80539,13915,'_menu_item_type','post_type'),
  3831. (80540,13915,'_menu_item_menu_item_parent','0'),
  3832. (80541,13915,'_menu_item_object_id','5663'),
  3833. (80542,13915,'_menu_item_object','page'),
  3834. (80543,13915,'_menu_item_target',''),
  3835. (80544,13915,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3836. (80545,13915,'_menu_item_xfn',''),
  3837. (80546,13915,'_menu_item_url',''),
  3838. (80547,13915,'_menu_item_orphaned','1695746505'),
  3839. (80548,13916,'_menu_item_type','post_type'),
  3840. (80549,13916,'_menu_item_menu_item_parent','0'),
  3841. (80550,13916,'_menu_item_object_id','5659'),
  3842. (80551,13916,'_menu_item_object','page'),
  3843. (80552,13916,'_menu_item_target',''),
  3844. (80553,13916,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3845. (80554,13916,'_menu_item_xfn',''),
  3846. (80555,13916,'_menu_item_url',''),
  3847. (80556,13916,'_menu_item_orphaned','1695746505'),
  3848. (80557,13917,'_menu_item_type','post_type'),
  3849. (80558,13917,'_menu_item_menu_item_parent','0'),
  3850. (80559,13917,'_menu_item_object_id','9962'),
  3851. (80560,13917,'_menu_item_object','page'),
  3852. (80561,13917,'_menu_item_target',''),
  3853. (80562,13917,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3854. (80563,13917,'_menu_item_xfn',''),
  3855. (80564,13917,'_menu_item_url',''),
  3856. (80565,13917,'_menu_item_orphaned','1695746505'),
  3857. (80566,13918,'_menu_item_type','post_type'),
  3858. (80567,13918,'_menu_item_menu_item_parent','0'),
  3859. (80568,13918,'_menu_item_object_id','9960'),
  3860. (80569,13918,'_menu_item_object','page'),
  3861. (80570,13918,'_menu_item_target',''),
  3862. (80571,13918,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3863. (80572,13918,'_menu_item_xfn',''),
  3864. (80573,13918,'_menu_item_url',''),
  3865. (80574,13918,'_menu_item_orphaned','1695746505'),
  3866. (80575,13919,'_menu_item_type','post_type'),
  3867. (80576,13919,'_menu_item_menu_item_parent','0'),
  3868. (80577,13919,'_menu_item_object_id','5662'),
  3869. (80578,13919,'_menu_item_object','page'),
  3870. (80579,13919,'_menu_item_target',''),
  3871. (80580,13919,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3872. (80581,13919,'_menu_item_xfn',''),
  3873. (80582,13919,'_menu_item_url',''),
  3874. (80583,13919,'_menu_item_orphaned','1695746505'),
  3875. (80584,13920,'_menu_item_type','post_type'),
  3876. (80585,13920,'_menu_item_menu_item_parent','0'),
  3877. (80586,13920,'_menu_item_object_id','5661'),
  3878. (80587,13920,'_menu_item_object','page'),
  3879. (80588,13920,'_menu_item_target',''),
  3880. (80589,13920,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3881. (80590,13920,'_menu_item_xfn',''),
  3882. (80591,13920,'_menu_item_url',''),
  3883. (80592,13920,'_menu_item_orphaned','1695746505'),
  3884. (80593,13921,'_menu_item_type','post_type'),
  3885. (80594,13921,'_menu_item_menu_item_parent','0'),
  3886. (80595,13921,'_menu_item_object_id','5650'),
  3887. (80596,13921,'_menu_item_object','page'),
  3888. (80597,13921,'_menu_item_target',''),
  3889. (80598,13921,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3890. (80599,13921,'_menu_item_xfn',''),
  3891. (80600,13921,'_menu_item_url',''),
  3892. (80601,13921,'_menu_item_orphaned','1695746505'),
  3893. (80602,13922,'_menu_item_type','post_type'),
  3894. (80603,13922,'_menu_item_menu_item_parent','0'),
  3895. (80604,13922,'_menu_item_object_id','2'),
  3896. (80605,13922,'_menu_item_object','page'),
  3897. (80606,13922,'_menu_item_target',''),
  3898. (80607,13922,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3899. (80608,13922,'_menu_item_xfn',''),
  3900. (80609,13922,'_menu_item_url',''),
  3901. (80610,13922,'_menu_item_orphaned','1695746505'),
  3902. (80611,13923,'_menu_item_type','post_type'),
  3903. (80612,13923,'_menu_item_menu_item_parent','0'),
  3904. (80613,13923,'_menu_item_object_id','5649'),
  3905. (80614,13923,'_menu_item_object','page'),
  3906. (80615,13923,'_menu_item_target',''),
  3907. (80616,13923,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3908. (80617,13923,'_menu_item_xfn',''),
  3909. (80618,13923,'_menu_item_url',''),
  3910. (80619,13923,'_menu_item_orphaned','1695746505'),
  3911. (80620,13924,'_menu_item_type','post_type'),
  3912. (80621,13924,'_menu_item_menu_item_parent','0'),
  3913. (80622,13924,'_menu_item_object_id','5664'),
  3914. (80623,13924,'_menu_item_object','page'),
  3915. (80624,13924,'_menu_item_target',''),
  3916. (80625,13924,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3917. (80626,13924,'_menu_item_xfn',''),
  3918. (80627,13924,'_menu_item_url',''),
  3919. (80628,13924,'_menu_item_orphaned','1695746505'),
  3920. (80629,13925,'_menu_item_type','post_type'),
  3921. (80630,13925,'_menu_item_menu_item_parent','0'),
  3922. (80631,13925,'_menu_item_object_id','5660'),
  3923. (80632,13925,'_menu_item_object','page'),
  3924. (80633,13925,'_menu_item_target',''),
  3925. (80634,13925,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
  3926. (80635,13925,'_menu_item_xfn',''),
  3927. (80636,13925,'_menu_item_url',''),
  3928. (80637,13925,'_menu_item_orphaned','1695746505'),
  3929. (80638,13308,'_edit_lock','1696924969:1'),
  3930. (80639,13308,'_edit_last','1'),
  3931. (80647,13193,'_rvy_base_post_id','13193'),
  3932. (80648,13193,'_edit_lock','1699517590:1'),
  3933. (80649,13927,'_rvy_published_gmt','2023-10-23 04:56:21'),
  3934. (80650,13927,'_rvy_prev_revision_status','pending-revision'),
  3935. (80651,13927,'_rvy_approved_by','4'),
  3936. (80652,13931,'_edit_lock','1698051794:1'),
  3937. (80653,13931,'_edit_last','1'),
  3938. (80654,3,'_edit_lock','1698058341:1'),
  3939. (80655,3,'_edit_last','1'),
  3940. (80656,3,'_wp_suggested_privacy_policy_content','a:3:{s:11:\"plugin_name\";s:9:\"WordPress\";s:11:\"policy_text\";s:5126:\"<h2>Qui sommes-nous ?</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>L’adresse de notre site est : https://localhost.</p><h2>Commentaires</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.</p><p>Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.</p><h2>Médias</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images.</p><h2>Cookies</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.</p><p>Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.</p><p>Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.</p><p>En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.</p><h2>Contenu embarqué depuis d’autres sites</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.</p><p>Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.</p><h2>Utilisation et transmission de vos données personnelles</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.</p><h2>Durées de stockage de vos données</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.</p><p>Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations.</p><h2>Les droits que vous avez sur vos données</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.</p><h2>Où vos données sont envoyées</h2><p><strong class=\"privacy-policy-tutorial\">Texte suggéré : </strong>Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.</p>\";s:5:\"added\";i:1698054568;}'),
  3941. (80657,13931,'_wp_trash_meta_status','publish'),
  3942. (80658,13931,'_wp_trash_meta_time','1698054609'),
  3943. (80659,13931,'_wp_desired_post_slug','politique-de-confidentialite-2'),
  3944. (80682,13940,'_edit_lock','1698086138:1'),
  3945. (80683,13940,'_edit_last','1'),
  3946. (80693,13943,'_edit_lock','1698213384:1'),
  3947. (80694,13943,'_edit_last','1'),
  3948. (80702,13949,'_pingme','1'),
  3949. (80703,13949,'_encloseme','1'),
  3950. (80704,13949,'index','110'),
  3951. (80705,13949,'_product_image_gallery',''),
  3952. (80706,13949,'_rvy_base_post_id','13202'),
  3953. (80708,13949,'_edit_lock','1698303674:1'),
  3954. (80716,13215,'_rvy_base_post_id','13215'),
  3955. (80717,13215,'_edit_lock','1699516370:1'),
  3956. (80718,13952,'_rvy_published_gmt','2023-10-26 08:19:57'),
  3957. (80719,13952,'_rvy_prev_revision_status','pending-revision'),
  3958. (80720,13952,'_rvy_approved_by','1'),
  3959. (80721,13954,'_pingme','1'),
  3960. (80722,13954,'_encloseme','1'),
  3961. (80723,13954,'index','250'),
  3962. (80724,13954,'_product_image_gallery',''),
  3963. (80725,13954,'_rvy_base_post_id','13216'),
  3964. (80727,13954,'_edit_lock','1699344989:1'),
  3965. (80728,13955,'_pingme','1'),
  3966. (80729,13955,'_encloseme','1'),
  3967. (80730,13955,'index','70'),
  3968. (80731,13955,'_product_image_gallery',''),
  3969. (80732,13955,'_rvy_base_post_id','13198'),
  3970. (80734,13955,'_edit_lock','1699345003:1'),
  3971. (80790,13215,'_edit_last','1'),
  3972. (80791,13802,'_edit_lock','1699515914:1'),
  3973. (80792,13893,'isSubPart',''),
  3974. (80793,13894,'isSubPart',''),
  3975. (80794,13190,'isMainPart',''),
  3976. (80795,13190,'isSubPart',''),
  3977. (80796,13190,'callForContribution',''),
  3978. (80797,13191,'isMainPart',''),
  3979. (80798,13191,'isSubPart',''),
  3980. (80799,13191,'callForContribution',''),
  3981. (80800,13192,'isMainPart',''),
  3982. (80801,13192,'isSubPart',''),
  3983. (80802,13192,'callForContribution',''),
  3984. (80803,13193,'isMainPart',''),
  3985. (80804,13193,'isSubPart',''),
  3986. (80805,13193,'callForContribution','oui'),
  3987. (80806,13194,'isMainPart',''),
  3988. (80807,13194,'isSubPart',''),
  3989. (80808,13194,'callForContribution',''),
  3990. (80809,13195,'isMainPart',''),
  3991. (80810,13195,'isSubPart',''),
  3992. (80811,13195,'callForContribution',''),
  3993. (80812,13196,'isMainPart',''),
  3994. (80813,13196,'isSubPart',''),
  3995. (80814,13196,'callForContribution',''),
  3996. (80815,13197,'isMainPart',''),
  3997. (80816,13197,'isSubPart',''),
  3998. (80817,13197,'callForContribution',''),
  3999. (80818,13955,'isMainPart',''),
  4000. (80819,13955,'isSubPart',''),
  4001. (80820,13955,'callForContribution',''),
  4002. (80821,13199,'isMainPart',''),
  4003. (80822,13199,'isSubPart',''),
  4004. (80823,13199,'callForContribution',''),
  4005. (80824,13200,'isMainPart',''),
  4006. (80825,13200,'isSubPart',''),
  4007. (80826,13200,'callForContribution',''),
  4008. (80827,13201,'isMainPart',''),
  4009. (80828,13201,'isSubPart',''),
  4010. (80829,13201,'callForContribution',''),
  4011. (80830,13949,'isMainPart',''),
  4012. (80831,13949,'isSubPart',''),
  4013. (80832,13949,'callForContribution',''),
  4014. (80833,13203,'isMainPart',''),
  4015. (80834,13203,'isSubPart',''),
  4016. (80835,13203,'callForContribution',''),
  4017. (80836,13204,'isMainPart',''),
  4018. (80837,13204,'isSubPart',''),
  4019. (80838,13204,'callForContribution',''),
  4020. (80839,13205,'isMainPart',''),
  4021. (80840,13205,'isSubPart',''),
  4022. (80841,13205,'callForContribution',''),
  4023. (80842,13206,'isMainPart',''),
  4024. (80843,13206,'isSubPart',''),
  4025. (80844,13206,'callForContribution',''),
  4026. (80845,13207,'isMainPart',''),
  4027. (80846,13207,'isSubPart',''),
  4028. (80847,13207,'callForContribution',''),
  4029. (80848,13208,'isMainPart',''),
  4030. (80849,13208,'isSubPart',''),
  4031. (80850,13208,'callForContribution',''),
  4032. (80851,13209,'isMainPart',''),
  4033. (80852,13209,'isSubPart',''),
  4034. (80853,13209,'callForContribution',''),
  4035. (80854,13210,'isMainPart',''),
  4036. (80855,13210,'isSubPart',''),
  4037. (80856,13210,'callForContribution',''),
  4038. (80857,13211,'isMainPart',''),
  4039. (80858,13211,'isSubPart',''),
  4040. (80859,13211,'callForContribution',''),
  4041. (80860,13212,'isMainPart',''),
  4042. (80861,13212,'isSubPart',''),
  4043. (80862,13212,'callForContribution',''),
  4044. (80863,13213,'isMainPart',''),
  4045. (80864,13213,'isSubPart',''),
  4046. (80865,13213,'callForContribution',''),
  4047. (80866,13214,'isMainPart',''),
  4048. (80867,13214,'isSubPart',''),
  4049. (80868,13214,'callForContribution',''),
  4050. (80869,13215,'isMainPart',''),
  4051. (80870,13215,'isSubPart',''),
  4052. (80871,13215,'callForContribution',''),
  4053. (80872,13954,'isMainPart',''),
  4054. (80873,13954,'isSubPart',''),
  4055. (80874,13954,'callForContribution',''),
  4056. (80875,13217,'isMainPart',''),
  4057. (80876,13217,'isSubPart',''),
  4058. (80877,13217,'callForContribution',''),
  4059. (80878,13218,'isMainPart',''),
  4060. (80879,13218,'isSubPart',''),
  4061. (80880,13218,'callForContribution',''),
  4062. (80881,13219,'isMainPart',''),
  4063. (80882,13219,'isSubPart',''),
  4064. (80883,13219,'callForContribution',''),
  4065. (80884,13220,'isMainPart',''),
  4066. (80885,13220,'isSubPart',''),
  4067. (80886,13220,'callForContribution',''),
  4068. (80887,13221,'isMainPart',''),
  4069. (80888,13221,'isSubPart',''),
  4070. (80889,13221,'callForContribution',''),
  4071. (80890,13222,'isMainPart',''),
  4072. (80891,13222,'isSubPart',''),
  4073. (80892,13222,'callForContribution',''),
  4074. (80893,13223,'isMainPart',''),
  4075. (80894,13223,'isSubPart',''),
  4076. (80895,13223,'callForContribution',''),
  4077. (80896,13224,'isMainPart',''),
  4078. (80897,13224,'isSubPart',''),
  4079. (80898,13224,'callForContribution',''),
  4080. (80899,13225,'isMainPart',''),
  4081. (80900,13225,'isSubPart',''),
  4082. (80901,13225,'callForContribution',''),
  4083. (80902,13226,'isMainPart',''),
  4084. (80903,13226,'isSubPart',''),
  4085. (80904,13226,'callForContribution',''),
  4086. (80905,13227,'isMainPart',''),
  4087. (80906,13227,'isSubPart',''),
  4088. (80907,13227,'callForContribution',''),
  4089. (80908,13228,'isMainPart',''),
  4090. (80909,13228,'isSubPart',''),
  4091. (80910,13228,'callForContribution',''),
  4092. (80911,13229,'isMainPart',''),
  4093. (80912,13229,'isSubPart',''),
  4094. (80913,13229,'callForContribution',''),
  4095. (80914,13230,'isMainPart',''),
  4096. (80915,13230,'isSubPart',''),
  4097. (80916,13230,'callForContribution',''),
  4098. (80917,13231,'isMainPart',''),
  4099. (80918,13231,'isSubPart',''),
  4100. (80919,13231,'callForContribution',''),
  4101. (80920,13232,'isMainPart',''),
  4102. (80921,13232,'isSubPart',''),
  4103. (80922,13232,'callForContribution',''),
  4104. (80923,13233,'isMainPart',''),
  4105. (80924,13233,'isSubPart',''),
  4106. (80925,13233,'callForContribution',''),
  4107. (80926,13234,'isMainPart',''),
  4108. (80927,13234,'isSubPart',''),
  4109. (80928,13234,'callForContribution',''),
  4110. (80929,13235,'isMainPart',''),
  4111. (80930,13235,'isSubPart',''),
  4112. (80931,13235,'callForContribution',''),
  4113. (80932,13236,'isMainPart',''),
  4114. (80933,13236,'isSubPart',''),
  4115. (80934,13236,'callForContribution',''),
  4116. (80935,13237,'isMainPart',''),
  4117. (80936,13237,'isSubPart',''),
  4118. (80937,13237,'callForContribution',''),
  4119. (80938,13238,'isMainPart',''),
  4120. (80939,13238,'isSubPart',''),
  4121. (80940,13238,'callForContribution',''),
  4122. (80941,13239,'isMainPart',''),
  4123. (80942,13239,'isSubPart',''),
  4124. (80943,13239,'callForContribution',''),
  4125. (80944,13240,'isMainPart',''),
  4126. (80945,13240,'isSubPart',''),
  4127. (80946,13240,'callForContribution',''),
  4128. (80947,13241,'isMainPart',''),
  4129. (80948,13241,'isSubPart',''),
  4130. (80949,13241,'callForContribution',''),
  4131. (80950,13242,'isMainPart',''),
  4132. (80951,13242,'isSubPart',''),
  4133. (80952,13242,'callForContribution',''),
  4134. (80953,13243,'isMainPart',''),
  4135. (80954,13243,'isSubPart',''),
  4136. (80955,13243,'callForContribution',''),
  4137. (80956,13244,'isMainPart',''),
  4138. (80957,13244,'isSubPart',''),
  4139. (80958,13244,'callForContribution',''),
  4140. (80959,13245,'isMainPart',''),
  4141. (80960,13245,'isSubPart',''),
  4142. (80961,13245,'callForContribution',''),
  4143. (80962,13246,'isMainPart',''),
  4144. (80963,13246,'isSubPart',''),
  4145. (80964,13246,'callForContribution',''),
  4146. (80965,13247,'isMainPart',''),
  4147. (80966,13247,'isSubPart',''),
  4148. (80967,13247,'callForContribution',''),
  4149. (80968,13248,'isMainPart',''),
  4150. (80969,13248,'isSubPart',''),
  4151. (80970,13248,'callForContribution',''),
  4152. (80971,13249,'isMainPart',''),
  4153. (80972,13249,'isSubPart',''),
  4154. (80973,13249,'callForContribution',''),
  4155. (80974,13250,'isMainPart',''),
  4156. (80975,13250,'isSubPart',''),
  4157. (80976,13250,'callForContribution',''),
  4158. (80977,13251,'isMainPart',''),
  4159. (80978,13251,'isSubPart',''),
  4160. (80979,13251,'callForContribution',''),
  4161. (80980,13252,'isMainPart',''),
  4162. (80981,13252,'isSubPart',''),
  4163. (80982,13252,'callForContribution',''),
  4164. (80983,13253,'isMainPart',''),
  4165. (80984,13253,'isSubPart',''),
  4166. (80985,13253,'callForContribution',''),
  4167. (80986,13254,'isMainPart',''),
  4168. (80987,13254,'isSubPart',''),
  4169. (80988,13254,'callForContribution',''),
  4170. (80989,13255,'isMainPart',''),
  4171. (80990,13255,'isSubPart',''),
  4172. (80991,13255,'callForContribution',''),
  4173. (80992,13256,'isMainPart',''),
  4174. (80993,13256,'isSubPart',''),
  4175. (80994,13256,'callForContribution',''),
  4176. (80995,13257,'isMainPart',''),
  4177. (80996,13257,'isSubPart',''),
  4178. (80997,13257,'callForContribution',''),
  4179. (80998,13258,'isMainPart',''),
  4180. (80999,13258,'isSubPart',''),
  4181. (81000,13258,'callForContribution',''),
  4182. (81001,13259,'isMainPart',''),
  4183. (81002,13259,'isSubPart',''),
  4184. (81003,13259,'callForContribution',''),
  4185. (81004,13260,'isMainPart',''),
  4186. (81005,13260,'isSubPart',''),
  4187. (81006,13260,'callForContribution',''),
  4188. (81007,13261,'isMainPart',''),
  4189. (81008,13261,'isSubPart',''),
  4190. (81009,13261,'callForContribution',''),
  4191. (81010,13262,'isMainPart',''),
  4192. (81011,13262,'isSubPart',''),
  4193. (81012,13262,'callForContribution',''),
  4194. (81013,13263,'isMainPart',''),
  4195. (81014,13263,'isSubPart',''),
  4196. (81015,13263,'callForContribution',''),
  4197. (81016,13264,'isMainPart',''),
  4198. (81017,13264,'isSubPart',''),
  4199. (81018,13264,'callForContribution',''),
  4200. (81019,13265,'isMainPart',''),
  4201. (81020,13265,'isSubPart',''),
  4202. (81021,13265,'callForContribution',''),
  4203. (81022,13266,'isMainPart',''),
  4204. (81023,13266,'isSubPart',''),
  4205. (81024,13266,'callForContribution',''),
  4206. (81025,13267,'isMainPart',''),
  4207. (81026,13267,'isSubPart',''),
  4208. (81027,13267,'callForContribution',''),
  4209. (81028,13268,'isMainPart',''),
  4210. (81029,13268,'isSubPart',''),
  4211. (81030,13268,'callForContribution',''),
  4212. (81031,13269,'isMainPart',''),
  4213. (81032,13269,'isSubPart',''),
  4214. (81033,13269,'callForContribution',''),
  4215. (81034,13270,'isMainPart',''),
  4216. (81035,13270,'isSubPart',''),
  4217. (81036,13270,'callForContribution',''),
  4218. (81037,13271,'isMainPart',''),
  4219. (81038,13271,'isSubPart',''),
  4220. (81039,13271,'callForContribution',''),
  4221. (81040,13272,'isMainPart',''),
  4222. (81041,13272,'isSubPart',''),
  4223. (81042,13272,'callForContribution',''),
  4224. (81043,13273,'isMainPart',''),
  4225. (81044,13273,'isSubPart',''),
  4226. (81045,13273,'callForContribution',''),
  4227. (81046,13274,'isMainPart',''),
  4228. (81047,13274,'isSubPart',''),
  4229. (81048,13274,'callForContribution',''),
  4230. (81049,13275,'isMainPart',''),
  4231. (81050,13275,'isSubPart',''),
  4232. (81051,13275,'callForContribution',''),
  4233. (81052,13276,'isMainPart',''),
  4234. (81053,13276,'isSubPart',''),
  4235. (81054,13276,'callForContribution',''),
  4236. (81055,13277,'isMainPart',''),
  4237. (81056,13277,'isSubPart',''),
  4238. (81057,13277,'callForContribution',''),
  4239. (81058,13278,'isMainPart',''),
  4240. (81059,13278,'isSubPart',''),
  4241. (81060,13278,'callForContribution',''),
  4242. (81061,13279,'isMainPart',''),
  4243. (81062,13279,'isSubPart',''),
  4244. (81063,13279,'callForContribution',''),
  4245. (81064,13280,'isMainPart',''),
  4246. (81065,13280,'isSubPart',''),
  4247. (81066,13280,'callForContribution',''),
  4248. (81067,13281,'isMainPart',''),
  4249. (81068,13281,'isSubPart',''),
  4250. (81069,13281,'callForContribution',''),
  4251. (81070,13282,'isMainPart',''),
  4252. (81071,13282,'isSubPart',''),
  4253. (81072,13282,'callForContribution',''),
  4254. (81073,13283,'isMainPart',''),
  4255. (81074,13283,'isSubPart',''),
  4256. (81075,13283,'callForContribution',''),
  4257. (81076,13284,'isMainPart',''),
  4258. (81077,13284,'isSubPart',''),
  4259. (81078,13284,'callForContribution',''),
  4260. (81079,13285,'isMainPart',''),
  4261. (81080,13285,'isSubPart',''),
  4262. (81081,13285,'callForContribution',''),
  4263. (81082,13286,'isMainPart',''),
  4264. (81083,13286,'isSubPart',''),
  4265. (81084,13286,'callForContribution',''),
  4266. (81085,13287,'isMainPart',''),
  4267. (81086,13287,'isSubPart',''),
  4268. (81087,13287,'callForContribution',''),
  4269. (81088,13288,'isMainPart',''),
  4270. (81089,13288,'isSubPart',''),
  4271. (81090,13288,'callForContribution',''),
  4272. (81091,13289,'isMainPart',''),
  4273. (81092,13289,'isSubPart',''),
  4274. (81093,13289,'callForContribution',''),
  4275. (81094,13290,'isMainPart',''),
  4276. (81095,13290,'isSubPart',''),
  4277. (81096,13290,'callForContribution',''),
  4278. (81097,13291,'isMainPart',''),
  4279. (81098,13291,'isSubPart',''),
  4280. (81099,13291,'callForContribution',''),
  4281. (81100,13292,'isMainPart',''),
  4282. (81101,13292,'isSubPart',''),
  4283. (81102,13292,'callForContribution',''),
  4284. (81103,13293,'isMainPart',''),
  4285. (81104,13293,'isSubPart',''),
  4286. (81105,13293,'callForContribution',''),
  4287. (81106,13294,'isMainPart',''),
  4288. (81107,13294,'isSubPart',''),
  4289. (81108,13294,'callForContribution',''),
  4290. (81109,13295,'isMainPart',''),
  4291. (81110,13295,'isSubPart',''),
  4292. (81111,13295,'callForContribution',''),
  4293. (81112,13296,'isMainPart',''),
  4294. (81113,13296,'isSubPart',''),
  4295. (81114,13296,'callForContribution',''),
  4296. (81115,13297,'isMainPart',''),
  4297. (81116,13297,'isSubPart',''),
  4298. (81117,13297,'callForContribution',''),
  4299. (81118,13298,'isMainPart',''),
  4300. (81119,13298,'isSubPart',''),
  4301. (81120,13298,'callForContribution',''),
  4302. (81121,13299,'isMainPart',''),
  4303. (81122,13299,'isSubPart',''),
  4304. (81123,13299,'callForContribution',''),
  4305. (81124,13300,'isMainPart',''),
  4306. (81125,13300,'isSubPart',''),
  4307. (81126,13300,'callForContribution',''),
  4308. (81127,13301,'isMainPart',''),
  4309. (81128,13301,'isSubPart',''),
  4310. (81129,13301,'callForContribution',''),
  4311. (81130,13302,'isMainPart',''),
  4312. (81131,13302,'isSubPart',''),
  4313. (81132,13302,'callForContribution',''),
  4314. (81133,13303,'isMainPart',''),
  4315. (81134,13303,'isSubPart',''),
  4316. (81135,13303,'callForContribution',''),
  4317. (81136,13304,'isMainPart',''),
  4318. (81137,13304,'isSubPart',''),
  4319. (81138,13304,'callForContribution',''),
  4320. (81139,13305,'isMainPart',''),
  4321. (81140,13305,'isSubPart',''),
  4322. (81141,13305,'callForContribution',''),
  4323. (81142,13306,'isMainPart',''),
  4324. (81143,13306,'isSubPart',''),
  4325. (81144,13306,'callForContribution',''),
  4326. (81145,13307,'isMainPart',''),
  4327. (81146,13307,'isSubPart',''),
  4328. (81147,13307,'callForContribution',''),
  4329. (81148,13308,'isMainPart',''),
  4330. (81149,13308,'isSubPart',''),
  4331. (81150,13308,'callForContribution',''),
  4332. (81151,13309,'isMainPart',''),
  4333. (81152,13309,'isSubPart',''),
  4334. (81153,13309,'callForContribution',''),
  4335. (81154,13310,'isMainPart',''),
  4336. (81155,13310,'isSubPart',''),
  4337. (81156,13310,'callForContribution',''),
  4338. (81157,13311,'isMainPart',''),
  4339. (81158,13311,'isSubPart',''),
  4340. (81159,13311,'callForContribution',''),
  4341. (81160,13312,'isMainPart',''),
  4342. (81161,13312,'isSubPart',''),
  4343. (81162,13312,'callForContribution',''),
  4344. (81163,13313,'isMainPart',''),
  4345. (81164,13313,'isSubPart',''),
  4346. (81165,13313,'callForContribution',''),
  4347. (81166,13314,'isMainPart',''),
  4348. (81167,13314,'isSubPart',''),
  4349. (81168,13314,'callForContribution',''),
  4350. (81169,13315,'isMainPart',''),
  4351. (81170,13315,'isSubPart',''),
  4352. (81171,13315,'callForContribution',''),
  4353. (81172,13316,'isMainPart',''),
  4354. (81173,13316,'isSubPart',''),
  4355. (81174,13316,'callForContribution',''),
  4356. (81175,13317,'isMainPart',''),
  4357. (81176,13317,'isSubPart',''),
  4358. (81177,13317,'callForContribution',''),
  4359. (81178,13318,'isMainPart',''),
  4360. (81179,13318,'isSubPart',''),
  4361. (81180,13318,'callForContribution',''),
  4362. (81181,13319,'isMainPart',''),
  4363. (81182,13319,'isSubPart',''),
  4364. (81183,13319,'callForContribution',''),
  4365. (81184,13320,'isMainPart',''),
  4366. (81185,13320,'isSubPart',''),
  4367. (81186,13320,'callForContribution',''),
  4368. (81187,13321,'isMainPart',''),
  4369. (81188,13321,'isSubPart',''),
  4370. (81189,13321,'callForContribution',''),
  4371. (81190,13322,'isMainPart',''),
  4372. (81191,13322,'isSubPart',''),
  4373. (81192,13322,'callForContribution',''),
  4374. (81193,13323,'isMainPart',''),
  4375. (81194,13323,'isSubPart',''),
  4376. (81195,13323,'callForContribution',''),
  4377. (81196,13324,'isMainPart',''),
  4378. (81197,13324,'isSubPart',''),
  4379. (81198,13324,'callForContribution',''),
  4380. (81199,13325,'isMainPart',''),
  4381. (81200,13325,'isSubPart',''),
  4382. (81201,13325,'callForContribution',''),
  4383. (81202,13326,'isMainPart',''),
  4384. (81203,13326,'isSubPart',''),
  4385. (81204,13326,'callForContribution',''),
  4386. (81205,13327,'isMainPart',''),
  4387. (81206,13327,'isSubPart',''),
  4388. (81207,13327,'callForContribution',''),
  4389. (81208,13328,'isMainPart',''),
  4390. (81209,13328,'isSubPart',''),
  4391. (81210,13328,'callForContribution',''),
  4392. (81211,13329,'isMainPart',''),
  4393. (81212,13329,'isSubPart',''),
  4394. (81213,13329,'callForContribution',''),
  4395. (81214,13330,'isMainPart',''),
  4396. (81215,13330,'isSubPart',''),
  4397. (81216,13330,'callForContribution',''),
  4398. (81217,13331,'isMainPart',''),
  4399. (81218,13331,'isSubPart',''),
  4400. (81219,13331,'callForContribution',''),
  4401. (81220,13332,'isMainPart',''),
  4402. (81221,13332,'isSubPart',''),
  4403. (81222,13332,'callForContribution',''),
  4404. (81223,13333,'isMainPart',''),
  4405. (81224,13333,'isSubPart',''),
  4406. (81225,13333,'callForContribution',''),
  4407. (81226,13334,'isMainPart',''),
  4408. (81227,13334,'isSubPart',''),
  4409. (81228,13334,'callForContribution',''),
  4410. (81229,13335,'isMainPart',''),
  4411. (81230,13335,'isSubPart',''),
  4412. (81231,13335,'callForContribution',''),
  4413. (81232,13336,'isMainPart',''),
  4414. (81233,13336,'isSubPart',''),
  4415. (81234,13336,'callForContribution',''),
  4416. (81235,13337,'isMainPart',''),
  4417. (81236,13337,'isSubPart',''),
  4418. (81237,13337,'callForContribution',''),
  4419. (81238,13338,'isMainPart',''),
  4420. (81239,13338,'isSubPart',''),
  4421. (81240,13338,'callForContribution',''),
  4422. (81241,13339,'isMainPart',''),
  4423. (81242,13339,'isSubPart',''),
  4424. (81243,13339,'callForContribution',''),
  4425. (81244,13340,'isMainPart',''),
  4426. (81245,13340,'isSubPart',''),
  4427. (81246,13340,'callForContribution',''),
  4428. (81247,13341,'isMainPart',''),
  4429. (81248,13341,'isSubPart',''),
  4430. (81249,13341,'callForContribution',''),
  4431. (81250,13342,'isMainPart',''),
  4432. (81251,13342,'isSubPart',''),
  4433. (81252,13342,'callForContribution',''),
  4434. (81253,13343,'isMainPart',''),
  4435. (81254,13343,'isSubPart',''),
  4436. (81255,13343,'callForContribution',''),
  4437. (81256,13344,'isMainPart',''),
  4438. (81257,13344,'isSubPart',''),
  4439. (81258,13344,'callForContribution',''),
  4440. (81259,13345,'isMainPart',''),
  4441. (81260,13345,'isSubPart',''),
  4442. (81261,13345,'callForContribution',''),
  4443. (81262,13346,'isMainPart',''),
  4444. (81263,13346,'isSubPart',''),
  4445. (81264,13346,'callForContribution',''),
  4446. (81265,13347,'isMainPart',''),
  4447. (81266,13347,'isSubPart',''),
  4448. (81267,13347,'callForContribution',''),
  4449. (81268,13348,'isMainPart',''),
  4450. (81269,13348,'isSubPart',''),
  4451. (81270,13348,'callForContribution',''),
  4452. (81271,13349,'isMainPart',''),
  4453. (81272,13349,'isSubPart',''),
  4454. (81273,13349,'callForContribution',''),
  4455. (81274,13350,'isMainPart',''),
  4456. (81275,13350,'isSubPart',''),
  4457. (81276,13350,'callForContribution',''),
  4458. (81277,13351,'isMainPart',''),
  4459. (81278,13351,'isSubPart',''),
  4460. (81279,13351,'callForContribution',''),
  4461. (81280,13352,'isMainPart',''),
  4462. (81281,13352,'isSubPart',''),
  4463. (81282,13352,'callForContribution',''),
  4464. (81283,13353,'isMainPart',''),
  4465. (81284,13353,'isSubPart',''),
  4466. (81285,13353,'callForContribution',''),
  4467. (81286,13354,'isMainPart',''),
  4468. (81287,13354,'isSubPart',''),
  4469. (81288,13354,'callForContribution',''),
  4470. (81289,13355,'isMainPart',''),
  4471. (81290,13355,'isSubPart',''),
  4472. (81291,13355,'callForContribution',''),
  4473. (81292,13356,'isMainPart',''),
  4474. (81293,13356,'isSubPart',''),
  4475. (81294,13356,'callForContribution',''),
  4476. (81295,13357,'isMainPart',''),
  4477. (81296,13357,'isSubPart',''),
  4478. (81297,13357,'callForContribution',''),
  4479. (81298,13358,'isMainPart',''),
  4480. (81299,13358,'isSubPart',''),
  4481. (81300,13358,'callForContribution',''),
  4482. (81301,13359,'isMainPart',''),
  4483. (81302,13359,'isSubPart',''),
  4484. (81303,13359,'callForContribution',''),
  4485. (81304,13360,'isMainPart',''),
  4486. (81305,13360,'isSubPart',''),
  4487. (81306,13360,'callForContribution',''),
  4488. (81307,13361,'isMainPart',''),
  4489. (81308,13361,'isSubPart',''),
  4490. (81309,13361,'callForContribution',''),
  4491. (81310,13362,'isMainPart',''),
  4492. (81311,13362,'isSubPart',''),
  4493. (81312,13362,'callForContribution',''),
  4494. (81313,13363,'isMainPart',''),
  4495. (81314,13363,'isSubPart',''),
  4496. (81315,13363,'callForContribution',''),
  4497. (81316,13364,'isMainPart',''),
  4498. (81317,13364,'isSubPart',''),
  4499. (81318,13364,'callForContribution',''),
  4500. (81319,13365,'isMainPart',''),
  4501. (81320,13365,'isSubPart',''),
  4502. (81321,13365,'callForContribution',''),
  4503. (81322,13366,'isMainPart',''),
  4504. (81323,13366,'isSubPart',''),
  4505. (81324,13366,'callForContribution',''),
  4506. (81325,13367,'isMainPart',''),
  4507. (81326,13367,'isSubPart',''),
  4508. (81327,13367,'callForContribution',''),
  4509. (81328,13368,'isMainPart',''),
  4510. (81329,13368,'isSubPart',''),
  4511. (81330,13368,'callForContribution',''),
  4512. (81331,13369,'isMainPart',''),
  4513. (81332,13369,'isSubPart',''),
  4514. (81333,13369,'callForContribution',''),
  4515. (81334,13370,'isMainPart',''),
  4516. (81335,13370,'isSubPart',''),
  4517. (81336,13370,'callForContribution',''),
  4518. (81337,13371,'isMainPart',''),
  4519. (81338,13371,'isSubPart',''),
  4520. (81339,13371,'callForContribution',''),
  4521. (81340,13372,'isMainPart',''),
  4522. (81341,13372,'isSubPart',''),
  4523. (81342,13372,'callForContribution',''),
  4524. (81343,13373,'isMainPart',''),
  4525. (81344,13373,'isSubPart',''),
  4526. (81345,13373,'callForContribution',''),
  4527. (81346,13374,'isMainPart',''),
  4528. (81347,13374,'isSubPart',''),
  4529. (81348,13374,'callForContribution',''),
  4530. (81349,13375,'isMainPart',''),
  4531. (81350,13375,'isSubPart',''),
  4532. (81351,13375,'callForContribution',''),
  4533. (81352,13376,'isMainPart',''),
  4534. (81353,13376,'isSubPart',''),
  4535. (81354,13376,'callForContribution',''),
  4536. (81355,13377,'isMainPart',''),
  4537. (81356,13377,'isSubPart',''),
  4538. (81357,13377,'callForContribution',''),
  4539. (81358,13378,'isMainPart',''),
  4540. (81359,13378,'isSubPart',''),
  4541. (81360,13378,'callForContribution',''),
  4542. (81361,13379,'isMainPart',''),
  4543. (81362,13379,'isSubPart',''),
  4544. (81363,13379,'callForContribution',''),
  4545. (81364,13380,'isMainPart',''),
  4546. (81365,13380,'isSubPart',''),
  4547. (81366,13380,'callForContribution',''),
  4548. (81367,13381,'isMainPart',''),
  4549. (81368,13381,'isSubPart',''),
  4550. (81369,13381,'callForContribution',''),
  4551. (81370,13382,'isMainPart',''),
  4552. (81371,13382,'isSubPart',''),
  4553. (81372,13382,'callForContribution',''),
  4554. (81373,13383,'isMainPart',''),
  4555. (81374,13383,'isSubPart',''),
  4556. (81375,13383,'callForContribution',''),
  4557. (81376,13384,'isMainPart',''),
  4558. (81377,13384,'isSubPart',''),
  4559. (81378,13384,'callForContribution',''),
  4560. (81379,13385,'isMainPart',''),
  4561. (81380,13385,'isSubPart',''),
  4562. (81381,13385,'callForContribution',''),
  4563. (81382,13386,'isMainPart',''),
  4564. (81383,13386,'isSubPart',''),
  4565. (81384,13386,'callForContribution',''),
  4566. (81385,13387,'isMainPart',''),
  4567. (81386,13387,'isSubPart',''),
  4568. (81387,13387,'callForContribution',''),
  4569. (81388,13388,'isMainPart',''),
  4570. (81389,13388,'isSubPart',''),
  4571. (81390,13388,'callForContribution',''),
  4572. (81391,13389,'isMainPart',''),
  4573. (81392,13389,'isSubPart',''),
  4574. (81393,13389,'callForContribution',''),
  4575. (81394,13390,'isMainPart',''),
  4576. (81395,13390,'isSubPart',''),
  4577. (81396,13390,'callForContribution',''),
  4578. (81397,13391,'isMainPart',''),
  4579. (81398,13391,'isSubPart',''),
  4580. (81399,13391,'callForContribution',''),
  4581. (81400,13392,'isMainPart',''),
  4582. (81401,13392,'isSubPart',''),
  4583. (81402,13392,'callForContribution',''),
  4584. (81403,13393,'isMainPart',''),
  4585. (81404,13393,'isSubPart',''),
  4586. (81405,13393,'callForContribution',''),
  4587. (81406,13394,'isMainPart',''),
  4588. (81407,13394,'isSubPart',''),
  4589. (81408,13394,'callForContribution',''),
  4590. (81409,13395,'isMainPart',''),
  4591. (81410,13395,'isSubPart',''),
  4592. (81411,13395,'callForContribution',''),
  4593. (81412,13396,'isMainPart',''),
  4594. (81413,13396,'isSubPart',''),
  4595. (81414,13396,'callForContribution',''),
  4596. (81415,13397,'isMainPart',''),
  4597. (81416,13397,'isSubPart',''),
  4598. (81417,13397,'callForContribution',''),
  4599. (81418,13398,'isMainPart',''),
  4600. (81419,13398,'isSubPart',''),
  4601. (81420,13398,'callForContribution',''),
  4602. (81421,13399,'isMainPart',''),
  4603. (81422,13399,'isSubPart',''),
  4604. (81423,13399,'callForContribution',''),
  4605. (81424,13400,'isMainPart',''),
  4606. (81425,13400,'isSubPart',''),
  4607. (81426,13400,'callForContribution',''),
  4608. (81427,13401,'isMainPart',''),
  4609. (81428,13401,'isSubPart',''),
  4610. (81429,13401,'callForContribution',''),
  4611. (81430,13402,'isMainPart',''),
  4612. (81431,13402,'isSubPart',''),
  4613. (81432,13402,'callForContribution',''),
  4614. (81433,13403,'isMainPart',''),
  4615. (81434,13403,'isSubPart',''),
  4616. (81435,13403,'callForContribution',''),
  4617. (81436,13404,'isMainPart',''),
  4618. (81437,13404,'isSubPart',''),
  4619. (81438,13404,'callForContribution',''),
  4620. (81439,13405,'isMainPart',''),
  4621. (81440,13405,'isSubPart',''),
  4622. (81441,13405,'callForContribution',''),
  4623. (81442,13406,'isMainPart',''),
  4624. (81443,13406,'isSubPart',''),
  4625. (81444,13406,'callForContribution',''),
  4626. (81445,13407,'isMainPart',''),
  4627. (81446,13407,'isSubPart',''),
  4628. (81447,13407,'callForContribution',''),
  4629. (81448,13408,'isMainPart',''),
  4630. (81449,13408,'isSubPart',''),
  4631. (81450,13408,'callForContribution',''),
  4632. (81451,13409,'isMainPart',''),
  4633. (81452,13409,'isSubPart',''),
  4634. (81453,13409,'callForContribution',''),
  4635. (81454,13410,'isMainPart',''),
  4636. (81455,13410,'isSubPart',''),
  4637. (81456,13410,'callForContribution',''),
  4638. (81457,13411,'isMainPart',''),
  4639. (81458,13411,'isSubPart',''),
  4640. (81459,13411,'callForContribution',''),
  4641. (81460,13412,'isMainPart',''),
  4642. (81461,13412,'isSubPart',''),
  4643. (81462,13412,'callForContribution',''),
  4644. (81463,13413,'isMainPart',''),
  4645. (81464,13413,'isSubPart',''),
  4646. (81465,13413,'callForContribution',''),
  4647. (81466,13414,'isMainPart',''),
  4648. (81467,13414,'isSubPart',''),
  4649. (81468,13414,'callForContribution',''),
  4650. (81469,13415,'isMainPart',''),
  4651. (81470,13415,'isSubPart',''),
  4652. (81471,13415,'callForContribution',''),
  4653. (81472,13416,'isMainPart',''),
  4654. (81473,13416,'isSubPart',''),
  4655. (81474,13416,'callForContribution',''),
  4656. (81475,13417,'isMainPart',''),
  4657. (81476,13417,'isSubPart',''),
  4658. (81477,13417,'callForContribution',''),
  4659. (81478,13418,'isMainPart',''),
  4660. (81479,13418,'isSubPart',''),
  4661. (81480,13418,'callForContribution',''),
  4662. (81481,13419,'isMainPart',''),
  4663. (81482,13419,'isSubPart',''),
  4664. (81483,13419,'callForContribution',''),
  4665. (81484,13420,'isMainPart',''),
  4666. (81485,13420,'isSubPart',''),
  4667. (81486,13420,'callForContribution',''),
  4668. (81487,13421,'isMainPart',''),
  4669. (81488,13421,'isSubPart',''),
  4670. (81489,13421,'callForContribution',''),
  4671. (81490,13422,'isMainPart',''),
  4672. (81491,13422,'isSubPart',''),
  4673. (81492,13422,'callForContribution',''),
  4674. (81493,13423,'isMainPart',''),
  4675. (81494,13423,'isSubPart',''),
  4676. (81495,13423,'callForContribution',''),
  4677. (81496,13424,'isMainPart',''),
  4678. (81497,13424,'isSubPart',''),
  4679. (81498,13424,'callForContribution',''),
  4680. (81499,13425,'isMainPart',''),
  4681. (81500,13425,'isSubPart',''),
  4682. (81501,13425,'callForContribution',''),
  4683. (81502,13426,'isMainPart',''),
  4684. (81503,13426,'isSubPart',''),
  4685. (81504,13426,'callForContribution',''),
  4686. (81505,13427,'isMainPart',''),
  4687. (81506,13427,'isSubPart',''),
  4688. (81507,13427,'callForContribution',''),
  4689. (81508,13428,'isMainPart',''),
  4690. (81509,13428,'isSubPart',''),
  4691. (81510,13428,'callForContribution',''),
  4692. (81511,13429,'isMainPart',''),
  4693. (81512,13429,'isSubPart',''),
  4694. (81513,13429,'callForContribution',''),
  4695. (81514,13430,'isMainPart',''),
  4696. (81515,13430,'isSubPart',''),
  4697. (81516,13430,'callForContribution',''),
  4698. (81517,13431,'isMainPart',''),
  4699. (81518,13431,'isSubPart',''),
  4700. (81519,13431,'callForContribution',''),
  4701. (81520,13432,'isMainPart',''),
  4702. (81521,13432,'isSubPart',''),
  4703. (81522,13432,'callForContribution',''),
  4704. (81523,13433,'isMainPart',''),
  4705. (81524,13433,'isSubPart',''),
  4706. (81525,13433,'callForContribution',''),
  4707. (81526,13434,'isMainPart',''),
  4708. (81527,13434,'isSubPart',''),
  4709. (81528,13434,'callForContribution',''),
  4710. (81529,13435,'isMainPart',''),
  4711. (81530,13435,'isSubPart',''),
  4712. (81531,13435,'callForContribution',''),
  4713. (81532,13436,'isMainPart',''),
  4714. (81533,13436,'isSubPart',''),
  4715. (81534,13436,'callForContribution',''),
  4716. (81535,13437,'isMainPart',''),
  4717. (81536,13437,'isSubPart',''),
  4718. (81537,13437,'callForContribution',''),
  4719. (81538,13438,'isMainPart',''),
  4720. (81539,13438,'isSubPart',''),
  4721. (81540,13438,'callForContribution',''),
  4722. (81541,13439,'isMainPart',''),
  4723. (81542,13439,'isSubPart',''),
  4724. (81543,13439,'callForContribution',''),
  4725. (81544,13440,'isMainPart',''),
  4726. (81545,13440,'isSubPart',''),
  4727. (81546,13440,'callForContribution',''),
  4728. (81547,13441,'isMainPart',''),
  4729. (81548,13441,'isSubPart',''),
  4730. (81549,13441,'callForContribution',''),
  4731. (81550,13442,'isMainPart',''),
  4732. (81551,13442,'isSubPart',''),
  4733. (81552,13442,'callForContribution',''),
  4734. (81553,13443,'isMainPart',''),
  4735. (81554,13443,'isSubPart',''),
  4736. (81555,13443,'callForContribution',''),
  4737. (81556,13444,'isMainPart',''),
  4738. (81557,13444,'isSubPart',''),
  4739. (81558,13444,'callForContribution',''),
  4740. (81559,13445,'isMainPart',''),
  4741. (81560,13445,'isSubPart',''),
  4742. (81561,13445,'callForContribution',''),
  4743. (81562,13446,'isMainPart',''),
  4744. (81563,13446,'isSubPart',''),
  4745. (81564,13446,'callForContribution',''),
  4746. (81565,13447,'isMainPart',''),
  4747. (81566,13447,'isSubPart',''),
  4748. (81567,13447,'callForContribution',''),
  4749. (81568,13448,'isMainPart',''),
  4750. (81569,13448,'isSubPart',''),
  4751. (81570,13448,'callForContribution',''),
  4752. (81571,13449,'isMainPart',''),
  4753. (81572,13449,'isSubPart',''),
  4754. (81573,13449,'callForContribution',''),
  4755. (81574,13450,'isMainPart',''),
  4756. (81575,13450,'isSubPart',''),
  4757. (81576,13450,'callForContribution',''),
  4758. (81577,13451,'isMainPart',''),
  4759. (81578,13451,'isSubPart',''),
  4760. (81579,13451,'callForContribution',''),
  4761. (81580,13452,'isMainPart',''),
  4762. (81581,13452,'isSubPart',''),
  4763. (81582,13452,'callForContribution',''),
  4764. (81583,13453,'isMainPart',''),
  4765. (81584,13453,'isSubPart',''),
  4766. (81585,13453,'callForContribution',''),
  4767. (81586,13454,'isMainPart',''),
  4768. (81587,13454,'isSubPart',''),
  4769. (81588,13454,'callForContribution',''),
  4770. (81589,13455,'isMainPart',''),
  4771. (81590,13455,'isSubPart',''),
  4772. (81591,13455,'callForContribution',''),
  4773. (81592,13456,'isMainPart',''),
  4774. (81593,13456,'isSubPart',''),
  4775. (81594,13456,'callForContribution',''),
  4776. (81595,13457,'isMainPart',''),
  4777. (81596,13457,'isSubPart',''),
  4778. (81597,13457,'callForContribution',''),
  4779. (81598,13458,'isMainPart',''),
  4780. (81599,13458,'isSubPart',''),
  4781. (81600,13458,'callForContribution',''),
  4782. (81601,13459,'isMainPart',''),
  4783. (81602,13459,'isSubPart',''),
  4784. (81603,13459,'callForContribution',''),
  4785. (81604,13460,'isMainPart',''),
  4786. (81605,13460,'isSubPart',''),
  4787. (81606,13460,'callForContribution',''),
  4788. (81607,13461,'isMainPart',''),
  4789. (81608,13461,'isSubPart',''),
  4790. (81609,13461,'callForContribution',''),
  4791. (81610,13462,'isMainPart',''),
  4792. (81611,13462,'isSubPart',''),
  4793. (81612,13462,'callForContribution',''),
  4794. (81613,13463,'isMainPart',''),
  4795. (81614,13463,'isSubPart',''),
  4796. (81615,13463,'callForContribution',''),
  4797. (81616,13464,'isMainPart',''),
  4798. (81617,13464,'isSubPart',''),
  4799. (81618,13464,'callForContribution',''),
  4800. (81619,13465,'isMainPart',''),
  4801. (81620,13465,'isSubPart',''),
  4802. (81621,13465,'callForContribution',''),
  4803. (81622,13466,'isMainPart',''),
  4804. (81623,13466,'isSubPart',''),
  4805. (81624,13466,'callForContribution',''),
  4806. (81625,13467,'isMainPart',''),
  4807. (81626,13467,'isSubPart',''),
  4808. (81627,13467,'callForContribution',''),
  4809. (81628,13468,'isMainPart',''),
  4810. (81629,13468,'isSubPart',''),
  4811. (81630,13468,'callForContribution',''),
  4812. (81631,13469,'isMainPart',''),
  4813. (81632,13469,'isSubPart',''),
  4814. (81633,13469,'callForContribution',''),
  4815. (81634,13470,'isMainPart',''),
  4816. (81635,13470,'isSubPart',''),
  4817. (81636,13470,'callForContribution',''),
  4818. (81637,13471,'isMainPart',''),
  4819. (81638,13471,'isSubPart',''),
  4820. (81639,13471,'callForContribution',''),
  4821. (81640,13472,'isMainPart',''),
  4822. (81641,13472,'isSubPart',''),
  4823. (81642,13472,'callForContribution',''),
  4824. (81643,13473,'isMainPart',''),
  4825. (81644,13473,'isSubPart',''),
  4826. (81645,13473,'callForContribution',''),
  4827. (81646,13474,'isMainPart',''),
  4828. (81647,13474,'isSubPart',''),
  4829. (81648,13474,'callForContribution',''),
  4830. (81649,13475,'isMainPart',''),
  4831. (81650,13475,'isSubPart',''),
  4832. (81651,13475,'callForContribution',''),
  4833. (81652,13476,'isMainPart',''),
  4834. (81653,13476,'isSubPart',''),
  4835. (81654,13476,'callForContribution',''),
  4836. (81655,13477,'isMainPart',''),
  4837. (81656,13477,'isSubPart',''),
  4838. (81657,13477,'callForContribution',''),
  4839. (81658,13478,'isMainPart',''),
  4840. (81659,13478,'isSubPart',''),
  4841. (81660,13478,'callForContribution',''),
  4842. (81661,13479,'isMainPart',''),
  4843. (81662,13479,'isSubPart',''),
  4844. (81663,13479,'callForContribution',''),
  4845. (81664,13480,'isMainPart',''),
  4846. (81665,13480,'isSubPart',''),
  4847. (81666,13480,'callForContribution',''),
  4848. (81667,13481,'isMainPart',''),
  4849. (81668,13481,'isSubPart',''),
  4850. (81669,13481,'callForContribution',''),
  4851. (81670,13482,'isMainPart',''),
  4852. (81671,13482,'isSubPart',''),
  4853. (81672,13482,'callForContribution',''),
  4854. (81673,13483,'isMainPart',''),
  4855. (81674,13483,'isSubPart',''),
  4856. (81675,13483,'callForContribution',''),
  4857. (81676,13484,'isMainPart',''),
  4858. (81677,13484,'isSubPart',''),
  4859. (81678,13484,'callForContribution',''),
  4860. (81679,13485,'isMainPart',''),
  4861. (81680,13485,'isSubPart',''),
  4862. (81681,13485,'callForContribution',''),
  4863. (81682,13486,'isMainPart',''),
  4864. (81683,13486,'isSubPart',''),
  4865. (81684,13486,'callForContribution',''),
  4866. (81685,13487,'isMainPart',''),
  4867. (81686,13487,'isSubPart',''),
  4868. (81687,13487,'callForContribution',''),
  4869. (81688,13488,'isMainPart',''),
  4870. (81689,13488,'isSubPart',''),
  4871. (81690,13488,'callForContribution',''),
  4872. (81691,13489,'isMainPart',''),
  4873. (81692,13489,'isSubPart',''),
  4874. (81693,13489,'callForContribution',''),
  4875. (81694,13490,'isMainPart',''),
  4876. (81695,13490,'isSubPart',''),
  4877. (81696,13490,'callForContribution',''),
  4878. (81697,13491,'isMainPart',''),
  4879. (81698,13491,'isSubPart',''),
  4880. (81699,13491,'callForContribution',''),
  4881. (81700,13492,'isMainPart',''),
  4882. (81701,13492,'isSubPart',''),
  4883. (81702,13492,'callForContribution',''),
  4884. (81703,13493,'isMainPart',''),
  4885. (81704,13493,'isSubPart',''),
  4886. (81705,13493,'callForContribution',''),
  4887. (81706,13494,'isMainPart',''),
  4888. (81707,13494,'isSubPart',''),
  4889. (81708,13494,'callForContribution',''),
  4890. (81709,13495,'isMainPart',''),
  4891. (81710,13495,'isSubPart',''),
  4892. (81711,13495,'callForContribution',''),
  4893. (81712,13496,'isMainPart',''),
  4894. (81713,13496,'isSubPart',''),
  4895. (81714,13496,'callForContribution',''),
  4896. (81715,13497,'isMainPart',''),
  4897. (81716,13497,'isSubPart',''),
  4898. (81717,13497,'callForContribution',''),
  4899. (81718,13498,'isMainPart',''),
  4900. (81719,13498,'isSubPart',''),
  4901. (81720,13498,'callForContribution',''),
  4902. (81721,13499,'isMainPart',''),
  4903. (81722,13499,'isSubPart',''),
  4904. (81723,13499,'callForContribution',''),
  4905. (81724,13500,'isMainPart',''),
  4906. (81725,13500,'isSubPart',''),
  4907. (81726,13500,'callForContribution',''),
  4908. (81727,13501,'isMainPart',''),
  4909. (81728,13501,'isSubPart',''),
  4910. (81729,13501,'callForContribution',''),
  4911. (81730,13502,'isMainPart',''),
  4912. (81731,13502,'isSubPart',''),
  4913. (81732,13502,'callForContribution',''),
  4914. (81733,13503,'isMainPart',''),
  4915. (81734,13503,'isSubPart',''),
  4916. (81735,13503,'callForContribution',''),
  4917. (81736,13504,'isMainPart',''),
  4918. (81737,13504,'isSubPart',''),
  4919. (81738,13504,'callForContribution',''),
  4920. (81739,13505,'isMainPart',''),
  4921. (81740,13505,'isSubPart',''),
  4922. (81741,13505,'callForContribution',''),
  4923. (81742,13506,'isMainPart',''),
  4924. (81743,13506,'isSubPart',''),
  4925. (81744,13506,'callForContribution',''),
  4926. (81745,13507,'isMainPart',''),
  4927. (81746,13507,'isSubPart',''),
  4928. (81747,13507,'callForContribution',''),
  4929. (81748,13508,'isMainPart',''),
  4930. (81749,13508,'isSubPart',''),
  4931. (81750,13508,'callForContribution',''),
  4932. (81751,13509,'isMainPart',''),
  4933. (81752,13509,'isSubPart',''),
  4934. (81753,13509,'callForContribution',''),
  4935. (81754,13510,'isMainPart',''),
  4936. (81755,13510,'isSubPart',''),
  4937. (81756,13510,'callForContribution',''),
  4938. (81757,13511,'isMainPart',''),
  4939. (81758,13511,'isSubPart',''),
  4940. (81759,13511,'callForContribution',''),
  4941. (81760,13512,'isMainPart',''),
  4942. (81761,13512,'isSubPart',''),
  4943. (81762,13512,'callForContribution',''),
  4944. (81763,13513,'isMainPart',''),
  4945. (81764,13513,'isSubPart',''),
  4946. (81765,13513,'callForContribution',''),
  4947. (81766,13514,'isMainPart',''),
  4948. (81767,13514,'isSubPart',''),
  4949. (81768,13514,'callForContribution',''),
  4950. (81769,13515,'isMainPart',''),
  4951. (81770,13515,'isSubPart',''),
  4952. (81771,13515,'callForContribution',''),
  4953. (81772,13516,'isMainPart',''),
  4954. (81773,13516,'isSubPart',''),
  4955. (81774,13516,'callForContribution',''),
  4956. (81775,13517,'isMainPart',''),
  4957. (81776,13517,'isSubPart',''),
  4958. (81777,13517,'callForContribution',''),
  4959. (81778,13518,'isMainPart',''),
  4960. (81779,13518,'isSubPart',''),
  4961. (81780,13518,'callForContribution',''),
  4962. (81781,13519,'isMainPart',''),
  4963. (81782,13519,'isSubPart',''),
  4964. (81783,13519,'callForContribution',''),
  4965. (81784,13520,'isMainPart',''),
  4966. (81785,13520,'isSubPart',''),
  4967. (81786,13520,'callForContribution',''),
  4968. (81787,13521,'isMainPart',''),
  4969. (81788,13521,'isSubPart',''),
  4970. (81789,13521,'callForContribution',''),
  4971. (81790,13522,'isMainPart',''),
  4972. (81791,13522,'isSubPart',''),
  4973. (81792,13522,'callForContribution',''),
  4974. (81793,13523,'isMainPart',''),
  4975. (81794,13523,'isSubPart',''),
  4976. (81795,13523,'callForContribution',''),
  4977. (81796,13524,'isMainPart',''),
  4978. (81797,13524,'isSubPart',''),
  4979. (81798,13524,'callForContribution',''),
  4980. (81799,13525,'isMainPart',''),
  4981. (81800,13525,'isSubPart',''),
  4982. (81801,13525,'callForContribution',''),
  4983. (81802,13526,'isMainPart',''),
  4984. (81803,13526,'isSubPart',''),
  4985. (81804,13526,'callForContribution',''),
  4986. (81805,13527,'isMainPart',''),
  4987. (81806,13527,'isSubPart',''),
  4988. (81807,13527,'callForContribution',''),
  4989. (81808,13528,'isMainPart',''),
  4990. (81809,13528,'isSubPart',''),
  4991. (81810,13528,'callForContribution',''),
  4992. (81811,13529,'isMainPart',''),
  4993. (81812,13529,'isSubPart',''),
  4994. (81813,13529,'callForContribution',''),
  4995. (81814,13530,'isMainPart',''),
  4996. (81815,13530,'isSubPart',''),
  4997. (81816,13530,'callForContribution',''),
  4998. (81817,13531,'isMainPart',''),
  4999. (81818,13531,'isSubPart',''),
  5000. (81819,13531,'callForContribution',''),
  5001. (81820,13532,'isMainPart',''),
  5002. (81821,13532,'isSubPart',''),
  5003. (81822,13532,'callForContribution',''),
  5004. (81823,13533,'isMainPart',''),
  5005. (81824,13533,'isSubPart',''),
  5006. (81825,13533,'callForContribution',''),
  5007. (81826,13534,'isMainPart',''),
  5008. (81827,13534,'isSubPart',''),
  5009. (81828,13534,'callForContribution',''),
  5010. (81829,13535,'isMainPart',''),
  5011. (81830,13535,'isSubPart',''),
  5012. (81831,13535,'callForContribution',''),
  5013. (81832,13536,'isMainPart',''),
  5014. (81833,13536,'isSubPart',''),
  5015. (81834,13536,'callForContribution',''),
  5016. (81835,13537,'isMainPart',''),
  5017. (81836,13537,'isSubPart',''),
  5018. (81837,13537,'callForContribution',''),
  5019. (81838,13538,'isMainPart',''),
  5020. (81839,13538,'isSubPart',''),
  5021. (81840,13538,'callForContribution',''),
  5022. (81841,13539,'isMainPart',''),
  5023. (81842,13539,'isSubPart',''),
  5024. (81843,13539,'callForContribution',''),
  5025. (81844,13540,'isMainPart',''),
  5026. (81845,13540,'isSubPart',''),
  5027. (81846,13540,'callForContribution',''),
  5028. (81847,13541,'isMainPart',''),
  5029. (81848,13541,'isSubPart',''),
  5030. (81849,13541,'callForContribution',''),
  5031. (81850,13542,'isMainPart',''),
  5032. (81851,13542,'isSubPart',''),
  5033. (81852,13542,'callForContribution',''),
  5034. (81853,13543,'isMainPart',''),
  5035. (81854,13543,'isSubPart',''),
  5036. (81855,13543,'callForContribution',''),
  5037. (81856,13544,'isMainPart',''),
  5038. (81857,13544,'isSubPart',''),
  5039. (81858,13544,'callForContribution',''),
  5040. (81859,13545,'isMainPart',''),
  5041. (81860,13545,'isSubPart',''),
  5042. (81861,13545,'callForContribution',''),
  5043. (81862,13546,'isMainPart',''),
  5044. (81863,13546,'isSubPart',''),
  5045. (81864,13546,'callForContribution',''),
  5046. (81865,13547,'isMainPart',''),
  5047. (81866,13547,'isSubPart',''),
  5048. (81867,13547,'callForContribution',''),
  5049. (81868,13548,'isMainPart',''),
  5050. (81869,13548,'isSubPart',''),
  5051. (81870,13548,'callForContribution',''),
  5052. (81871,13549,'isMainPart',''),
  5053. (81872,13549,'isSubPart',''),
  5054. (81873,13549,'callForContribution',''),
  5055. (81874,13550,'isMainPart',''),
  5056. (81875,13550,'isSubPart',''),
  5057. (81876,13550,'callForContribution',''),
  5058. (81877,13551,'isMainPart',''),
  5059. (81878,13551,'isSubPart',''),
  5060. (81879,13551,'callForContribution',''),
  5061. (81880,13552,'isMainPart',''),
  5062. (81881,13552,'isSubPart',''),
  5063. (81882,13552,'callForContribution',''),
  5064. (81883,13553,'isMainPart',''),
  5065. (81884,13553,'isSubPart',''),
  5066. (81885,13553,'callForContribution',''),
  5067. (81886,13554,'isMainPart',''),
  5068. (81887,13554,'isSubPart',''),
  5069. (81888,13554,'callForContribution',''),
  5070. (81889,13555,'isMainPart',''),
  5071. (81890,13555,'isSubPart',''),
  5072. (81891,13555,'callForContribution',''),
  5073. (81892,13556,'isMainPart',''),
  5074. (81893,13556,'isSubPart',''),
  5075. (81894,13556,'callForContribution',''),
  5076. (81895,13557,'isMainPart',''),
  5077. (81896,13557,'isSubPart',''),
  5078. (81897,13557,'callForContribution',''),
  5079. (81898,13558,'isMainPart',''),
  5080. (81899,13558,'isSubPart',''),
  5081. (81900,13558,'callForContribution',''),
  5082. (81901,13559,'isMainPart',''),
  5083. (81902,13559,'isSubPart',''),
  5084. (81903,13559,'callForContribution',''),
  5085. (81904,13560,'isMainPart',''),
  5086. (81905,13560,'isSubPart',''),
  5087. (81906,13560,'callForContribution',''),
  5088. (81907,13561,'isMainPart',''),
  5089. (81908,13561,'isSubPart',''),
  5090. (81909,13561,'callForContribution',''),
  5091. (81910,13562,'isMainPart',''),
  5092. (81911,13562,'isSubPart',''),
  5093. (81912,13562,'callForContribution',''),
  5094. (81913,13563,'isMainPart',''),
  5095. (81914,13563,'isSubPart',''),
  5096. (81915,13563,'callForContribution',''),
  5097. (81916,13564,'isMainPart',''),
  5098. (81917,13564,'isSubPart',''),
  5099. (81918,13564,'callForContribution',''),
  5100. (81919,13565,'isMainPart',''),
  5101. (81920,13565,'isSubPart',''),
  5102. (81921,13565,'callForContribution',''),
  5103. (81922,13566,'isMainPart',''),
  5104. (81923,13566,'isSubPart',''),
  5105. (81924,13566,'callForContribution',''),
  5106. (81925,13567,'isMainPart',''),
  5107. (81926,13567,'isSubPart',''),
  5108. (81927,13567,'callForContribution',''),
  5109. (81928,13568,'isMainPart',''),
  5110. (81929,13568,'isSubPart',''),
  5111. (81930,13568,'callForContribution',''),
  5112. (81931,13569,'isMainPart',''),
  5113. (81932,13569,'isSubPart',''),
  5114. (81933,13569,'callForContribution',''),
  5115. (81934,13570,'isMainPart',''),
  5116. (81935,13570,'isSubPart',''),
  5117. (81936,13570,'callForContribution',''),
  5118. (81937,13571,'isMainPart',''),
  5119. (81938,13571,'isSubPart',''),
  5120. (81939,13571,'callForContribution',''),
  5121. (81940,13572,'isMainPart',''),
  5122. (81941,13572,'isSubPart',''),
  5123. (81942,13572,'callForContribution',''),
  5124. (81943,13573,'isMainPart',''),
  5125. (81944,13573,'isSubPart',''),
  5126. (81945,13573,'callForContribution',''),
  5127. (81946,13574,'isMainPart',''),
  5128. (81947,13574,'isSubPart',''),
  5129. (81948,13574,'callForContribution',''),
  5130. (81949,13575,'isMainPart',''),
  5131. (81950,13575,'isSubPart',''),
  5132. (81951,13575,'callForContribution',''),
  5133. (81952,13576,'isMainPart',''),
  5134. (81953,13576,'isSubPart',''),
  5135. (81954,13576,'callForContribution',''),
  5136. (81955,13577,'isMainPart',''),
  5137. (81956,13577,'isSubPart',''),
  5138. (81957,13577,'callForContribution',''),
  5139. (81958,13578,'isMainPart',''),
  5140. (81959,13578,'isSubPart',''),
  5141. (81960,13578,'callForContribution',''),
  5142. (81961,13579,'isMainPart',''),
  5143. (81962,13579,'isSubPart',''),
  5144. (81963,13579,'callForContribution',''),
  5145. (81964,13580,'isMainPart',''),
  5146. (81965,13580,'isSubPart',''),
  5147. (81966,13580,'callForContribution',''),
  5148. (81967,13581,'isMainPart',''),
  5149. (81968,13581,'isSubPart',''),
  5150. (81969,13581,'callForContribution',''),
  5151. (81970,13582,'isMainPart',''),
  5152. (81971,13582,'isSubPart',''),
  5153. (81972,13582,'callForContribution',''),
  5154. (81973,13583,'isMainPart',''),
  5155. (81974,13583,'isSubPart',''),
  5156. (81975,13583,'callForContribution',''),
  5157. (81976,13584,'isMainPart',''),
  5158. (81977,13584,'isSubPart',''),
  5159. (81978,13584,'callForContribution',''),
  5160. (81979,13585,'isMainPart',''),
  5161. (81980,13585,'isSubPart',''),
  5162. (81981,13585,'callForContribution',''),
  5163. (81982,13586,'isMainPart',''),
  5164. (81983,13586,'isSubPart',''),
  5165. (81984,13586,'callForContribution',''),
  5166. (81985,13587,'isMainPart',''),
  5167. (81986,13587,'isSubPart',''),
  5168. (81987,13587,'callForContribution',''),
  5169. (81988,13588,'isMainPart',''),
  5170. (81989,13588,'isSubPart',''),
  5171. (81990,13588,'callForContribution',''),
  5172. (81991,13589,'isMainPart',''),
  5173. (81992,13589,'isSubPart',''),
  5174. (81993,13589,'callForContribution',''),
  5175. (81994,13590,'isMainPart',''),
  5176. (81995,13590,'isSubPart',''),
  5177. (81996,13590,'callForContribution',''),
  5178. (81997,13591,'isMainPart',''),
  5179. (81998,13591,'isSubPart',''),
  5180. (81999,13591,'callForContribution',''),
  5181. (82000,13592,'isMainPart',''),
  5182. (82001,13592,'isSubPart',''),
  5183. (82002,13592,'callForContribution',''),
  5184. (82003,13593,'isMainPart',''),
  5185. (82004,13593,'isSubPart',''),
  5186. (82005,13593,'callForContribution',''),
  5187. (82006,13594,'isMainPart',''),
  5188. (82007,13594,'isSubPart',''),
  5189. (82008,13594,'callForContribution',''),
  5190. (82009,13595,'isMainPart',''),
  5191. (82010,13595,'isSubPart',''),
  5192. (82011,13595,'callForContribution',''),
  5193. (82012,13596,'isMainPart',''),
  5194. (82013,13596,'isSubPart',''),
  5195. (82014,13596,'callForContribution',''),
  5196. (82015,13597,'isMainPart',''),
  5197. (82016,13597,'isSubPart',''),
  5198. (82017,13597,'callForContribution',''),
  5199. (82018,13598,'isMainPart',''),
  5200. (82019,13598,'isSubPart',''),
  5201. (82020,13598,'callForContribution',''),
  5202. (82021,13599,'isMainPart',''),
  5203. (82022,13599,'isSubPart',''),
  5204. (82023,13599,'callForContribution',''),
  5205. (82024,13600,'isMainPart',''),
  5206. (82025,13600,'isSubPart',''),
  5207. (82026,13600,'callForContribution',''),
  5208. (82027,13601,'isMainPart',''),
  5209. (82028,13601,'isSubPart',''),
  5210. (82029,13601,'callForContribution',''),
  5211. (82030,13602,'isMainPart',''),
  5212. (82031,13602,'isSubPart',''),
  5213. (82032,13602,'callForContribution',''),
  5214. (82033,13603,'isMainPart',''),
  5215. (82034,13603,'isSubPart',''),
  5216. (82035,13603,'callForContribution',''),
  5217. (82036,13604,'isMainPart',''),
  5218. (82037,13604,'isSubPart',''),
  5219. (82038,13604,'callForContribution',''),
  5220. (82039,13605,'isMainPart',''),
  5221. (82040,13605,'isSubPart',''),
  5222. (82041,13605,'callForContribution',''),
  5223. (82042,13606,'isMainPart',''),
  5224. (82043,13606,'isSubPart',''),
  5225. (82044,13606,'callForContribution',''),
  5226. (82045,13607,'isMainPart',''),
  5227. (82046,13607,'isSubPart',''),
  5228. (82047,13607,'callForContribution',''),
  5229. (82048,13608,'isMainPart',''),
  5230. (82049,13608,'isSubPart',''),
  5231. (82050,13608,'callForContribution',''),
  5232. (82051,13609,'isMainPart',''),
  5233. (82052,13609,'isSubPart',''),
  5234. (82053,13609,'callForContribution',''),
  5235. (82054,13610,'isMainPart',''),
  5236. (82055,13610,'isSubPart',''),
  5237. (82056,13610,'callForContribution',''),
  5238. (82057,13611,'isMainPart',''),
  5239. (82058,13611,'isSubPart',''),
  5240. (82059,13611,'callForContribution',''),
  5241. (82060,13612,'isMainPart',''),
  5242. (82061,13612,'isSubPart',''),
  5243. (82062,13612,'callForContribution',''),
  5244. (82063,13613,'isMainPart',''),
  5245. (82064,13613,'isSubPart',''),
  5246. (82065,13613,'callForContribution',''),
  5247. (82066,13614,'isMainPart',''),
  5248. (82067,13614,'isSubPart',''),
  5249. (82068,13614,'callForContribution',''),
  5250. (82069,13615,'isMainPart',''),
  5251. (82070,13615,'isSubPart',''),
  5252. (82071,13615,'callForContribution',''),
  5253. (82072,13616,'isMainPart',''),
  5254. (82073,13616,'isSubPart',''),
  5255. (82074,13616,'callForContribution',''),
  5256. (82075,13617,'isMainPart',''),
  5257. (82076,13617,'isSubPart',''),
  5258. (82077,13617,'callForContribution',''),
  5259. (82078,13618,'isMainPart',''),
  5260. (82079,13618,'isSubPart',''),
  5261. (82080,13618,'callForContribution',''),
  5262. (82081,13619,'isMainPart',''),
  5263. (82082,13619,'isSubPart',''),
  5264. (82083,13619,'callForContribution',''),
  5265. (82084,13620,'isMainPart',''),
  5266. (82085,13620,'isSubPart',''),
  5267. (82086,13620,'callForContribution',''),
  5268. (82087,13621,'isMainPart',''),
  5269. (82088,13621,'isSubPart',''),
  5270. (82089,13621,'callForContribution',''),
  5271. (82090,13622,'isMainPart',''),
  5272. (82091,13622,'isSubPart',''),
  5273. (82092,13622,'callForContribution',''),
  5274. (82093,13623,'isMainPart',''),
  5275. (82094,13623,'isSubPart',''),
  5276. (82095,13623,'callForContribution',''),
  5277. (82096,13624,'isMainPart',''),
  5278. (82097,13624,'isSubPart',''),
  5279. (82098,13624,'callForContribution',''),
  5280. (82099,13625,'isMainPart',''),
  5281. (82100,13625,'isSubPart',''),
  5282. (82101,13625,'callForContribution',''),
  5283. (82102,13626,'isMainPart',''),
  5284. (82103,13626,'isSubPart',''),
  5285. (82104,13626,'callForContribution',''),
  5286. (82105,13627,'isMainPart',''),
  5287. (82106,13627,'isSubPart',''),
  5288. (82107,13627,'callForContribution',''),
  5289. (82108,13628,'isMainPart',''),
  5290. (82109,13628,'isSubPart',''),
  5291. (82110,13628,'callForContribution',''),
  5292. (82111,13629,'isMainPart',''),
  5293. (82112,13629,'isSubPart',''),
  5294. (82113,13629,'callForContribution',''),
  5295. (82114,13630,'isMainPart',''),
  5296. (82115,13630,'isSubPart',''),
  5297. (82116,13630,'callForContribution',''),
  5298. (82117,13631,'isMainPart',''),
  5299. (82118,13631,'isSubPart',''),
  5300. (82119,13631,'callForContribution',''),
  5301. (82120,13632,'isMainPart',''),
  5302. (82121,13632,'isSubPart',''),
  5303. (82122,13632,'callForContribution',''),
  5304. (82123,13633,'isMainPart',''),
  5305. (82124,13633,'isSubPart',''),
  5306. (82125,13633,'callForContribution',''),
  5307. (82126,13634,'isMainPart',''),
  5308. (82127,13634,'isSubPart',''),
  5309. (82128,13634,'callForContribution',''),
  5310. (82129,13635,'isMainPart',''),
  5311. (82130,13635,'isSubPart',''),
  5312. (82131,13635,'callForContribution',''),
  5313. (82132,13636,'isMainPart',''),
  5314. (82133,13636,'isSubPart',''),
  5315. (82134,13636,'callForContribution',''),
  5316. (82135,13637,'isMainPart',''),
  5317. (82136,13637,'isSubPart',''),
  5318. (82137,13637,'callForContribution',''),
  5319. (82138,13638,'isMainPart',''),
  5320. (82139,13638,'isSubPart',''),
  5321. (82140,13638,'callForContribution',''),
  5322. (82141,13639,'isMainPart',''),
  5323. (82142,13639,'isSubPart',''),
  5324. (82143,13639,'callForContribution',''),
  5325. (82144,13640,'isMainPart',''),
  5326. (82145,13640,'isSubPart',''),
  5327. (82146,13640,'callForContribution',''),
  5328. (82147,13641,'isMainPart',''),
  5329. (82148,13641,'isSubPart',''),
  5330. (82149,13641,'callForContribution',''),
  5331. (82150,13642,'isMainPart',''),
  5332. (82151,13642,'isSubPart',''),
  5333. (82152,13642,'callForContribution',''),
  5334. (82153,13643,'isMainPart',''),
  5335. (82154,13643,'isSubPart',''),
  5336. (82155,13643,'callForContribution',''),
  5337. (82156,13644,'isMainPart',''),
  5338. (82157,13644,'isSubPart',''),
  5339. (82158,13644,'callForContribution',''),
  5340. (82159,13645,'isMainPart',''),
  5341. (82160,13645,'isSubPart',''),
  5342. (82161,13645,'callForContribution',''),
  5343. (82162,13646,'isMainPart',''),
  5344. (82163,13646,'isSubPart',''),
  5345. (82164,13646,'callForContribution',''),
  5346. (82165,13647,'isMainPart',''),
  5347. (82166,13647,'isSubPart',''),
  5348. (82167,13647,'callForContribution',''),
  5349. (82168,13648,'isMainPart',''),
  5350. (82169,13648,'isSubPart',''),
  5351. (82170,13648,'callForContribution',''),
  5352. (82171,13649,'isMainPart',''),
  5353. (82172,13649,'isSubPart',''),
  5354. (82173,13649,'callForContribution',''),
  5355. (82174,13650,'isMainPart',''),
  5356. (82175,13650,'isSubPart',''),
  5357. (82176,13650,'callForContribution',''),
  5358. (82177,13651,'isMainPart',''),
  5359. (82178,13651,'isSubPart',''),
  5360. (82179,13651,'callForContribution',''),
  5361. (82180,13652,'isMainPart',''),
  5362. (82181,13652,'isSubPart',''),
  5363. (82182,13652,'callForContribution',''),
  5364. (82183,13653,'isMainPart',''),
  5365. (82184,13653,'isSubPart',''),
  5366. (82185,13653,'callForContribution',''),
  5367. (82186,13654,'isMainPart',''),
  5368. (82187,13654,'isSubPart',''),
  5369. (82188,13654,'callForContribution',''),
  5370. (82189,13655,'isMainPart',''),
  5371. (82190,13655,'isSubPart',''),
  5372. (82191,13655,'callForContribution',''),
  5373. (82192,13656,'isMainPart',''),
  5374. (82193,13656,'isSubPart',''),
  5375. (82194,13656,'callForContribution',''),
  5376. (82195,13657,'isMainPart',''),
  5377. (82196,13657,'isSubPart',''),
  5378. (82197,13657,'callForContribution',''),
  5379. (82198,13658,'isMainPart',''),
  5380. (82199,13658,'isSubPart',''),
  5381. (82200,13658,'callForContribution',''),
  5382. (82201,13659,'isMainPart',''),
  5383. (82202,13659,'isSubPart',''),
  5384. (82203,13659,'callForContribution',''),
  5385. (82204,13660,'isMainPart',''),
  5386. (82205,13660,'isSubPart',''),
  5387. (82206,13660,'callForContribution',''),
  5388. (82207,13661,'isMainPart',''),
  5389. (82208,13661,'isSubPart',''),
  5390. (82209,13661,'callForContribution',''),
  5391. (82210,13662,'isMainPart',''),
  5392. (82211,13662,'isSubPart',''),
  5393. (82212,13662,'callForContribution',''),
  5394. (82213,13663,'isMainPart',''),
  5395. (82214,13663,'isSubPart',''),
  5396. (82215,13663,'callForContribution',''),
  5397. (82216,13664,'isMainPart',''),
  5398. (82217,13664,'isSubPart',''),
  5399. (82218,13664,'callForContribution',''),
  5400. (82219,13665,'isMainPart',''),
  5401. (82220,13665,'isSubPart',''),
  5402. (82221,13665,'callForContribution',''),
  5403. (82222,13666,'isMainPart',''),
  5404. (82223,13666,'isSubPart',''),
  5405. (82224,13666,'callForContribution',''),
  5406. (82225,13667,'isMainPart',''),
  5407. (82226,13667,'isSubPart',''),
  5408. (82227,13667,'callForContribution',''),
  5409. (82228,13668,'isMainPart',''),
  5410. (82229,13668,'isSubPart',''),
  5411. (82230,13668,'callForContribution',''),
  5412. (82231,13669,'isMainPart',''),
  5413. (82232,13669,'isSubPart',''),
  5414. (82233,13669,'callForContribution',''),
  5415. (82234,13670,'isMainPart',''),
  5416. (82235,13670,'isSubPart',''),
  5417. (82236,13670,'callForContribution',''),
  5418. (82237,13671,'isMainPart',''),
  5419. (82238,13671,'isSubPart',''),
  5420. (82239,13671,'callForContribution',''),
  5421. (82240,13672,'isMainPart',''),
  5422. (82241,13672,'isSubPart',''),
  5423. (82242,13672,'callForContribution',''),
  5424. (82243,13673,'isMainPart',''),
  5425. (82244,13673,'isSubPart',''),
  5426. (82245,13673,'callForContribution',''),
  5427. (82246,13674,'isMainPart',''),
  5428. (82247,13674,'isSubPart',''),
  5429. (82248,13674,'callForContribution',''),
  5430. (82249,13675,'isMainPart',''),
  5431. (82250,13675,'isSubPart',''),
  5432. (82251,13675,'callForContribution',''),
  5433. (82252,13676,'isMainPart',''),
  5434. (82253,13676,'isSubPart',''),
  5435. (82254,13676,'callForContribution',''),
  5436. (82255,13677,'isMainPart',''),
  5437. (82256,13677,'isSubPart',''),
  5438. (82257,13677,'callForContribution',''),
  5439. (82258,13678,'isMainPart',''),
  5440. (82259,13678,'isSubPart',''),
  5441. (82260,13678,'callForContribution',''),
  5442. (82261,13679,'isMainPart',''),
  5443. (82262,13679,'isSubPart',''),
  5444. (82263,13679,'callForContribution',''),
  5445. (82264,13680,'isMainPart',''),
  5446. (82265,13680,'isSubPart',''),
  5447. (82266,13680,'callForContribution',''),
  5448. (82267,13681,'isMainPart',''),
  5449. (82268,13681,'isSubPart',''),
  5450. (82269,13681,'callForContribution',''),
  5451. (82270,13682,'isMainPart',''),
  5452. (82271,13682,'isSubPart',''),
  5453. (82272,13682,'callForContribution',''),
  5454. (82273,13683,'isMainPart',''),
  5455. (82274,13683,'isSubPart',''),
  5456. (82275,13683,'callForContribution',''),
  5457. (82276,13684,'isMainPart',''),
  5458. (82277,13684,'isSubPart',''),
  5459. (82278,13684,'callForContribution',''),
  5460. (82279,13685,'isMainPart',''),
  5461. (82280,13685,'isSubPart',''),
  5462. (82281,13685,'callForContribution',''),
  5463. (82282,13686,'isMainPart',''),
  5464. (82283,13686,'isSubPart',''),
  5465. (82284,13686,'callForContribution',''),
  5466. (82285,13687,'isMainPart',''),
  5467. (82286,13687,'isSubPart',''),
  5468. (82287,13687,'callForContribution',''),
  5469. (82288,13688,'isMainPart',''),
  5470. (82289,13688,'isSubPart',''),
  5471. (82290,13688,'callForContribution',''),
  5472. (82291,13689,'isMainPart',''),
  5473. (82292,13689,'isSubPart',''),
  5474. (82293,13689,'callForContribution',''),
  5475. (82294,13690,'isMainPart',''),
  5476. (82295,13690,'isSubPart',''),
  5477. (82296,13690,'callForContribution',''),
  5478. (82297,13691,'isMainPart',''),
  5479. (82298,13691,'isSubPart',''),
  5480. (82299,13691,'callForContribution',''),
  5481. (82300,13692,'isMainPart',''),
  5482. (82301,13692,'isSubPart',''),
  5483. (82302,13692,'callForContribution',''),
  5484. (82303,13693,'isMainPart',''),
  5485. (82304,13693,'isSubPart',''),
  5486. (82305,13693,'callForContribution',''),
  5487. (82306,13694,'isMainPart',''),
  5488. (82307,13694,'isSubPart',''),
  5489. (82308,13694,'callForContribution',''),
  5490. (82309,13695,'isMainPart',''),
  5491. (82310,13695,'isSubPart',''),
  5492. (82311,13695,'callForContribution',''),
  5493. (82312,13696,'isMainPart',''),
  5494. (82313,13696,'isSubPart',''),
  5495. (82314,13696,'callForContribution',''),
  5496. (82315,13697,'isMainPart',''),
  5497. (82316,13697,'isSubPart',''),
  5498. (82317,13697,'callForContribution',''),
  5499. (82318,13698,'isMainPart',''),
  5500. (82319,13698,'isSubPart',''),
  5501. (82320,13698,'callForContribution',''),
  5502. (82321,13699,'isMainPart',''),
  5503. (82322,13699,'isSubPart',''),
  5504. (82323,13699,'callForContribution',''),
  5505. (82324,13700,'isMainPart',''),
  5506. (82325,13700,'isSubPart',''),
  5507. (82326,13700,'callForContribution',''),
  5508. (82327,13701,'isMainPart',''),
  5509. (82328,13701,'isSubPart',''),
  5510. (82329,13701,'callForContribution',''),
  5511. (82330,13702,'isMainPart',''),
  5512. (82331,13702,'isSubPart',''),
  5513. (82332,13702,'callForContribution',''),
  5514. (82333,13703,'isMainPart',''),
  5515. (82334,13703,'isSubPart',''),
  5516. (82335,13703,'callForContribution',''),
  5517. (82336,13704,'isMainPart',''),
  5518. (82337,13704,'isSubPart',''),
  5519. (82338,13704,'callForContribution',''),
  5520. (82339,13705,'isMainPart',''),
  5521. (82340,13705,'isSubPart',''),
  5522. (82341,13705,'callForContribution',''),
  5523. (82342,13706,'isMainPart',''),
  5524. (82343,13706,'isSubPart',''),
  5525. (82344,13706,'callForContribution',''),
  5526. (82345,13707,'isMainPart',''),
  5527. (82346,13707,'isSubPart',''),
  5528. (82347,13707,'callForContribution',''),
  5529. (82348,13708,'isMainPart',''),
  5530. (82349,13708,'isSubPart',''),
  5531. (82350,13708,'callForContribution',''),
  5532. (82351,13709,'isMainPart',''),
  5533. (82352,13709,'isSubPart',''),
  5534. (82353,13709,'callForContribution',''),
  5535. (82354,13710,'isMainPart',''),
  5536. (82355,13710,'isSubPart',''),
  5537. (82356,13710,'callForContribution',''),
  5538. (82357,13711,'isMainPart',''),
  5539. (82358,13711,'isSubPart',''),
  5540. (82359,13711,'callForContribution',''),
  5541. (82360,13712,'isMainPart',''),
  5542. (82361,13712,'isSubPart',''),
  5543. (82362,13712,'callForContribution',''),
  5544. (82363,13713,'isMainPart',''),
  5545. (82364,13713,'isSubPart',''),
  5546. (82365,13713,'callForContribution',''),
  5547. (82366,13714,'isMainPart',''),
  5548. (82367,13714,'isSubPart',''),
  5549. (82368,13714,'callForContribution',''),
  5550. (82369,13715,'isMainPart',''),
  5551. (82370,13715,'isSubPart',''),
  5552. (82371,13715,'callForContribution',''),
  5553. (82372,13716,'isMainPart',''),
  5554. (82373,13716,'isSubPart',''),
  5555. (82374,13716,'callForContribution',''),
  5556. (82375,13717,'isMainPart',''),
  5557. (82376,13717,'isSubPart',''),
  5558. (82377,13717,'callForContribution',''),
  5559. (82378,13718,'isMainPart',''),
  5560. (82379,13718,'isSubPart',''),
  5561. (82380,13718,'callForContribution',''),
  5562. (82381,13719,'isMainPart',''),
  5563. (82382,13719,'isSubPart',''),
  5564. (82383,13719,'callForContribution',''),
  5565. (82384,13720,'isMainPart',''),
  5566. (82385,13720,'isSubPart',''),
  5567. (82386,13720,'callForContribution',''),
  5568. (82387,13721,'isMainPart',''),
  5569. (82388,13721,'isSubPart',''),
  5570. (82389,13721,'callForContribution',''),
  5571. (82390,13722,'isMainPart',''),
  5572. (82391,13722,'isSubPart',''),
  5573. (82392,13722,'callForContribution',''),
  5574. (82393,13723,'isMainPart',''),
  5575. (82394,13723,'isSubPart',''),
  5576. (82395,13723,'callForContribution',''),
  5577. (82396,13724,'isMainPart',''),
  5578. (82397,13724,'isSubPart',''),
  5579. (82398,13724,'callForContribution',''),
  5580. (82399,13725,'isMainPart',''),
  5581. (82400,13725,'isSubPart',''),
  5582. (82401,13725,'callForContribution',''),
  5583. (82402,13726,'isMainPart',''),
  5584. (82403,13726,'isSubPart',''),
  5585. (82404,13726,'callForContribution',''),
  5586. (82405,13727,'isMainPart',''),
  5587. (82406,13727,'isSubPart',''),
  5588. (82407,13727,'callForContribution',''),
  5589. (82408,13728,'isMainPart',''),
  5590. (82409,13728,'isSubPart',''),
  5591. (82410,13728,'callForContribution',''),
  5592. (82411,13729,'isMainPart',''),
  5593. (82412,13729,'isSubPart',''),
  5594. (82413,13729,'callForContribution',''),
  5595. (82414,13730,'isMainPart',''),
  5596. (82415,13730,'isSubPart',''),
  5597. (82416,13730,'callForContribution',''),
  5598. (82417,13731,'isMainPart',''),
  5599. (82418,13731,'isSubPart',''),
  5600. (82419,13731,'callForContribution',''),
  5601. (82420,13732,'isMainPart',''),
  5602. (82421,13732,'isSubPart',''),
  5603. (82422,13732,'callForContribution',''),
  5604. (82423,13733,'isMainPart',''),
  5605. (82424,13733,'isSubPart',''),
  5606. (82425,13733,'callForContribution',''),
  5607. (82426,13734,'isMainPart',''),
  5608. (82427,13734,'isSubPart',''),
  5609. (82428,13734,'callForContribution',''),
  5610. (82429,13735,'isMainPart',''),
  5611. (82430,13735,'isSubPart',''),
  5612. (82431,13735,'callForContribution',''),
  5613. (82432,13736,'isMainPart',''),
  5614. (82433,13736,'isSubPart',''),
  5615. (82434,13736,'callForContribution',''),
  5616. (82435,13737,'isMainPart',''),
  5617. (82436,13737,'isSubPart',''),
  5618. (82437,13737,'callForContribution',''),
  5619. (82438,13738,'isMainPart',''),
  5620. (82439,13738,'isSubPart',''),
  5621. (82440,13738,'callForContribution',''),
  5622. (82441,13739,'isMainPart',''),
  5623. (82442,13739,'isSubPart',''),
  5624. (82443,13739,'callForContribution',''),
  5625. (82444,13740,'isMainPart',''),
  5626. (82445,13740,'isSubPart',''),
  5627. (82446,13740,'callForContribution',''),
  5628. (82447,13741,'isMainPart',''),
  5629. (82448,13741,'isSubPart',''),
  5630. (82449,13741,'callForContribution',''),
  5631. (82450,13742,'isMainPart',''),
  5632. (82451,13742,'isSubPart',''),
  5633. (82452,13742,'callForContribution',''),
  5634. (82453,13743,'isMainPart',''),
  5635. (82454,13743,'isSubPart',''),
  5636. (82455,13743,'callForContribution',''),
  5637. (82456,13744,'isMainPart',''),
  5638. (82457,13744,'isSubPart',''),
  5639. (82458,13744,'callForContribution',''),
  5640. (82459,13745,'isMainPart',''),
  5641. (82460,13745,'isSubPart',''),
  5642. (82461,13745,'callForContribution',''),
  5643. (82462,13746,'isMainPart',''),
  5644. (82463,13746,'isSubPart',''),
  5645. (82464,13746,'callForContribution',''),
  5646. (82465,13747,'isMainPart',''),
  5647. (82466,13747,'isSubPart',''),
  5648. (82467,13747,'callForContribution',''),
  5649. (82468,13748,'isMainPart',''),
  5650. (82469,13748,'isSubPart',''),
  5651. (82470,13748,'callForContribution',''),
  5652. (82471,13749,'isMainPart',''),
  5653. (82472,13749,'isSubPart',''),
  5654. (82473,13749,'callForContribution',''),
  5655. (82474,13750,'isMainPart',''),
  5656. (82475,13750,'isSubPart',''),
  5657. (82476,13750,'callForContribution',''),
  5658. (82477,13751,'isMainPart',''),
  5659. (82478,13751,'isSubPart',''),
  5660. (82479,13751,'callForContribution',''),
  5661. (82480,13752,'isMainPart',''),
  5662. (82481,13752,'isSubPart',''),
  5663. (82482,13752,'callForContribution',''),
  5664. (82483,13753,'isMainPart',''),
  5665. (82484,13753,'isSubPart',''),
  5666. (82485,13753,'callForContribution',''),
  5667. (82486,13754,'isMainPart',''),
  5668. (82487,13754,'isSubPart',''),
  5669. (82488,13754,'callForContribution',''),
  5670. (82489,13755,'isMainPart',''),
  5671. (82490,13755,'isSubPart',''),
  5672. (82491,13755,'callForContribution',''),
  5673. (82492,13756,'isMainPart',''),
  5674. (82493,13756,'isSubPart',''),
  5675. (82494,13756,'callForContribution',''),
  5676. (82495,13757,'isMainPart',''),
  5677. (82496,13757,'isSubPart',''),
  5678. (82497,13757,'callForContribution',''),
  5679. (82498,13758,'isMainPart',''),
  5680. (82499,13758,'isSubPart',''),
  5681. (82500,13758,'callForContribution',''),
  5682. (82501,13759,'isMainPart',''),
  5683. (82502,13759,'isSubPart',''),
  5684. (82503,13759,'callForContribution',''),
  5685. (82504,13760,'isMainPart',''),
  5686. (82505,13760,'isSubPart',''),
  5687. (82506,13760,'callForContribution',''),
  5688. (82507,13761,'isMainPart',''),
  5689. (82508,13761,'isSubPart',''),
  5690. (82509,13761,'callForContribution',''),
  5691. (82510,13762,'isMainPart',''),
  5692. (82511,13762,'isSubPart',''),
  5693. (82512,13762,'callForContribution',''),
  5694. (82513,13763,'isMainPart',''),
  5695. (82514,13763,'isSubPart',''),
  5696. (82515,13763,'callForContribution',''),
  5697. (82516,13764,'isMainPart',''),
  5698. (82517,13764,'isSubPart',''),
  5699. (82518,13764,'callForContribution',''),
  5700. (82519,13765,'isMainPart',''),
  5701. (82520,13765,'isSubPart',''),
  5702. (82521,13765,'callForContribution',''),
  5703. (82522,13766,'isMainPart',''),
  5704. (82523,13766,'isSubPart',''),
  5705. (82524,13766,'callForContribution',''),
  5706. (82525,13767,'isMainPart',''),
  5707. (82526,13767,'isSubPart',''),
  5708. (82527,13767,'callForContribution',''),
  5709. (82528,13768,'isMainPart',''),
  5710. (82529,13768,'isSubPart',''),
  5711. (82530,13768,'callForContribution',''),
  5712. (82531,13769,'isMainPart',''),
  5713. (82532,13769,'isSubPart',''),
  5714. (82533,13769,'callForContribution',''),
  5715. (82534,13770,'isMainPart',''),
  5716. (82535,13770,'isSubPart',''),
  5717. (82536,13770,'callForContribution',''),
  5718. (82537,13771,'isMainPart',''),
  5719. (82538,13771,'isSubPart',''),
  5720. (82539,13771,'callForContribution',''),
  5721. (82540,13772,'isMainPart',''),
  5722. (82541,13772,'isSubPart',''),
  5723. (82542,13772,'callForContribution',''),
  5724. (82543,13773,'isMainPart',''),
  5725. (82544,13773,'isSubPart',''),
  5726. (82545,13773,'callForContribution',''),
  5727. (82546,13774,'isMainPart',''),
  5728. (82547,13774,'isSubPart',''),
  5729. (82548,13774,'callForContribution',''),
  5730. (82549,13775,'isMainPart',''),
  5731. (82550,13775,'isSubPart',''),
  5732. (82551,13775,'callForContribution',''),
  5733. (82552,13776,'isMainPart',''),
  5734. (82553,13776,'isSubPart',''),
  5735. (82554,13776,'callForContribution',''),
  5736. (82555,13777,'isMainPart',''),
  5737. (82556,13777,'isSubPart',''),
  5738. (82557,13777,'callForContribution',''),
  5739. (82558,13778,'isMainPart',''),
  5740. (82559,13778,'isSubPart',''),
  5741. (82560,13778,'callForContribution',''),
  5742. (82561,13779,'isMainPart',''),
  5743. (82562,13779,'isSubPart',''),
  5744. (82563,13779,'callForContribution',''),
  5745. (82564,13780,'isMainPart',''),
  5746. (82565,13780,'isSubPart',''),
  5747. (82566,13780,'callForContribution',''),
  5748. (82567,13781,'isMainPart',''),
  5749. (82568,13781,'isSubPart',''),
  5750. (82569,13781,'callForContribution',''),
  5751. (82570,13782,'isMainPart',''),
  5752. (82571,13782,'isSubPart',''),
  5753. (82572,13782,'callForContribution',''),
  5754. (82573,13783,'isMainPart',''),
  5755. (82574,13783,'isSubPart',''),
  5756. (82575,13783,'callForContribution',''),
  5757. (82576,13784,'isMainPart',''),
  5758. (82577,13784,'isSubPart',''),
  5759. (82578,13784,'callForContribution',''),
  5760. (82579,13785,'isMainPart',''),
  5761. (82580,13785,'isSubPart',''),
  5762. (82581,13785,'callForContribution',''),
  5763. (82582,13786,'isMainPart',''),
  5764. (82583,13786,'isSubPart',''),
  5765. (82584,13786,'callForContribution',''),
  5766. (82585,13787,'isMainPart',''),
  5767. (82586,13787,'isSubPart',''),
  5768. (82587,13787,'callForContribution',''),
  5769. (82588,13788,'isMainPart',''),
  5770. (82589,13788,'isSubPart',''),
  5771. (82590,13788,'callForContribution',''),
  5772. (82591,13789,'isMainPart',''),
  5773. (82592,13789,'isSubPart',''),
  5774. (82593,13789,'callForContribution',''),
  5775. (82594,13790,'isMainPart',''),
  5776. (82595,13790,'isSubPart',''),
  5777. (82596,13790,'callForContribution',''),
  5778. (82597,13791,'isMainPart',''),
  5779. (82598,13791,'isSubPart',''),
  5780. (82599,13791,'callForContribution',''),
  5781. (82600,13792,'isMainPart',''),
  5782. (82601,13792,'isSubPart',''),
  5783. (82602,13792,'callForContribution',''),
  5784. (82603,13793,'isMainPart',''),
  5785. (82604,13793,'isSubPart',''),
  5786. (82605,13793,'callForContribution',''),
  5787. (82606,13794,'isMainPart',''),
  5788. (82607,13794,'isSubPart',''),
  5789. (82608,13794,'callForContribution',''),
  5790. (82609,13795,'isMainPart',''),
  5791. (82610,13795,'isSubPart',''),
  5792. (82611,13795,'callForContribution',''),
  5793. (82612,13796,'isMainPart',''),
  5794. (82613,13796,'isSubPart',''),
  5795. (82614,13796,'callForContribution',''),
  5796. (82615,13797,'isMainPart',''),
  5797. (82616,13797,'isSubPart',''),
  5798. (82617,13797,'callForContribution',''),
  5799. (82618,13798,'isMainPart',''),
  5800. (82619,13798,'isSubPart',''),
  5801. (82620,13798,'callForContribution',''),
  5802. (82621,13799,'isMainPart',''),
  5803. (82622,13799,'isSubPart',''),
  5804. (82623,13799,'callForContribution',''),
  5805. (82624,13800,'isMainPart',''),
  5806. (82625,13800,'isSubPart',''),
  5807. (82626,13800,'callForContribution',''),
  5808. (82627,13801,'isMainPart',''),
  5809. (82628,13801,'isSubPart',''),
  5810. (82629,13801,'callForContribution',''),
  5811. (82630,13802,'isMainPart',''),
  5812. (82631,13802,'isSubPart',''),
  5813. (82632,13802,'callForContribution',''),
  5814. (82633,13803,'isMainPart',''),
  5815. (82634,13803,'isSubPart',''),
  5816. (82635,13803,'callForContribution',''),
  5817. (82636,13804,'isMainPart',''),
  5818. (82637,13804,'isSubPart',''),
  5819. (82638,13804,'callForContribution',''),
  5820. (82639,13805,'isMainPart',''),
  5821. (82640,13805,'isSubPart',''),
  5822. (82641,13805,'callForContribution',''),
  5823. (82642,13806,'isMainPart',''),
  5824. (82643,13806,'isSubPart',''),
  5825. (82644,13806,'callForContribution',''),
  5826. (82645,13807,'isMainPart',''),
  5827. (82646,13807,'isSubPart',''),
  5828. (82647,13807,'callForContribution',''),
  5829. (82648,13808,'isMainPart',''),
  5830. (82649,13808,'isSubPart',''),
  5831. (82650,13808,'callForContribution',''),
  5832. (82651,13809,'isMainPart',''),
  5833. (82652,13809,'isSubPart',''),
  5834. (82653,13809,'callForContribution',''),
  5835. (82654,13810,'isMainPart',''),
  5836. (82655,13810,'isSubPart',''),
  5837. (82656,13810,'callForContribution',''),
  5838. (82657,13811,'isMainPart',''),
  5839. (82658,13811,'isSubPart',''),
  5840. (82659,13811,'callForContribution',''),
  5841. (82660,13812,'isMainPart',''),
  5842. (82661,13812,'isSubPart',''),
  5843. (82662,13812,'callForContribution',''),
  5844. (82663,13813,'isMainPart',''),
  5845. (82664,13813,'isSubPart',''),
  5846. (82665,13813,'callForContribution',''),
  5847. (82666,13814,'isMainPart',''),
  5848. (82667,13814,'isSubPart',''),
  5849. (82668,13814,'callForContribution',''),
  5850. (82669,13815,'isMainPart',''),
  5851. (82670,13815,'isSubPart',''),
  5852. (82671,13815,'callForContribution',''),
  5853. (82672,13816,'isMainPart',''),
  5854. (82673,13816,'isSubPart',''),
  5855. (82674,13816,'callForContribution',''),
  5856. (82675,13817,'isMainPart',''),
  5857. (82676,13817,'isSubPart',''),
  5858. (82677,13817,'callForContribution',''),
  5859. (82678,13818,'isMainPart',''),
  5860. (82679,13818,'isSubPart',''),
  5861. (82680,13818,'callForContribution',''),
  5862. (82681,13819,'isMainPart',''),
  5863. (82682,13819,'isSubPart',''),
  5864. (82683,13819,'callForContribution',''),
  5865. (82684,13820,'isMainPart',''),
  5866. (82685,13820,'isSubPart',''),
  5867. (82686,13820,'callForContribution',''),
  5868. (82687,13821,'isMainPart',''),
  5869. (82688,13821,'isSubPart',''),
  5870. (82689,13821,'callForContribution',''),
  5871. (82690,13822,'isMainPart',''),
  5872. (82691,13822,'isSubPart',''),
  5873. (82692,13822,'callForContribution',''),
  5874. (82693,13823,'isMainPart',''),
  5875. (82694,13823,'isSubPart',''),
  5876. (82695,13823,'callForContribution',''),
  5877. (82696,13824,'isMainPart',''),
  5878. (82697,13824,'isSubPart',''),
  5879. (82698,13824,'callForContribution',''),
  5880. (82699,13825,'isMainPart',''),
  5881. (82700,13825,'isSubPart',''),
  5882. (82701,13825,'callForContribution',''),
  5883. (82702,13826,'isMainPart',''),
  5884. (82703,13826,'isSubPart',''),
  5885. (82704,13826,'callForContribution',''),
  5886. (82705,13827,'isMainPart',''),
  5887. (82706,13827,'isSubPart',''),
  5888. (82707,13827,'callForContribution',''),
  5889. (82708,13828,'isMainPart',''),
  5890. (82709,13828,'isSubPart',''),
  5891. (82710,13828,'callForContribution',''),
  5892. (82711,13829,'isMainPart',''),
  5893. (82712,13829,'isSubPart',''),
  5894. (82713,13829,'callForContribution',''),
  5895. (82714,13830,'isMainPart',''),
  5896. (82715,13830,'isSubPart',''),
  5897. (82716,13830,'callForContribution',''),
  5898. (82717,13831,'isMainPart',''),
  5899. (82718,13831,'isSubPart',''),
  5900. (82719,13831,'callForContribution',''),
  5901. (82720,13832,'isMainPart',''),
  5902. (82721,13832,'isSubPart',''),
  5903. (82722,13832,'callForContribution',''),
  5904. (82723,13833,'isMainPart',''),
  5905. (82724,13833,'isSubPart',''),
  5906. (82725,13833,'callForContribution',''),
  5907. (82726,13834,'isMainPart',''),
  5908. (82727,13834,'isSubPart',''),
  5909. (82728,13834,'callForContribution',''),
  5910. (82729,13835,'isMainPart',''),
  5911. (82730,13835,'isSubPart',''),
  5912. (82731,13835,'callForContribution',''),
  5913. (82732,13836,'isMainPart',''),
  5914. (82733,13836,'isSubPart',''),
  5915. (82734,13836,'callForContribution',''),
  5916. (82735,13837,'isMainPart',''),
  5917. (82736,13837,'isSubPart',''),
  5918. (82737,13837,'callForContribution',''),
  5919. (82738,13838,'isMainPart',''),
  5920. (82739,13838,'isSubPart',''),
  5921. (82740,13838,'callForContribution',''),
  5922. (82741,13839,'isMainPart',''),
  5923. (82742,13839,'isSubPart',''),
  5924. (82743,13839,'callForContribution',''),
  5925. (82744,13840,'isMainPart',''),
  5926. (82745,13840,'isSubPart',''),
  5927. (82746,13840,'callForContribution',''),
  5928. (82747,13841,'isMainPart',''),
  5929. (82748,13841,'isSubPart',''),
  5930. (82749,13841,'callForContribution',''),
  5931. (82750,13842,'isMainPart',''),
  5932. (82751,13842,'isSubPart',''),
  5933. (82752,13842,'callForContribution',''),
  5934. (82753,13843,'isMainPart',''),
  5935. (82754,13843,'isSubPart',''),
  5936. (82755,13843,'callForContribution',''),
  5937. (82756,13844,'isMainPart',''),
  5938. (82757,13844,'isSubPart',''),
  5939. (82758,13844,'callForContribution',''),
  5940. (82759,13845,'isMainPart',''),
  5941. (82760,13845,'isSubPart',''),
  5942. (82761,13845,'callForContribution',''),
  5943. (82762,13846,'isMainPart',''),
  5944. (82763,13846,'isSubPart',''),
  5945. (82764,13846,'callForContribution',''),
  5946. (82765,13847,'isMainPart',''),
  5947. (82766,13847,'isSubPart',''),
  5948. (82767,13847,'callForContribution',''),
  5949. (82768,13848,'isMainPart',''),
  5950. (82769,13848,'isSubPart',''),
  5951. (82770,13848,'callForContribution',''),
  5952. (82771,13849,'isMainPart',''),
  5953. (82772,13849,'isSubPart',''),
  5954. (82773,13849,'callForContribution',''),
  5955. (82774,13850,'isMainPart',''),
  5956. (82775,13850,'isSubPart',''),
  5957. (82776,13850,'callForContribution',''),
  5958. (82777,13851,'isMainPart',''),
  5959. (82778,13851,'isSubPart',''),
  5960. (82779,13851,'callForContribution',''),
  5961. (82780,13852,'isMainPart',''),
  5962. (82781,13852,'isSubPart',''),
  5963. (82782,13852,'callForContribution',''),
  5964. (82783,13853,'isMainPart',''),
  5965. (82784,13853,'isSubPart',''),
  5966. (82785,13853,'callForContribution',''),
  5967. (82786,13854,'isMainPart',''),
  5968. (82787,13854,'isSubPart',''),
  5969. (82788,13854,'callForContribution',''),
  5970. (82789,13855,'isMainPart',''),
  5971. (82790,13855,'isSubPart',''),
  5972. (82791,13855,'callForContribution',''),
  5973. (82792,13856,'isMainPart',''),
  5974. (82793,13856,'isSubPart',''),
  5975. (82794,13856,'callForContribution',''),
  5976. (82795,13857,'isMainPart',''),
  5977. (82796,13857,'isSubPart',''),
  5978. (82797,13857,'callForContribution',''),
  5979. (82798,13858,'isMainPart',''),
  5980. (82799,13858,'isSubPart',''),
  5981. (82800,13858,'callForContribution',''),
  5982. (82801,13859,'isMainPart',''),
  5983. (82802,13859,'isSubPart',''),
  5984. (82803,13859,'callForContribution',''),
  5985. (82804,13860,'isMainPart',''),
  5986. (82805,13860,'isSubPart',''),
  5987. (82806,13860,'callForContribution',''),
  5988. (82807,13861,'isMainPart',''),
  5989. (82808,13861,'isSubPart',''),
  5990. (82809,13861,'callForContribution',''),
  5991. (82810,13862,'isMainPart',''),
  5992. (82811,13862,'isSubPart',''),
  5993. (82812,13862,'callForContribution',''),
  5994. (82813,13863,'isMainPart',''),
  5995. (82814,13863,'isSubPart',''),
  5996. (82815,13863,'callForContribution',''),
  5997. (82816,13864,'isMainPart',''),
  5998. (82817,13864,'isSubPart',''),
  5999. (82818,13864,'callForContribution',''),
  6000. (82819,13865,'isMainPart',''),
  6001. (82820,13865,'isSubPart',''),
  6002. (82821,13865,'callForContribution',''),
  6003. (82822,13866,'isMainPart',''),
  6004. (82823,13866,'isSubPart',''),
  6005. (82824,13866,'callForContribution',''),
  6006. (82825,13867,'isMainPart',''),
  6007. (82826,13867,'isSubPart',''),
  6008. (82827,13867,'callForContribution',''),
  6009. (82828,13868,'isMainPart',''),
  6010. (82829,13868,'isSubPart',''),
  6011. (82830,13868,'callForContribution',''),
  6012. (82831,13869,'isMainPart',''),
  6013. (82832,13869,'isSubPart',''),
  6014. (82833,13869,'callForContribution',''),
  6015. (82834,13870,'isMainPart',''),
  6016. (82835,13870,'isSubPart',''),
  6017. (82836,13870,'callForContribution',''),
  6018. (82837,13871,'isMainPart',''),
  6019. (82838,13871,'isSubPart',''),
  6020. (82839,13871,'callForContribution',''),
  6021. (82840,13872,'isMainPart',''),
  6022. (82841,13872,'isSubPart',''),
  6023. (82842,13872,'callForContribution',''),
  6024. (82843,13873,'isMainPart',''),
  6025. (82844,13873,'isSubPart',''),
  6026. (82845,13873,'callForContribution',''),
  6027. (82846,13874,'isMainPart',''),
  6028. (82847,13874,'isSubPart',''),
  6029. (82848,13874,'callForContribution',''),
  6030. (82849,13875,'isMainPart',''),
  6031. (82850,13875,'isSubPart',''),
  6032. (82851,13875,'callForContribution',''),
  6033. (82852,13876,'isMainPart',''),
  6034. (82853,13876,'isSubPart',''),
  6035. (82854,13876,'callForContribution',''),
  6036. (82855,13877,'isMainPart',''),
  6037. (82856,13877,'isSubPart',''),
  6038. (82857,13877,'callForContribution',''),
  6039. (82858,13878,'isMainPart',''),
  6040. (82859,13878,'isSubPart',''),
  6041. (82860,13878,'callForContribution',''),
  6042. (82861,13879,'isMainPart',''),
  6043. (82862,13879,'isSubPart',''),
  6044. (82863,13879,'callForContribution',''),
  6045. (82864,13880,'isMainPart',''),
  6046. (82865,13880,'isSubPart',''),
  6047. (82866,13880,'callForContribution',''),
  6048. (82867,13881,'isMainPart',''),
  6049. (82868,13881,'isSubPart',''),
  6050. (82869,13881,'callForContribution',''),
  6051. (82870,13882,'isMainPart',''),
  6052. (82871,13882,'isSubPart',''),
  6053. (82872,13882,'callForContribution',''),
  6054. (82873,13883,'isMainPart',''),
  6055. (82874,13883,'isSubPart',''),
  6056. (82875,13883,'callForContribution',''),
  6057. (82876,13884,'isMainPart',''),
  6058. (82877,13884,'isSubPart',''),
  6059. (82878,13884,'callForContribution',''),
  6060. (82879,13885,'isMainPart',''),
  6061. (82880,13885,'isSubPart',''),
  6062. (82881,13885,'callForContribution',''),
  6063. (82882,13886,'isMainPart',''),
  6064. (82883,13886,'isSubPart',''),
  6065. (82884,13886,'callForContribution',''),
  6066. (82885,13887,'isMainPart',''),
  6067. (82886,13887,'isSubPart',''),
  6068. (82887,13887,'callForContribution',''),
  6069. (82888,13888,'isMainPart',''),
  6070. (82889,13888,'isSubPart',''),
  6071. (82890,13888,'callForContribution',''),
  6072. (82891,13889,'isMainPart',''),
  6073. (82892,13889,'isSubPart',''),
  6074. (82893,13889,'callForContribution',''),
  6075. (82894,13890,'isMainPart',''),
  6076. (82895,13890,'isSubPart',''),
  6077. (82896,13890,'callForContribution',''),
  6078. (82897,13891,'isMainPart',''),
  6079. (82898,13891,'isSubPart',''),
  6080. (82899,13891,'callForContribution',''),
  6081. (82900,13892,'isSubPart',''),
  6082. (82901,13892,'callForContribution',''),
  6083. (82902,13893,'callForContribution',''),
  6084. (82903,13894,'callForContribution',''),
  6085. (82904,13895,'isSubPart',''),
  6086. (82905,13895,'callForContribution',''),
  6087. (82906,13896,'isSubPart',''),
  6088. (82907,13896,'callForContribution',''),
  6089. (82908,13897,'isMainPart',''),
  6090. (82909,13897,'callForContribution',''),
  6091. (82910,13898,'isMainPart',''),
  6092. (82911,13898,'callForContribution',''),
  6093. (82912,13899,'isMainPart',''),
  6094. (82913,13899,'callForContribution',''),
  6095. (82914,13900,'isMainPart',''),
  6096. (82915,13900,'callForContribution',''),
  6097. (82916,13901,'isMainPart',''),
  6098. (82917,13901,'callForContribution',''),
  6099. (82918,13902,'isMainPart',''),
  6100. (82919,13902,'callForContribution',''),
  6101. (82920,13903,'isMainPart',''),
  6102. (82921,13903,'callForContribution',''),
  6103. (82922,13904,'isMainPart',''),
  6104. (82923,13904,'callForContribution',''),
  6105. (82924,13892,'_edit_lock','1699518447:1'),
  6106. (82925,13193,'_edit_last','1'),
  6107. (82926,13893,'_edit_last','1'),
  6108. (82927,13894,'_edit_last','1'),
  6109. (82928,13843,'_edit_lock','1699517852:1'),
  6110. (82929,13895,'_edit_lock','1699518064:1'),
  6111. (82930,13892,'_edit_last','1'),
  6112. (82951,13205,'_rvy_base_post_id','13205'),
  6113. (82952,13205,'_edit_lock','1699519315:1'),
  6114. (82953,14680,'_rvy_published_gmt','2023-11-09 08:40:52'),
  6115. (82954,14680,'_rvy_prev_revision_status','pending-revision'),
  6116. (82955,14680,'_rvy_approved_by','1'),
  6117. (82956,13205,'_edit_last','1'),
  6118. (83223,14706,'_pingme','1'),
  6119. (83224,14706,'_encloseme','1'),
  6120. (83225,14706,'index','10'),
  6121. (83226,14706,'_product_image_gallery',''),
  6122. (83227,14706,'isMainPart',''),
  6123. (83228,14706,'isSubPart',''),
  6124. (83229,14706,'callForContribution',''),
  6125. (83230,14706,'_rvy_base_post_id','13192'),
  6126. (83231,13192,'_rvy_has_revisions','1'),
  6127. (83232,14706,'_edit_lock','1699550252:6'),
  6128. (83233,14707,'_pingme','1'),
  6129. (83234,14707,'_encloseme','1'),
  6130. (83235,14707,'index','10'),
  6131. (83236,14707,'_product_image_gallery',''),
  6132. (83237,14707,'isMainPart',''),
  6133. (83238,14707,'isSubPart',''),
  6134. (83239,14707,'callForContribution',''),
  6135. (83241,14707,'_rvy_base_post_id','13192'),
  6136. (83242,14707,'_edit_lock','1699550273:6'),
  6137. (83243,14708,'_pingme','1'),
  6138. (83244,14708,'_encloseme','1'),
  6139. (83245,14708,'index','20'),
  6140. (83246,14708,'_product_image_gallery',''),
  6141. (83247,14708,'_rvy_base_post_id','13193'),
  6142. (83248,14708,'_edit_lock','1699550292:6'),
  6143. (83249,14708,'isMainPart',''),
  6144. (83250,14708,'isSubPart',''),
  6145. (83251,14708,'callForContribution','oui'),
  6146. (83252,14708,'_edit_last','1'),
  6147. (83264,13192,'_rvy_base_post_id','13192'),
  6148. (83265,13192,'_edit_lock','1699551610:1'),
  6149. (83266,14709,'_rvy_published_gmt','2023-11-09 17:38:49'),
  6150. (83267,14709,'_rvy_prev_revision_status','pending-revision'),
  6151. (83268,14709,'_rvy_approved_by','1'),
  6152. (83269,13192,'_edit_last','1');
  6153. /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
  6154. UNLOCK TABLES;
  6155. --
  6156. -- Table structure for table `wp_posts`
  6157. --
  6158. DROP TABLE IF EXISTS `wp_posts`;
  6159. /*!40101 SET @saved_cs_client = @@character_set_client */;
  6160. /*!40101 SET character_set_client = utf8 */;
  6161. CREATE TABLE `wp_posts` (
  6162. `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  6163. `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  6164. `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  6165. `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  6166. `post_content` longtext NOT NULL,
  6167. `post_title` text NOT NULL,
  6168. `post_excerpt` text NOT NULL,
  6169. `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  6170. `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  6171. `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  6172. `post_password` varchar(255) NOT NULL DEFAULT '',
  6173. `post_name` varchar(200) NOT NULL DEFAULT '',
  6174. `to_ping` text NOT NULL,
  6175. `pinged` text NOT NULL,
  6176. `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  6177. `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  6178. `post_content_filtered` longtext NOT NULL,
  6179. `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  6180. `guid` varchar(255) NOT NULL DEFAULT '',
  6181. `menu_order` int(11) NOT NULL DEFAULT 0,
  6182. `post_type` varchar(20) NOT NULL DEFAULT 'post',
  6183. `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  6184. `comment_count` bigint(20) NOT NULL DEFAULT 0,
  6185. PRIMARY KEY (`ID`),
  6186. KEY `post_name` (`post_name`(191)),
  6187. KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  6188. KEY `post_parent` (`post_parent`),
  6189. KEY `post_author` (`post_author`)
  6190. ) ENGINE=InnoDB AUTO_INCREMENT=14712 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  6191. /*!40101 SET character_set_client = @saved_cs_client */;
  6192. --
  6193. -- Dumping data for table `wp_posts`
  6194. --
  6195. LOCK TABLES `wp_posts` WRITE;
  6196. /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
  6197. INSERT INTO `wp_posts` VALUES
  6198. (2,1,'2023-05-15 04:26:03','2023-05-15 02:26:03','<!-- wp:paragraph -->\n<p>Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil).</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>…ou quelque chose comme cela :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur <a href=\"https://localhost/wp/wp-admin/\">votre tableau de bord</a> pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !</p>\n<!-- /wp:paragraph -->','Page d’exemple','','publish','closed','open','','page-d-exemple','','','2023-05-15 04:26:03','2023-05-15 02:26:03','',0,'https://localhost/?page_id=2',0,'page','',0),
  6199. (3,1,'2023-05-15 04:26:03','2023-05-15 02:26:03','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Qui sommes-nous&nbsp;?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>L’adresse de notre site est&nbsp;: https://localhost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Commentaires</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici&nbsp;: https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Médias</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez «&nbsp;Se souvenir de moi&nbsp;», votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contenu embarqué depuis d’autres sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Utilisation et transmission de vos données personnelles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Durées de stockage de vos données</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Les droits que vous avez sur vos données</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Où vos données sont envoyées</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.</p>\n<!-- /wp:paragraph -->','Politique de confidentialité','','publish','closed','open','','politique-de-confidentialite','','','2023-10-23 11:43:49','2023-10-23 09:43:49','',0,'https://localhost/?page_id=3',0,'page','',0),
  6200. (4,1,'2023-05-15 04:26:10','0000-00-00 00:00:00','','Brouillon auto','','auto-draft','open','open','','','','','2023-05-15 04:26:10','0000-00-00 00:00:00','',0,'https://localhost/?p=4',0,'post','',0),
  6201. (5,1,'2023-05-25 15:15:29','2023-05-25 13:15:29','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-partition-jlg-theme','','','2023-05-25 15:15:29','2023-05-25 13:15:29','',0,'https://localhost/?p=5',0,'wp_global_styles','',0),
  6202. (5648,1,'2023-07-04 11:33:47','2023-07-04 09:33:47','[[[{\"field_key\":\"user_login\",\"general_setting\":{\"label\":\"Username\",\"field_name\":\"user_login\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}},{\"field_key\":\"user_pass\",\"general_setting\":{\"label\":\"User Password\",\"field_name\":\"user_pass\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}}],[{\"field_key\":\"user_email\",\"general_setting\":{\"label\":\"User Email\",\"field_name\":\"user_email\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}},{\"field_key\":\"user_confirm_password\",\"general_setting\":{\"label\":\"Confirm Password\",\"field_name\":\"user_confirm_password\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}}]]]','Default form','','publish','closed','closed','','default-form','','','2023-07-04 11:33:47','2023-07-04 09:33:47','',0,'https://localhost/?post_type=user_registration&p=5648',0,'user_registration','',0),
  6203. (5649,1,'2023-07-04 11:36:05','2023-07-04 09:36:05','[user_registration_form id=\"5652\"]','Registration','','publish','closed','closed','','registration','','','2023-07-04 12:46:41','2023-07-04 10:46:41','',0,'https://localhost/?page_id=5649',0,'page','',0),
  6204. (5650,1,'2023-07-04 11:36:05','2023-07-04 09:36:05','[user_registration_my_account]','My Account','','publish','closed','closed','','my-account','','','2023-07-04 11:36:05','2023-07-04 09:36:05','',0,'https://localhost/?page_id=5650',0,'page','',0),
  6205. (5651,1,'2023-07-04 12:15:22','2023-07-04 10:15:22','<!-- wp:paragraph -->\n<p>Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page «&nbsp;À propos&nbsp;» qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela&nbsp;:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>Bonjour&nbsp;! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil).</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>…ou quelque chose comme cela&nbsp;:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise.</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur <a href=\"https://localhost/wp/wp-admin/\">votre tableau de bord</a> pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien&nbsp;!</p>\n<!-- /wp:paragraph -->','Page d’exemple','','inherit','closed','closed','','2-autosave-v1','','','2023-07-04 12:15:22','2023-07-04 10:15:22','',2,'https://localhost/?p=5651',0,'revision','',0),
  6206. (5652,1,'2023-07-04 12:46:18','2023-07-04 10:46:18','[[[{\"field_key\":\"first_name\",\"general_setting\":{\"label\":\"First Name\",\"description\":\"\",\"field_name\":\"first_name\",\"placeholder\":\"Prénom\",\"required\":\"1\",\"hide_label\":\"1\"},\"advance_setting\":{\"custom_class\":\"\"},\"icon\":\"ur-icon ur-icon-input-first-name\"},{\"field_key\":\"last_name\",\"general_setting\":{\"label\":\"Last Name\",\"description\":\"\",\"field_name\":\"last_name\",\"placeholder\":\"Nom\",\"required\":\"1\",\"hide_label\":\"1\"},\"advance_setting\":{\"custom_class\":\"\"},\"icon\":\"ur-icon ur-icon-input-last-name\"},{\"field_key\":\"user_email\",\"general_setting\":{\"label\":\"User Email\",\"description\":\"\",\"field_name\":\"user_email\",\"placeholder\":\"Email\",\"required\":\"1\",\"hide_label\":\"1\"},\"advance_setting\":{\"custom_class\":\"\"},\"icon\":\"ur-icon ur-icon-email\"},{\"field_key\":\"user_pass\",\"general_setting\":{\"label\":\"User Password\",\"description\":\"\",\"field_name\":\"user_pass\",\"placeholder\":\"Mot de passe\",\"required\":\"1\",\"hide_label\":\"1\"},\"advance_setting\":{\"custom_class\":\"\"},\"icon\":\"ur-icon ur-icon-password\"}]]]','Inscription','','publish','closed','closed','','sports-camp-registration','','','2023-07-04 12:46:18','2023-07-04 10:46:18','',0,'https://localhost/?post_type=user_registration&#038;p=5652',0,'user_registration','',0),
  6207. (5653,1,'2023-07-04 12:46:37','2023-07-04 10:46:37','[user_registration_form id=\"5652\"]','Registration','','inherit','closed','closed','','5649-revision-v1','','','2023-07-04 12:46:37','2023-07-04 10:46:37','',5649,'https://localhost/?p=5653',0,'revision','',0),
  6208. (5654,1,'2023-07-04 14:13:21','2023-07-04 12:13:21','','Default Registration','','publish','closed','closed','','default-registration','','','2023-07-04 14:13:21','2023-07-04 12:13:21','',0,'https://localhost/?um_form=default-registration',0,'um_form','',0),
  6209. (5655,1,'2023-07-04 14:13:21','2023-07-04 12:13:21','','Default Login','','publish','closed','closed','','default-login','','','2023-07-04 14:13:21','2023-07-04 12:13:21','',0,'https://localhost/?um_form=default-login',0,'um_form','',0),
  6210. (5656,1,'2023-07-04 14:13:21','2023-07-04 12:13:21','','Default Profile','','publish','closed','closed','','default-profile','','','2023-07-04 14:13:21','2023-07-04 12:13:21','',0,'https://localhost/?um_form=default-profile',0,'um_form','',0),
  6211. (5657,1,'2023-07-04 14:13:21','2023-07-04 12:13:21','','Members','','publish','closed','closed','','members','','','2023-07-04 14:13:21','2023-07-04 12:13:21','',0,'https://localhost/?um_directory=members',0,'um_directory','',0),
  6212. (5658,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','[ultimatemember form_id=\"5656\"]','Compte','','publish','closed','closed','','user','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5658',0,'page','',0),
  6213. (5659,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','[ultimatemember form_id=\"5655\"]','Connexion','','publish','closed','closed','','login','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5659',0,'page','',0),
  6214. (5660,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','[ultimatemember form_id=\"5654\"]','S’inscrire','','publish','closed','closed','','register','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5660',0,'page','',0),
  6215. (5661,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','[ultimatemember form_id=\"5657\"]','Membres','','publish','closed','closed','','members','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5661',0,'page','',0),
  6216. (5662,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','','Déconnexion','','publish','closed','closed','','logout','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5662',0,'page','',0),
  6217. (5663,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','[ultimatemember_account]','Compte','','publish','closed','closed','','account','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5663',0,'page','',0),
  6218. (5664,1,'2023-07-04 14:16:15','2023-07-04 12:16:15','[ultimatemember_password]','Réinitialisation du mot de passe','','publish','closed','closed','','password-reset','','','2023-07-04 14:16:15','2023-07-04 12:16:15','',0,'https://localhost/?page_id=5664',0,'page','',0),
  6219. (9377,1,'2023-08-31 14:57:25','0000-00-00 00:00:00','','Brouillon auto','','auto-draft','open','open','','','','','2023-08-31 14:57:25','0000-00-00 00:00:00','',0,'https://localhost/?p=9377',0,'post','',0),
  6220. (9960,1,'2023-09-25 06:19:09','2023-09-25 04:19:09','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas est urna, interdum id ligula eget, ultrices sagittis tortor. Phasellus imperdiet ligula ac mauris volutpat fringilla. Nam fermentum luctus facilisis. Proin varius ligula vel tristique molestie. Cras volutpat vulputate metus, ut tristique dui maximus vitae. Proin at scelerisque nisi.</p>\n<!-- /wp:paragraph -->','Content login popup','','publish','closed','closed','','content-login-popup','','','2023-09-25 06:19:09','2023-09-25 04:19:09','',0,'https://localhost/?page_id=9960',0,'page','',0),
  6221. (9961,1,'2023-09-25 06:19:09','2023-09-25 04:19:09','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas est urna, interdum id ligula eget, ultrices sagittis tortor. Phasellus imperdiet ligula ac mauris volutpat fringilla. Nam fermentum luctus facilisis. Proin varius ligula vel tristique molestie. Cras volutpat vulputate metus, ut tristique dui maximus vitae. Proin at scelerisque nisi.</p>\n<!-- /wp:paragraph -->','Content login popup','','inherit','closed','closed','','9960-revision-v1','','','2023-09-25 06:19:09','2023-09-25 04:19:09','',9960,'https://localhost/?p=9961',0,'revision','',0),
  6222. (9962,1,'2023-09-25 06:39:14','2023-09-25 04:39:14','<!-- wp:paragraph -->\n<p>Dans le cadre de ses recherches,<em>&nbsp;</em>Letizia Lusuardi, doctorante à l’ED 267 Arts&amp;Médias (UMR THALIM) de l’Université Sorbonne-Nouvelle à Paris et à l’Université IULM à Milan, a réalisé en 2023 un travail d’identification et de partition de <em>Le Livre d’Image </em>(2018), dernier&nbsp;film de Jean-Luc Godard, composé de citations d’archives (<em>found-footage</em>) provenant de films, de peintures, de programmes télévisés, de photographies, de livres ou de compositions musicales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La partition, découpant le film en séquences temporelles, prend la forme d’un tableau&nbsp;où chaque moment du film est décrit selon quatre catégories: les images, les écrits, les pistes musicales et enfin les voix off. Ce modèle est repris du travail sur&nbsp;<em>Histoire(s) du cinéma</em>&nbsp;(1989-99) réalisé et publié sur un site internet en 2006 en&nbsp;<em>open access</em>&nbsp;par Céline Scemama, en collaboration avec l\'Université Panthéon Sorbonne.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Outre l’accès libre à la partition du film, cette publication sur site internet permet aux utilisateurs référencés de compléter le travail d\'identification, ou de suggérer des modifications (environ 80% des œuvres citées sont pour l’instant identifiées). Ceci répond à une volonté d\'encourager&nbsp;les pratiques d\'interaction et de science participative.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ce site, développé selon les principes F.A.I.R., est hébergé par la TGIR huma-Num, dans un but de partage et de pérennisation des données de la recherche. Il a été développé en collaboration avec Amal Guha, ingénieur de recherches CNRS, Philippe Agbati, étudiant en informatique à l’IUT Paris Rives de Seine de l’Université Paris-Descartes et stagiaire auprès du laboratoire THALIM, et Valentin Le Moign, pour le collectif Figures Libres, en charge de la conception graphique et du suivi de développement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ce projet a pu être réalisé grâce au financement reçu en 2023 à la suite d\'un appel à projets en&nbsp;<em>Humanités Numériques - Science &amp; Société</em>&nbsp;de la Direction de la Recherche, de la Valorisation, et des Etudes Doctorales (DiRVED) de l’Université Sorbonne-Nouvelle, et grâce au soutien de l’unité mixte de recherche 7172 THALIM (Théorie et histoire des arts et des littératures de la modernité).</p>\n<!-- /wp:paragraph -->','Content about popup','','publish','closed','closed','','content-about-popup','','','2023-10-25 07:59:12','2023-10-25 05:59:12','',0,'https://localhost/?page_id=9962',0,'page','',0),
  6223. (9963,1,'2023-09-25 06:39:14','2023-09-25 04:39:14','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas est urna, interdum id ligula eget, ultrices sagittis tortor. Phasellus imperdiet ligula ac mauris volutpat fringilla. Nam fermentum luctus facilisis. Proin varius ligula vel tristique molestie. Cras volutpat vulputate metus, ut tristique dui maximus vitae. Proin at scelerisque nisi. Quisque tellus enim, pellentesque ut est at, porta tempor ante. Nulla venenatis bibendum est, nec facilisis urna scelerisque id.</p>\n<!-- /wp:paragraph -->','Content about popup','','inherit','closed','closed','','9962-revision-v1','','','2023-09-25 06:39:14','2023-09-25 04:39:14','',9962,'https://localhost/?p=9963',0,'revision','',0),
  6224. (9964,1,'2023-09-25 10:40:42','2023-09-25 08:40:42','main','main','main','inherit','open','closed','','creator-gd-jpeg-v1-0-using-ijg-jpeg-v62-quality-82','','','2023-09-25 10:41:13','2023-09-25 08:41:13','',0,'https://localhost/app/uploads/2023/09/le-livre-d-image-1450x800-c.jpeg',0,'attachment','image/jpeg',0),
  6225. (9965,1,'2023-09-25 10:41:19','2023-09-25 08:41:19','https://localhost/app/uploads/2023/09/cropped-le-livre-d-image-1450x800-c.jpeg','cropped-le-livre-d-image-1450x800-c.jpeg','','inherit','open','closed','','cropped-le-livre-d-image-1450x800-c-jpeg','','','2023-09-25 10:41:19','2023-09-25 08:41:19','',0,'https://localhost/app/uploads/2023/09/cropped-le-livre-d-image-1450x800-c.jpeg',0,'attachment','image/jpeg',0),
  6226. (9966,1,'2023-09-25 10:41:21','2023-09-25 08:41:21','{\n \"site_icon\": {\n \"value\": 9965,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-09-25 08:41:21\"\n }\n}','','','trash','closed','closed','','b4e656f5-6b76-4d0b-b9a9-2e66e1cd2753','','','2023-09-25 10:41:21','2023-09-25 08:41:21','',0,'https://localhost/?p=9966',0,'customize_changeset','',0),
  6227. (13190,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBrusquement : silence.\n\n<b>Écrits\n---</b>\n\nWild Bunch\nVentes internationales\n','1h28’08','','publish','open','open','','1h2808','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13190',0,'post','',0),
  6228. (13191,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nLogos des distributeurs :\nArte, RTS, CINEFORUM, Loterie Romande, FONDATION JAN MICHALSKI POUR L\'ÉCRITURE ET LA LITTÉRATURE,\nSNAP ORAZ VE REIN,\nConfédération suisse, Département fédéral de l\'intérieur DFI, Office fédéral de la culture OFC\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n<b>Écrits\n---</b>\n\n','1h28’15','','publish','open','open','','1h2815','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13191',0,'post','',0),
  6229. (13192,1,'2023-11-09 18:38:49','2023-11-09 17:38:49','<b>Images\n---</b>\n\nNoir.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’00','','publish','open','open','','000','','','2023-11-09 18:40:10','2023-11-09 17:40:10','',0,'https://localhost/?p=13192',0,'post','',0),
  6230. (13193,1,'2023-10-23 06:56:21','2023-10-23 04:56:21','<b>Images\n---</b>\n\nLogo de la société de distribution Kino Lorber.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’02','','publish','open','open','','002','','','2023-11-09 08:57:46','2023-11-09 07:57:46','',0,'https://localhost/?p=13193',0,'post','',0),
  6231. (13194,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n\n<b>Écrits\n---</b>\n\n\n\n','0’10','','publish','open','open','','010','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13194',0,'post','',0),
  6232. (13195,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nPalme d\'Or avec inscrit en-dessous « Festival de Cannes 2018 Spécial ». \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nBip sonore \n\n\n<b>Écrits\n---</b>\n\n\n\n','0\'13','','publish','open','open','','013','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13195',0,'post','',0),
  6233. (13196,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','0’18','','publish','open','open','','018','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13196',0,'post','',0),
  6234. (13197,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nDétail de la main.\n<em>San Giovanni Battista</em> (1508 - 1513), Léonard de Vinci.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','0’23','','publish','open','open','','023','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13197',0,'post','',0),
  6235. (13198,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nLes maîtres du m\nDevraient se méf\nPrécisément parc\n','0’26','','publish','open','open','','026','','','2023-09-26 09:18:55','2023-09-26 07:18:55','',0,'https://localhost/?p=13198',0,'post','',0),
  6236. (13199,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\ns du monde\nSe méfier de Bécassine,\nParce qu’elle se tait.\n<em>Les enfants humiliés</em>, Georges Bernanos (1949).\n','0’30','','publish','open','open','','030','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13199',0,'post','',0),
  6237. (13200,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','0’35','','publish','open','open','','035','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13200',0,'post','',0),
  6238. (13201,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nMains de Jean-Luc Godard, au travail à la table de montage, avec une pellicule.\n<em>King Lear</em> (1987), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl y a les 5 doigts, les 5 sens, les 5 parties du monde, oui les 5 doigts de la fée. Mais tous ensemble ils composent la main.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','0’41','','publish','open','open','','041','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13201',0,'post','',0),
  6239. (13202,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nMain écrivant au tableau « Un ruisseau d’ombres / A brook of shadows ».\n<em>Closed Vision</em> (1953), Marc\'O.\n\n\n<b>Voix Off et In\n---</b>\n\nEt la vraie condition de l’homme c’est de penser avec ses mains. (Jean-Luc Godard).\n<em>Penser avec les mains</em> (1936), Denis de Rougemont.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','01’04','','publish','open','open','','0104','','','2023-09-26 09:18:55','2023-09-26 07:18:55','',0,'https://localhost/?p=13202',0,'post','',0),
  6240. (13203,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nDétail de <em>La Main</em>, Alberto Giacometti (1947) allant vers le haut.\n<em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et début du <em>Quintette avec piano, Op. 18 - I.</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nL’image\n','01’17','','publish','open','open','','0117','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13203',0,'post','',0),
  6241. (13204,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nMains de personne enchaînée allant vers le bas et touchant le sol.\n<em>Le Procès de Jeanne d’Arc</em> (1961), Robert Bresson. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nviendra\n','01’23','','publish','open','open','','0123','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13204',0,'post','',0),
  6242. (13205,1,'2023-11-09 09:40:52','2023-11-09 08:40:52','<b>Images\n---</b>\n\nMain levée vers le haut.\n<em>Gare Centrale</em> (1958), Youssef Chahine.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nOh ! Temps','01’29','','publish','open','open','','0129','','','2023-11-09 09:41:54','2023-11-09 08:41:54','',0,'https://localhost/?p=13205',0,'post','',0),
  6243. (13206,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nPersonne coupant en deux les yeux d’une dame avec un rasoir.\n<em>Un chien andalou</em> (1929), Luis Bunuel.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','01’40','','publish','open','open','','0140','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13206',0,'post','',0),
  6244. (13207,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nArchive s et morale.\nPhrase citée dans <em>Histoire (s) du cinéma</em> (1988 - 98), Jean-Luc Godard.\n','01’43','','publish','open','open','','0143','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13207',0,'post','',0),
  6245. (13208,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nSaturé : maisons avec des arbres. Détail d’un tableau d’André Derain.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Quintette avec piano, Op. 18 - I</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nCasa Azul Films\n','01’48','','publish','open','open','','0148','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13208',0,'post','',0),
  6246. (13209,1,'2023-09-26 09:18:55','2023-09-26 07:18:55','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nEcran noir production \n \n En surimpression, écrit à la main : \n Mitra Farahani (présidente de la société). \n\n','01’53','','publish','open','open','','0153','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13209',0,'post','',0),
  6247. (13210,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nSaturé et surexposé : fragments de pellicule sur fond blanc.\n<em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','01’55','','publish','open','open','','0155','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13210',0,'post','',0),
  6248. (13211,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nTableau avec femmes dans la rue entre des maisons. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','01’58','','publish','open','open','','0158','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13211',0,'post','',0),
  6249. (13212,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\n« Le Livre d’ » écrit à la main à la peinture à l’huile rouge, et « image » écrit en blanc sur fond noir et bleu foncé, toujours coloré à la peinture à l’huile, avec une applique de couleur épaisse et très visible.\n\n\n<b>Voix Off et In\n---</b>\n\nBon, va me chercher les livres. On va jeter un coup d\'œil.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\nC\'est que pour ne pas faire caca, il aurait fallu. Extrait de <em>Pour en finir avec le jugement de Dieu</em> (1948), Antonin Artaud.\n','02’00','','publish','open','open','','0200','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13212',0,'post','',0),
  6250. (13213,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','02’06','','publish','open','open','','0206','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13213',0,'post','',0),
  6251. (13214,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nImage et Parole \n\n','02’08','','publish','open','open','','0208','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13214',0,'post','',0),
  6252. (13215,1,'2023-10-26 10:19:57','2023-10-26 08:19:57','<b>Images\n---</b>\n\nSurexposé et saturé : pellicule entraînée par une bobine en rotation.\n<em>Notre caméra analytique</em> (2015), Yervant Gianikian et Angela Ricci Lucchi.\n\n<b>Voix Off et In\n---</b>\n\nScott Walker in 2006, Orpheus has returned from the underworld. What happened on his long long journey ? Who is this man ?\n<em>Scott Walker : 30th Century Man</em> (2007), Stephen Kijak.\n\n<b>Bande Son\n---</b>\n\n<em>Cossacks Are</em> (2006), Scott Walker.\n\n<b>Écrits\n---</b>','02’11','','publish','open','open','','0211','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13215',0,'post','',0),
  6253. (13216,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nC’est que pour ne pas faire caca \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','02’31','','publish','open','open','','0231','','','2023-09-26 09:18:56','2023-09-26 07:18:56','',0,'https://localhost/?p=13216',0,'post','',0),
  6254. (13217,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nHomme (avec une casquette de marin) visant dans une caméra (probablement photographie de Friedrich Wilhelm Murnau).\n<em>Histoire (s) du cinéma, 1b</em> (1988 - 98) Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nil aurait fallu qu\'on.\n<em>Pour en finir avec le jugement de Dieu</em> (1948), Antonin Artaud.\n\n\n<b>Bande Son\n---</b>\n\n<em>Cossacks Are</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\nTabou\n','02’34','','publish','open','open','','0234','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13217',0,'post','',0),
  6255. (13218,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nCouverture du livre de C. F. Ramuz, <em>Les signes parmi nous.</em>\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','02’38','','publish','open','open','','0238','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13218',0,'post','',0),
  6256. (13219,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Cue</em>, Scott Walker (2006).\n\n\n<b>Écrits\n---</b>\n\nLes prophètes\n','02’42','','publish','open','open','','0242','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13219',0,'post','',0),
  6257. (13220,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nHomme sautant une épée à la main sur un autre homme.\n<em>Hamlet</em> (1964), Grigori Kozintsev.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','02’46','','publish','open','open','','0246','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13220',0,'post','',0),
  6258. (13221,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','02’47','','publish','open','open','','0247','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13221',0,'post','',0),
  6259. (13222,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nHomme en assassinant un autre à coups d’épée, puis sautant d’un mur, imitant un oiseau.\n<em>Hamlet</em> (1948), Laurence Olivier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCri du coq. (Logo de Pathé).\n\n\n<b>Écrits\n---</b>\n\n','02’48','','publish','open','open','','0248','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13222',0,'post','',0),
  6260. (13223,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nPetite enfant à la tête levée et aux mains ouvertes.\n<em>Miracle en Alabama</em> (1962), Arthur Penn. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','02’51','','publish','open','open','','0251','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13223',0,'post','',0),
  6261. (13224,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - IV. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n1\nREMAKES\n','02’55','','publish','open','open','','0255','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13224',0,'post','',0),
  6262. (13225,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nExplosion d’une bombe atomique. \n\n\n<b>Voix Off et In\n---</b>\n\nécrit dans une nuit d’orage \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','03’00','','publish','open','open','','0300','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13225',0,'post','',0),
  6263. (13226,1,'2023-09-26 09:18:56','2023-09-26 07:18:56','<b>Images\n---</b>\n\nFemme aidant un homme à s’éloigner d’une maison.\n<em>En quatrième vitesse [Kiss Me Deadly]</em> (1955), Robert Aldrich.\n\n\n<b>Voix Off et In\n---</b>\n\nles affaires spéciales de police marchent de front avec\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','03’04','','publish','open','open','','0304','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13226',0,'post','',0),
  6264. (13227,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nLogo représentant un atome. \n\n\n<b>Voix Off et In\n---</b>\n\nles mesures les plus générales de la politique. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','03’08','','publish','open','open','','0308','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13227',0,'post','',0),
  6265. (13228,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nFemme aidant un homme à s’éloigner d’une maison sur une plage.\n<em>En quatrième vitesse [Kiss Me Deadly]</em> (1955), Robert Aldrich.\n\n\n<b>Voix Off et In\n---</b>\n\nLes fautes morales s’y confondent avec les crimes d’État.\n<em>Histoire de la Révolution française</em> (1893 - 98), Jules Michelet.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','03’12','','publish','open','open','','0312','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13228',0,'post','',0),
  6266. (13229,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nVassili Semionovitch Grossman écrivant au tableau. \n\n\n<b>Voix Off et In\n---</b>\n\nC’est évidemment là, et évidemment le coloris aussi que les peintres en tiraient. La forme, le dessin, les gros axes, les cadrages, les directions, le mouvement (Pierre Guyotat). \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','03’17','','publish','open','open','','0317','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13229',0,'post','',0),
  6267. (13230,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nOn accomplirait l’acte rédempteur, si l’on pourrait conduire la critique jusqu’à la mort volontaire, sagement désespérée, de notre penser / parler.\n<em>Le langage</em> (1906), Fritz Mauthner.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','03’24','','publish','open','open','','0324','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13230',0,'post','',0),
  6268. (13231,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n1 Remakes\n','03’37','','publish','open','open','','0337','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13231',0,'post','',0),
  6269. (13232,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nFemmes sortant d’un taxi ouvert par un concierge, homme lisant un papier.\n<em>Allemagne neuf zéro</em> (1997), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\ngarder l’apparence de la vie\n(Jean-Luc Godard).\n\nComme le cinéma aussi, il faut que tout soit,\n\n\n<b>Bande Son\n---</b>\n\nId. e <em>Cue</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\n','03’42','','publish','open','open','','0342','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13232',0,'post','',0),
  6270. (13233,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nAu ralenti, et plus tard accéléré : deux dames accompagnées à une voiture par un concierge sous un parapluie.\n<em>Le dernier des hommes</em> (1924), Friedrich Wilhelm Murnau.\n\n\n<b>Voix Off et In\n---</b>\n\nil faut que tout parle. (Pierre Guyotat).\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis moteur de voiture, et pas sur le sol accompagnés de rires de femmes.\n<em>Mon histoire n’est pas encore écrite</em> (2017), Jacqueline Gozland.\n\n\n<b>Écrits\n---</b>\n\n','04’04','','publish','open','open','','0404','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13233',0,'post','',0),
  6271. (13234,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','04’27','','publish','open','open','','0427','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13234',0,'post','',0),
  6272. (13235,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Voix Off et In\n---</b>\n\nJohnny : Don’t go away.\nVienna : I haven’t moved.\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Écrits\n---</b>\n\n','04’29','','publish','open','open','','0429','','','2023-11-09 08:53:16','2023-11-09 07:53:16','',0,'https://localhost/?p=13235',0,'post','',0),
  6273. (13236,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nJohnny : Tell me something nice. \n Vienna : Sure, what do you want to hear ? \n Johnny : Lie to me. Tell me all these years you’ve waited \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','04’36','','publish','open','open','','0436','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13236',0,'post','',0),
  6274. (13237,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Voix Off et In\n---</b>\n\nVienna : All those years I’ve waited …\nJohnny : Tell me you would have died if I hadn’t come back.\nVienna : I would\'ve died if you hadn’t come back.\nJohnny : Tell me you still love me like I love you.\nVienna : I still …\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','04’48','','publish','open','open','','0448','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13237',0,'post','',0),
  6275. (13238,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- Dites des mensonges. \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','05’05','','publish','open','open','','0505','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13238',0,'post','',0),
  6276. (13239,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Le petit soldat</em> (1947), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nque vous n’êtes pas triste que je parte.\n- Je ne suis pas triste que vous partiez. Je ne suis pas amoureuse de vous. Je ne vous rejoindrai pas au Brésil, je ne vous embrasse pas tendrement.\n\n\n<b>Bande Son\n---</b>\n\nId. et piano.\n\n\n<b>Écrits\n---</b>\n\n','05’10','','publish','open','open','','0510','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13239',0,'post','',0),
  6277. (13240,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nJe ne vous embrasse pas tendrement.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','05’38','','publish','open','open','','0538','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13240',0,'post','',0),
  6278. (13241,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Le petit soldat</em> (1947), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','05’45','','publish','open','open','','0545','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13241',0,'post','',0),
  6279. (13242,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','05’50','','publish','open','open','','0550','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13242',0,'post','',0),
  6280. (13243,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nAdolescents faisant des exercices militaires sous la supervision de soldats.\n<em>Liban, guerres et hommes</em> (1975), Frédéric Laffont.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','05’55','','publish','open','open','','0555','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13243',0,'post','',0),
  6281. (13244,1,'2023-09-26 09:18:57','2023-09-26 07:18:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','05’59','','publish','open','open','','0559','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13244',0,'post','',0),
  6282. (13245,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nAdolescents faisant des exercices militaires sous la supervision de soldats.\n<em>Liban, guerres et hommes</em> (1975), Frédéric Laffont.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','06’00','','publish','open','open','','0600','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13245',0,'post','',0),
  6283. (13246,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nMilitaires en rang observés par un commandant.\n<em>Liban, guerres et hommes</em> (1975), Frédéric Laffont.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','06’03','','publish','open','open','','0603','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13246',0,'post','',0),
  6284. (13247,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nJeunes gens marchant à la manière de chiens, entourés de soldats les nourrissant.\n<em>Salò o le centoventi giornate di Sodoma</em> (1976), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAboiements et halètements de chiens.\n\n\n<b>Écrits\n---</b>\n\n','06’07','','publish','open','open','','0607','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13247',0,'post','',0),
  6285. (13248,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- Mangia, sù ! \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','06’17','','publish','open','open','','0617','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13248',0,'post','',0),
  6286. (13249,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n1 Remakes \n\n','06’28','','publish','open','open','','0628','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13249',0,'post','',0),
  6287. (13250,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nSoldats djihadistes tirant à la mitraillette.\n<em>Timbuktu</em> (2014), Abderrahmane Sissako.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nMitraillette.\n\n\n<b>Écrits\n---</b>\n\n','06’31','','publish','open','open','','0631','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13250',0,'post','',0),
  6288. (13251,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nBlanc \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','06’33','','publish','open','open','','0633','','','2023-11-09 08:53:17','2023-11-09 07:53:17','',0,'https://localhost/?p=13251',0,'post','',0),
  6289. (13252,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nSoldats djihadistes tirant à la mitraillette.\n<em>Timbuktu</em> (2014), Abderrahmane Sissako.\n\n<b>Voix Off et In\n---</b>\n\nBruit de manipulation d\'une arme.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','06’37','','publish','open','open','','0637','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13252',0,'post','',0),
  6290. (13253,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nSoldats déplaçant des cadavres et soignant des femmes torturées.\n<em>Vrai faux passeport</em> (2006), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nLes américains s’efforcent de réanimer cette combattante\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Vrai faux passeport</em> (2006), Jean-Luc Godard.\n\n\n<b>Écrits\n---</b>\n\n','06’44','','publish','open','open','','0644','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13253',0,'post','',0),
  6291. (13254,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','07’05','','publish','open','open','','0705','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13254',0,'post','',0),
  6292. (13255,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nHélicoptère.\n<em>La Chute du faucon noir</em> (2001), Ridley Scott.\n\n\n<b>Voix Off et In\n---</b>\n\npour sans doute l’interroger. Qu’en tireront-ils ? (fois 2)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','07’08','','publish','open','open','','0708','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13255',0,'post','',0),
  6293. (13256,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nSoldats déplaçant des cadavres et soignant des femmes torturées. <em>Vrai faux passeport</em> (2006), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nDes insultes, des chants communistes ou simplement des cris de douleur.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nPatrie\n','07’13','','publish','open','open','','0713','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13256',0,'post','',0),
  6294. (13257,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nSoldat menaçant une femme et un enfant avec une carabine.\n<em>Les carabiniers</em> (1963), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nFaites la partir. Pas dans la cuisine. Mettez-vous sur la chaise ! Tournez-vous !\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','07’17','','publish','open','open','','0717','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13257',0,'post','',0),
  6295. (13258,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','07’43','','publish','open','open','','0743','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13258',0,'post','',0),
  6296. (13259,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nEnfant sur une pelouse écoutant de la musique. Homme apprenant à nager à une femme.\n<em>Les hommes les dimanches</em> (1930), Robert Siodmak et Edgar George Ulmer.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Les hommes les dimanches</em> (1930), Robert Siodmak et Edgar George Ulmer.\n\n<b>Écrits\n---</b>\n\n','07’44','','publish','open','open','','0744','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13259',0,'post','',0),
  6297. (13260,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nDeux hommes avec un scooter suivant deux femmes qui se promenant dans la rue.\n<em>Blue jeans</em> (1957), Jacques Rozier.\n\n\n<b>Voix Off et In\n---</b>\n\nAlors on se promène ? Vous n’avez pas peur toutes seules ? Vous habitez chez vos parents ? Alors vous habitez chez papa et maman ?\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','07’51','','publish','open','open','','0751','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13260',0,'post','',0),
  6298. (13261,1,'2023-09-26 09:18:58','2023-09-26 07:18:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nChez papa et maman ? \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','08’09','','publish','open','open','','0809','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13261',0,'post','',0),
  6299. (13262,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nAvion de guerre \n orné d’un dessin de dents. Documentaire de la guerre civile en Chine. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','08’12','','publish','open','open','','0812','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13262',0,'post','',0),
  6300. (13263,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nRequin émergeant de l\'eau, la gueule grande ouverte.\n<em>Les dents de la mer</em> (1975), Steven Spielberg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','08’13','','publish','open','open','','0813','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13263',0,'post','',0),
  6301. (13264,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n1 \n REMAKES \n\n','08’14','','publish','open','open','','0814','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13264',0,'post','',0),
  6302. (13265,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nEmpilement de cadavres.\n<em>Nuit et brouillard</em> (1956), Alain Resnais.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','08’16','','publish','open','open','','0816','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13265',0,'post','',0),
  6303. (13266,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nHomme tuant un cheval.\n<em>Le sang des bêtes</em> (1949), Georges Franju,.\n\n\n<b>Voix Off et In\n---</b>\n\nIl est presque impossible d’abolir\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','08’19','','publish','open','open','','0819','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13266',0,'post','',0),
  6304. (13267,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nla réciprocité entre les hommes.\nLa violence est une forme.\n<em>La violence et le sacré</em>, (1972), René Girard\n\n\n<b>Bande Son\n---</b>\n\nId. e <em>Cue</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\nL’une part la décision et\ndécision, c’est : se tenir\nêtre et le non-être @ et il y\nde l’être, le primat incor\n\n(Vladimir Ilitch Lénine).\n','08’24','','publish','open','open','','0824','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13267',0,'post','',0),
  6305. (13268,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nHibou, fondu avec un homme battant des paupières et les frottant successivement.\n<em>La Grève</em> (1925), Sergueï Eisenstein. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Cue</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\n','08’31','','publish','open','open','','0831','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13268',0,'post','',0),
  6306. (13269,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','08’36','','publish','open','open','','0836','','','2023-11-09 08:53:18','2023-11-09 07:53:18','',0,'https://localhost/?p=13269',0,'post','',0),
  6307. (13270,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nHommes essayant de prendre la fuite et se faisant tirer dessus. Certains meurent. Hommes lançant dans la mer des prisonniers attachés.\n<em>Paisà</em> (1946), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nAccadeva nell’inverno del 1944. All’inizio della primavera la guerra era finita.\n\n\n<b>Bande Son\n---</b>\n\nMitraillette, personnes tombant dans l\'eau.\n\n\n<b>Écrits\n---</b>\n\n','08’43','','publish','open','open','','0843','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13270',0,'post','',0),
  6308. (13271,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nSurexposé : djihadistes tirant sur des hommes, et les lançant à la mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','09’06','','publish','open','open','','0906','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13271',0,'post','',0),
  6309. (13272,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nSurexposé et saturé en tons rouges : mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','09’13','','publish','open','open','','0913','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13272',0,'post','',0),
  6310. (13273,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nUn homme et une femme traversant en courant le corridor de Vasari à Florence.\n<em>Paisà</em> (1946), Roberto Rossellini.\n\nEn surimpression, <em>La belle et la bête</em> (1946), Jean Cocteau.\n\n\n<b>Voix Off et In\n---</b>\n\nS’il vous plaît (fois 7)\n\n\n<b>Bande Son\n---</b>\n\nRessac de vagues.\n\n\n<b>Écrits\n---</b>\n\n','09’15','','publish','open','open','','0915','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13273',0,'post','',0),
  6311. (13274,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nDevenir immortelle ne vous intéresse vraiment pas ?\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nRIM (AK) ES\n','09’23','','publish','open','open','','0923','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13274',0,'post','',0),
  6312. (13275,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nHomme se jettant à la mer pour sauver une femme voulant se suicider.\n<em>Vertigo</em> (1958), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\n- Immortelle, quoi ça sert ?\n- On m’a dit que tout le monde en avait envie.\n- Qu’est ce que je vais devenir si je meurs pas ? La vie va s’arrêter\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’27','','publish','open','open','','0927','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13275',0,'post','',0),
  6313. (13276,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nje ne suis pas comme vous. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','09’44','','publish','open','open','','0944','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13276',0,'post','',0),
  6314. (13277,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nSurexposé et au ralenti : homme transportant le corps d’une femme ayant risqué de se noyer.\n<em>Vertigo</em> (1958), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\n- Fière, et orgueilleuse avec ça.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’47','','publish','open','open','','0947','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13277',0,'post','',0),
  6315. (13278,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nFemme à la plage et homme naigeant dans la mer.\n<em>Femme au corbeau</em> (1929), Frank Borzage.\n\n<b>Voix Off et In\n---</b>\n\n- Oui, fière, si je me compare.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’49','','publish','open','open','','0949','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13278',0,'post','',0),
  6316. (13279,1,'2023-09-26 09:18:59','2023-09-26 07:18:59','<b>Images\n---</b>\n\nCaméraman assis sur une dolly.\n<em>Silence ! On tourne</em> (2001), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’56','','publish','open','open','','0956','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13279',0,'post','',0),
  6317. (13280,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nVisage d’une femme.\n<em>L’Atalante</em> (1934), Jean Vigo, au ralenti et superposé à l’image d’un homme.\n\n\n<b>Voix Off et In\n---</b>\n\nEt humble, si je me considère.\n- Vous me l\'avez déjà dit.\n- Oui, mais je ne savais pas que c\'était vous. Je croyais que c\'était Simon qui était là.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’58','','publish','open','open','','0958','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13280',0,'post','',0),
  6318. (13281,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nHomme déposant une femme par terre au bord d’un lac.\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est notre première dispute, et je t’aime.\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','10’12','','publish','open','open','','1012','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13281',0,'post','',0),
  6319. (13282,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nDeux personnes marchant à quatre pattes sur le sol au milieu de l\'eau.\n<em>La furie du désir [Ruby Gentry]</em> (1952), King Vidor.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','10’19','','publish','open','open','','1019','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13282',0,'post','',0),
  6320. (13283,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Quintette avec piano</em> (1944), <em>Op. 18 - I</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','10’25','','publish','open','open','','1025','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13283',0,'post','',0),
  6321. (13284,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nImages d’archives : signature de l\'armistice de la Seconde Guerre mondiale le 8 mai 1945. En noir et blanc, puis en couleurs.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','10’27','','publish','open','open','','1027','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13284',0,'post','',0),
  6322. (13285,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','10’37','','publish','open','open','','1037','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13285',0,'post','',0),
  6323. (13286,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nImages d’archives de la chaîne de télévision francaise <em>Planète</em> : folle fêtant, drapeau Etatsunien à la main.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','10’39','','publish','open','open','','1039','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13286',0,'post','',0),
  6324. (13287,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nAssignat de 25 sols. (Papier monnaie fiduciaire d’échange, instaurée sous la Révolution française par la loi du 4 janvier 1792). \n\n\n<b>Voix Off et In\n---</b>\n\nOn a signé, ah signé, assigné, assigné, assignats. (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','10’41','','publish','open','open','','1041','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13287',0,'post','',0),
  6325. (13288,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nVous vous souvenez de José. républicain espagnol ? Avec les communistes j\'irai jusqu\'à la mort.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','10’55','','publish','open','open','','1055','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13288',0,'post','',0),
  6326. (13289,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nHommes posant un livre sur la tête d’un homme allongé et plaçant le bout de l\'index et du majeur sur sa couverture.\n<em>Ivan le terrible</em> (1944), Sergej Ejzenstejn.<em> Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nAvec les communistes j\'irai jusqu\'à la mort mais je ne ferai pas un pas de plus.\n<em>L’Espoir</em> (1937), André Malraux.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’00','','publish','open','open','','1100','','','2023-11-09 08:53:19','2023-11-09 07:53:19','',0,'https://localhost/?p=13289',0,'post','',0),
  6327. (13290,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nEnfants jouant du violon.\n<em>Les enfants jouent à la Russie</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nOrchestre.\n\n\n<b>Écrits\n---</b>\n\n','11’21','','publish','open','open','','1121','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13290',0,'post','',0),
  6328. (13291,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nPhotographie d’Inès Armand, femme politique communiste. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','11’26','','publish','open','open','','1126','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13291',0,'post','',0),
  6329. (13292,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nAvec des couleurs surexposées et saturées : groupe de personnes avec drapeaux et armes.\nLa liberté guidant le peuple (1830), Eugène Delacroix.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','11’30','','publish','open','open','','1130','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13292',0,'post','',0),
  6330. (13293,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nEn noir et blanc et surexposé : groupe de personnes avec drapeaux et armes.\n<em>La liberté guidant le peuple</em> (1830), Eugène Delacroix.\n\n<b>Voix Off et In\n---</b>\n\nLes aventures. Encore un rouge. Dernier, le rouge.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’32','','publish','open','open','','1132','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13293',0,'post','',0),
  6331. (13294,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nAlternance en clignotant de photos en couleur d’Hitler, et d’une dame marchant, un enfant dans les bras.\n<em>Angèle</em> (1934), Marcel Pagnol.\n\n\n<b>Voix Off et In\n---</b>\n\n- C’est lui qui a commencé, et c’est la vérité.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’35','','publish','open','open','','1135','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13294',0,'post','',0),
  6332. (13295,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nTais-toi Cassandre ! \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','11’40','','publish','open','open','','1140','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13295',0,'post','',0),
  6333. (13296,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nFemme pleurant.\n<em>Les larmes de Freya</em> (1900), Anne-Marie Zylberman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’42','','publish','open','open','','1142','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13296',0,'post','',0),
  6334. (13297,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nMains tournées vers la lumière.\nFragment de tableau (1588), Anonyme, École de Fontainebleau.\nUne main sous un sein, une autre main joignant l’index au pouce.\n<em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard,.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','11’45','','publish','open','open','','1145','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13297',0,'post','',0),
  6335. (13298,1,'2023-09-26 09:19:00','2023-09-26 07:19:00','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n2 \n LES SOIRÉES DE \n ST. PÉTERSBOURG (Joseph de Maistre, 1821) \n\n','11’48','','publish','open','open','','1148','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13298',0,'post','',0),
  6336. (13299,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nJeune fille dansant à un bal.\n<em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nInstruments à cordes : bande son de <em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Écrits\n---</b>\n\n','11’53','','publish','open','open','','1153','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13299',0,'post','',0),
  6337. (13300,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nSoldats à cheval, pendant une bataille.\n<em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','11’55','','publish','open','open','','1155','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13300',0,'post','',0),
  6338. (13301,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nSurexposé, puis perturbé par des scintillements, des taches noires ou des taches blanches surexposées : nobles entrant dans une salle de bal.\n<em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Entrance of Tsar Alexander (Polonaise)</em> : bande son du film <em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Écrits\n---</b>\n\n','12’06','','publish','open','open','','1206','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13301',0,'post','',0),
  6339. (13302,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','12’45','','publish','open','open','','1245','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13302',0,'post','',0),
  6340. (13303,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nEnfants luttant à coups de bâton.\n<em>Les enfants de la guerre</em> (1976), Jocelyne Saab.\n\n\n<b>Voix Off et In\n---</b>\n\nLa guerre est là. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','12’47','','publish','open','open','','1247','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13303',0,'post','',0),
  6341. (13304,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nFemme allongée sur le dos devant un homme regardant la mer.\n<em>Notre musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- La voyez-vous, Péguy, dit-elle.\n- Il n’y a pas de morts.\n- Rien n’est aussi commode qu\'un texte.\n- Il y a seulement\n- Et rien n’est aussi commode qu\'un mot dans un texte.\n\n\n<b>Bande Son\n---</b>\n\nRessac de vagues.\n\n\n<b>Écrits\n---</b>\n\n','13’03','','publish','open','open','','1303','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13304',0,'post','',0),
  6342. (13305,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nNous n\'avions que du livre à mettre dans du livre. \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’13','','publish','open','open','','1313','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13305',0,'post','',0),
  6343. (13306,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nSurexposé : bateaux naviguant en mer. \n\n\n<b>Voix Off et In\n---</b>\n\nQue serait-ce quand il faut dans un livre, dans du livre, mettre de la réalité ? Et au deuxième degré quand il faut, dans la réalité, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’17','','publish','open','open','','1317','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13306',0,'post','',0),
  6344. (13307,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nCannon visant une voiture.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nmettre de la réalité.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','13’29','','publish','open','open','','1329','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13307',0,'post','',0),
  6345. (13308,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nFemme se posant la main sur la tête.\nLe silence de la mer (1949), Jean-Pierre Melville.\n\nEn alternance : canon visant une voiture.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nQu\'arrive-t-il toujours mon ami ?\n\n<b>Bande Son\n---</b>\n\nPiano.\n\n<b>Écrits\n---</b>','13’31','','publish','open','open','','1331','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13308',0,'post','',0),
  6346. (13309,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nVoiture militaire passant devant une folle. \n\n\n<b>Voix Off et In\n---</b>\n\n\n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’34','','publish','open','open','','1334','','','2023-11-09 08:53:20','2023-11-09 07:53:20','',0,'https://localhost/?p=13309',0,'post','',0),
  6347. (13310,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nNoir. En alternance : femme se posant la main sur la tête.\n<em>Le silence de la mer</em> (1949), Jean-Pierre Melville.\n\n\n<b>Voix Off et In\n---</b>\n\nLe soir tombe, les vacances finissent.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','13’36','','publish','open','open','','1336','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13310',0,'post','',0),
  6348. (13311,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nHomme torturé au chalumeau.\n<em>Roma città aperta</em> (1945), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une journée pour faire l\'histoire d\'une seconde.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','13’43','','publish','open','open','','1343','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13311',0,'post','',0),
  6349. (13312,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’46','','publish','open','open','','1346','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13312',0,'post','',0),
  6350. (13313,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nDétail surexposé : Reporter, et ombre d’un soldat au fusil. \n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une année pour faire l\'histoire d\'une minute. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’51','','publish','open','open','','1351','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13313',0,'post','',0),
  6351. (13314,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nReporter, et ombre d’un soldat au fusil. \n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une vie pour faire l\'histoire d\'une heure. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’57','','publish','open','open','','1357','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13314',0,'post','',0),
  6352. (13315,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une éternité pour faire l\'histoire d\'un jour. (Julie Delpy).\n<em>Clio, dialogue de l’histoire et de l’âme païenne</em> (1912), Charles Péguy.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','14’05','','publish','open','open','','1405','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13315',0,'post','',0),
  6353. (13316,1,'2023-09-26 09:19:01','2023-09-26 07:19:01','<b>Images\n---</b>\n\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Au revoir Ludovic, vous allez à la guerre ?\n- Oui madame Donadieu.\n\n\n<b>Bande Son\n---</b>\n\nAu violon : bande son <em>d’Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Écrits\n---</b>\n\n','14’08','','publish','open','open','','1408','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13316',0,'post','',0),
  6354. (13317,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','14’25','','publish','open','open','','1425','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13317',0,'post','',0),
  6355. (13318,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nHomme lançant une lance dans le dos d\'un autre homme.\n<em>Les Nibelungen. La mort de Siegfried</em> (1924), Fritz Lang.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. puis silence.\n\n\n<b>Écrits\n---</b>\n\n','14’28','','publish','open','open','','1428','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13318',0,'post','',0),
  6356. (13319,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nDjihadistes tuant d’une une voiture des gens dans la rue.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','14’32','','publish','open','open','','1432','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13319',0,'post','',0),
  6357. (13320,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nHomme transpercé par un javelot.\n<em>Le testament d\'Orphée</em> (1960), Jean Cocteau.\n\n\n<b>Voix Off et In\n---</b>\n\nQuel horreur (fois 3)\n\n\n<b>Bande Son\n---</b>\n\nMitraillette, voitures.\n\n\n<b>Écrits\n---</b>\n\n','14’35','','publish','open','open','','1435','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13320',0,'post','',0),
  6358. (13321,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','14’42','','publish','open','open','','1442','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13321',0,'post','',0),
  6359. (13322,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nMaison en flammes. \n\n\n<b>Voix Off et In\n---</b>\n\nC\'est à Saint Petersburg \n\n\n<b>Bande Son\n---</b>\n\nViolon. \n\n\n<b>Écrits\n---</b>\n\n\n\n','14’45','','publish','open','open','','1445','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13322',0,'post','',0),
  6360. (13323,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nNobles habillés pour une fête de carnaval. <em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\nque de Maistre écrivait les soirées... A la veille de la bataille de la Moskova, il écrivait : « Les fléaux, les malheurs, les divisions, les tortures sont la punition de la méchanceté de l’homme corrompu par le péché. Le bourreau est la pierre angulaire de la société @ l’exécuteur de l’expiation divine.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','14’51','','publish','open','open','','1451','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13323',0,'post','',0),
  6361. (13324,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nPhoto d’une voiture avec militaires. \n\n\n<b>Voix Off et In\n---</b>\n\nC\'est lui \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','15’17','','publish','open','open','','1517','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13324',0,'post','',0),
  6362. (13325,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nMontage en surimpression : photo d’une comtesse. <em>My Official Wife</em> (1926), Paul L. Stein.\n\n\n<b>Voix Off et In\n---</b>\n\nqui nous renvoie à notre juge naturel... Sa mission est sacrée.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','15’19','','publish','open','open','','1519','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13325',0,'post','',0),
  6363. (13326,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','15’22','','publish','open','open','','1522','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13326',0,'post','',0),
  6364. (13327,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nMilitaires sur un champ de bataille, explosions.\n<em>Guerre et paix</em> (1956), King Vidor.\n\n\n<b>Voix Off et In\n---</b>\n\nLe ciel ne peut être apaisé que par le sang. L’innocent peut payer pour le coupable. (Jean Luc Godard).\n<em>Les soirées de Saint-Pétersbourg</em> (1821), Joseph de Maistre.\n\n\n<b>Bande Son\n---</b>\n\nId. et batterie\n\n\n<b>Écrits\n---</b>\n\n','15’26','','publish','open','open','','1526','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13327',0,'post','',0),
  6365. (13328,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nEn noir et blanc : homme traînant un chargement.\n<em>Les paumés de la mendicité [Ladoni]</em> (1994), Artur Aristakisyan.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis <em>Concerto pour Violoncelle et cordes : part II. Longing</em> (2008), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\n','15’33','','publish','open','open','','1533','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13328',0,'post','',0),
  6366. (13329,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nPhoto du tombeau de Rosa Luxemburg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','16’02','','publish','open','open','','1602','','','2023-11-09 08:53:21','2023-11-09 07:53:21','',0,'https://localhost/?p=13329',0,'post','',0),
  6367. (13330,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nEn superposition : soldats tirant une femme à la bouche ouverte.\n<em>La Chanteuse de café (ou au gant)</em> (1878), Edgar Degas. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','16’09','','publish','open','open','','1609','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13330',0,'post','',0),
  6368. (13331,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nCheval dans un cimetière. Documentaire <em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','16’12','','publish','open','open','','1612','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13331',0,'post','',0),
  6369. (13332,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nFemme gisant sur le dos, devant un homme regardant la mer.\n<em>Notre musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVagues et cris de mouettes.\n\n\n<b>Écrits\n---</b>\n\n','16’18','','publish','open','open','','1618','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13332',0,'post','',0),
  6370. (13333,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','16’50','','publish','open','open','','1650','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13333',0,'post','',0),
  6371. (13334,1,'2023-09-26 09:19:02','2023-09-26 07:19:02','<b>Images\n---</b>\n\nDétail saturé et surexposée : photographie d’une femme à terre, blessée, un chien mort à ses côtés.\n<em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','16’54','','publish','open','open','','1654','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13334',0,'post','',0),
  6372. (13335,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nSaturé, puis pris depuis le toit d\'un réservoir : soldats traversant une rivière, les armes au-dessus de la tête. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','16’56','','publish','open','open','','1656','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13335',0,'post','',0),
  6373. (13336,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','17’05','','publish','open','open','','1705','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13336',0,'post','',0),
  6374. (13337,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nTableau représentant Joseph de Maistre, père de la philosophie contre-révolutionnaire, et critique important des idées des Lumières. \n\n\n<b>Voix Off et In\n---</b>\n\nAu cours de la soirée, le comte Joseph de Maistre grand croix de l\'ordre de saint Maurice et de Lazare, continua… \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','17’08','','publish','open','open','','1708','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13337',0,'post','',0),
  6375. (13338,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nSaturé : bombardements aériens. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nExplosions et avions. \n\n\n<b>Écrits\n---</b>\n\n\n\n','17’16','','publish','open','open','','1716','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13338',0,'post','',0),
  6376. (13339,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nVoyage dans la steppe à l’arrière d’un camion : une femme et un enfant, la tête recouverte d’un foulard @ sur la route poussiéreuse, l’ombre d’autres camions passant dans la perpendiculaire à l’horizon.\n<em>Alenka</em> (1961), Boris Barnet. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Concerto pour Violoncelle et cordes : part II. Longing</em> (2008), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\nLa terre\n','17’27','','publish','open','open','','1727','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13339',0,'post','',0),
  6377. (13340,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nFemme poursuivie et attaquée par un groupe d\'hommes.\n<em>Les Contes de la lune vague après la pluie</em> (1953), Kenji Mizoguchi.\n\n\n<b>Voix Off et In\n---</b>\n\ncontinua ses phrases les plus folles. Ainsi s’accomplit sans cesse la grande loi de la destruction des êtres vivants. La terre entière continuellement imbibée de sang n’est qu’un autel immense où tout ce qui vit\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','17’33','','publish','open','open','','1733','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13340',0,'post','',0),
  6378. (13341,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nFemmes traversant une ville détruite dont les bâtiments s\'effondrent devant elles.\n<em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\ndoit être immolé, sans fin, sans mesure @\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','17’56','','publish','open','open','','1756','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13341',0,'post','',0),
  6379. (13342,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nEn couleur : femme au bord d\'une route, le visage défiguré par des coups.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nOù tout ce qui vit doit être immolé, sans fin, sans mesure, sans relâche jusqu\'à la consommation des choses, jusqu\'à l\'extinction du mal.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','18’02','','publish','open','open','','1802','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13342',0,'post','',0),
  6380. (13343,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nVoitures de police djihadistes défilant dans les rues, avec des drapeaux noirs. \n\n\n<b>Voix Off et In\n---</b>\n\nD’ici un mois, les brigades allaient devoir quitter le pays. Une fois de plus, nous comprîmes à quel point \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’15','','publish','open','open','','1815','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13343',0,'post','',0),
  6381. (13344,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nVoiture avec des soldats armés de fusils passant au milieu d\'une rue avec des gens autour. \n\n\n<b>Voix Off et In\n---</b>\n\nnous n’avions pu imaginer que la guerre finisse sans que nous remportions la victoire. La guerre est donc divine en elle-même. \n \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’19','','publish','open','open','','1819','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13344',0,'post','',0),
  6382. (13345,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLa guerre, la guerre est donc divine en elle-même, parce que c\'est une loi du monde. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nDélivrance \n\n','18’28','','publish','open','open','','1828','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13345',0,'post','',0),
  6383. (13346,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nPhotos d\'avions de chasse en vol. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’35','','publish','open','open','','1835','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13346',0,'post','',0),
  6384. (13347,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nSaturé : bombes et explosions. \n\n\n<b>Voix Off et In\n---</b>\n\nQui pourrait douter que la mort trouvée dans les combats n’est de grand privilège et qui pourrait croire que les victimes de cet épouvantable \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’37','','publish','open','open','','1837','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13347',0,'post','',0),
  6385. (13348,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nPhoto d\'une petite fille demandant désespérément de l\'aide à un soldat. \n\n\n<b>Voix Off et In\n---</b>\n\njugement aient versé leur sang en vain. La guerre est donc divine dans la gloire mystérieuse qui l\'environne, et dans l\'attrait non moins \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’47','','publish','open','open','','1847','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13348',0,'post','',0),
  6386. (13349,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\ninexplicable qui nous y porte. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’07','','publish','open','open','','1907','','','2023-11-09 08:53:22','2023-11-09 07:53:22','',0,'https://localhost/?p=13349',0,'post','',0),
  6387. (13350,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nEnfants jouant à la guerre. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’11','','publish','open','open','','1911','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13350',0,'post','',0),
  6388. (13351,1,'2023-09-26 09:19:03','2023-09-26 07:19:03','<b>Images\n---</b>\n\nSaturé : voiture passant avec un drapeau étasunien. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’21','','publish','open','open','','1921','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13351',0,'post','',0),
  6389. (13352,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’24','','publish','open','open','','1924','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13352',0,'post','',0),
  6390. (13353,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nFemme militaire.\n<em>La chute de Berlin</em> (1950), Mikhaïl Tchiaoureli.\n\n\n<b>Voix Off et In\n---</b>\n\nEn fin de soirée, encore ces mots de représentants de la diplomatie française\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’26','','publish','open','open','','1926','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13353',0,'post','',0),
  6391. (13354,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nà Saint-Petersburg.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’33','','publish','open','open','','1933','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13354',0,'post','',0),
  6392. (13355,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nAu ralenti : politiciens débattant dans une assemblée.\n<em>Napoléon</em> (1927), Abel Gance.\n\n\n<b>Voix Off et In\n---</b>\n\nEn fin de soirée, encore ces mots de la diplomatie française à Saint-Petersburg.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’36','','publish','open','open','','1936','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13355',0,'post','',0),
  6393. (13356,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nDétail : homme et femme pleurant.\n<em>Adam et Ève chassés du paradis</em> (1424 - 1425), Masaccio.\n\n\n<b>Voix Off et In\n---</b>\n\nMais c’est précisément parce que la révolution qui s’y passe est le comble de l’absurdité et de la corruption morale... (Jean-Luc Godard).\n<em>Soirées de Saint-Pétersbourg</em> (1821), Joseph de Maistre.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’43','','publish','open','open','','1943','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13356',0,'post','',0),
  6394. (13357,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nChien.\n<em>Adieu au langage</em> (2014), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’49','','publish','open','open','','1949','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13357',0,'post','',0),
  6395. (13358,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nHomme en voiture roulant très vite.\n<em>Dr. Mabuse, le joueur</em> (1922), Fritz Lang.\n\n\n<b>Voix Off et In\n---</b>\n\net Malraux dira plus simplement transformer notre apocalypse en armée ou crever, c’est tout. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’57','','publish','open','open','','1957','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13358',0,'post','',0),
  6396. (13359,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nTransformer notre apocalypse en armée \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','20’07','','publish','open','open','','2007','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13359',0,'post','',0),
  6397. (13360,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nSaturé et en tons verts et jaunes : canard attaqué par un crocodile, et tentant de s\'échapper.\n\n\n<b>Voix Off et In\n---</b>\n\nou crever, c’est tout.\nL’espoir (1937), André Malraux.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','20’09','','publish','open','open','','2009','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13360',0,'post','',0),
  6398. (13361,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nLapin touché par un coup de feu.\n<em>La règle du jeu</em> (1939), Jean Renoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCoup de feu.\n\n\n<b>Écrits\n---</b>\n\n','20’13','','publish','open','open','','2013','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13361',0,'post','',0),
  6399. (13362,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nPhotos de trois indiens à cheval au bord d\'une rivière, dans un quartier industrialisé.\n<em>Notre musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nLaissez-moi seul. Tout seul, vous entendez ? Je ne demande rien à personne moi.\n<em>Allô Berlin ? Ici Paris !</em> (1931), Julien Duvivier.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','20’21','','publish','open','open','','2021','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13362',0,'post','',0),
  6400. (13363,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nRangée de personnes pendues ensemble.\n<em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nPiano Quintet, Op. 18 - 4. Largo (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','20’26','','publish','open','open','','2026','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13363',0,'post','',0),
  6401. (13364,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n3.\nCES FLEURS ENTRE LES RAILS,\nDANS LE VENT CONFUS\nDES VOYAGES\n\n(Joseph Maria Rilke).\n','20’28','','publish','open','open','','2028','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13364',0,'post','',0),
  6402. (13365,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nPetite fille sur le quai regardant le passage d\'un train.\n<em>Madeline + Train = Sheer Delight</em>, <a href=\"https://www.youtube.com/watch?v=rvpCmKUo1Aw\">Vidéo sur youtube</a> .\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nPiano.\n\n\n<b>Écrits\n---</b>\n\n','20’41','','publish','open','open','','2041','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13365',0,'post','',0),
  6403. (13366,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nEn négatif et passé en noir et blanc : train à vapeur passant.\n<em>Visual essays : origins of film</em> (1983), Al Razutis.\n\n\n<b>Voix Off et In\n---</b>\n\n- What’s coming ?\n- A train.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','20’42','','publish','open','open','','2042','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13366',0,'post','',0),
  6404. (13367,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nImages du 19ème siècle : passagers montant dans un train. \n\n\n<b>Voix Off et In\n---</b>\n\n- Oh is gonna arrive the train ? \n - Yeah \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','20’45','','publish','open','open','','2045','','','2023-11-09 08:53:23','2023-11-09 07:53:23','',0,'https://localhost/?p=13367',0,'post','',0),
  6405. (13368,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- Here he comes ! \n - We are gonna be safe, let\'s go back \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','20’59','','publish','open','open','','2059','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13368',0,'post','',0),
  6406. (13369,1,'2023-09-26 09:19:04','2023-09-26 07:19:04','<b>Images\n---</b>\n\nEn négatif, passé en noir et blanc, clignotant sur les images originales : train à vapeur passant.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nTrain en approche.\n\n\n<b>Écrits\n---</b>\n\n','21’03','','publish','open','open','','2103','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13369',0,'post','',0),
  6407. (13370,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n- Oooh\n<em>Madeline + Train = Sheer Delight</em>, <a href=\"https://www.youtube.com/watch?v=rvpCmKUo1Aw\">Vidéo sur youtube</a>.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','21’05','','publish','open','open','','2105','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13370',0,'post','',0),
  6408. (13371,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nSaturé : fleurs. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','21’07','','publish','open','open','','2107','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13371',0,'post','',0),
  6409. (13372,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nHommes jetant des pierres sur un train venant de passer.\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- lui jette la première pierre !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','21’09','','publish','open','open','','2109','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13372',0,'post','',0),
  6410. (13373,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','21’14','','publish','open','open','','2114','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13373',0,'post','',0),
  6411. (13374,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nPassagers d\'un train s\'installant dans leurs cabines avant le départ.\n<em>Berlin express</em> (1948), Jacques Tourneur.\n\n\n<b>Voix Off et In\n---</b>\n\nCompartment B, Lucienne Mirbeau, birthplace Lyon France, occupation secretary. Compartment C, Herr Otto Franzen, birthplace, Frankfurt, Germany. Once a German industrialist, now a dealer in scrap iron. Compartment D, unoccupied, but being held for a person of importance. Compartment E, James Sterling of Liverpool, former occupation, soldier, present occupation, school teacher. Lieutenant Maxim Kiroshilov, birthplace Moskow, defender of Stalingrad, now military aide, Russian occupation authorities. Compartment F, Hneu Perrault, Paris, once a member of the French Underground, now a man of commerce.\nCompartment G, Hans Schmidt, birthplace Munich, occupation\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','21’19','','publish','open','open','','2119','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13374',0,'post','',0),
  6412. (13375,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','22’27','','publish','open','open','','2227','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13375',0,'post','',0),
  6413. (13376,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nTrain à vapeur en approche traversant un bois sous la neige.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\nIl était environ neuf heures du matin\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','22’30','','publish','open','open','','2230','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13376',0,'post','',0),
  6414. (13377,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nEn couleurs : gens poursuivant un train en partance.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\nc’était à la fin de novembre, par un temps de dégel. Le train de Varsovie filait à toute vapeur vers Petersburg.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','22’38','','publish','open','open','','2238','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13377',0,'post','',0),
  6415. (13378,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nSuresposé et passé en noir et blanc : Femmes nues au sauna.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\nL’humidité et la brume étaient telles que le jour avait peine à percer.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','22’42','','publish','open','open','','2242','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13378',0,'post','',0),
  6416. (13379,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nDeux enfants devant un train en partance.\n<em>Paysage dans le brouillard</em> (1988), Theo Angelopoulos.\n\n\n<b>Voix Off et In\n---</b>\n\nÀ dix pas à droite et à gauche de la voie, on distinguait malaisément quoi que ce fût par les fenêtres du wagon. (Jean Luc Godard).\n<em>L’idiot</em> (1962), Fiodor Dostoïevski.\n\n\n<b>Bande Son\n---</b>\n\nId. puis trains et foule dans une gare.\n\n\n<b>Écrits\n---</b>\n\n','22’51','','publish','open','open','','2251','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13379',0,'post','',0),
  6417. (13380,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nQuand un siècle \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’23','','publish','open','open','','2323','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13380',0,'post','',0),
  6418. (13381,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nPhoto d\'une femme en robe rose. \n\n\n<b>Voix Off et In\n---</b>\n\nse dissout lentement dans le siècle suivant \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’28','','publish','open','open','','2328','','','2023-11-09 08:53:24','2023-11-09 07:53:24','',0,'https://localhost/?p=13381',0,'post','',0),
  6419. (13382,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nEnfants photographiant un canard.\n<em>Histoires du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nquelques individus transforment les moyens de survie anciens en moyens nouveaux. Ce sont ces derniers que nous appelons arts.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','23’34','','publish','open','open','','2334','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13382',0,'post','',0),
  6420. (13383,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nPhoto de Louis-Ferdinand Céline. \n\n\n<b>Voix Off et In\n---</b>\n\nLa seule chose qui survit à une époque \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’44','','publish','open','open','','2344','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13383',0,'post','',0),
  6421. (13384,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nSurexposé : maisons blanches cubiques. \n\n\n<b>Voix Off et In\n---</b>\n\nc\'est la forme d\'art qu\'elle s\'est créée. Aucune activité ne deviendra un art \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’50','','publish','open','open','','2350','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13384',0,'post','',0),
  6422. (13385,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nSaturé : personnes assises à des tables en terrasse d\'un bar. \n\n\n<b>Voix Off et In\n---</b>\n\navant que son époque ne soit terminée. Ensuite \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’56','','publish','open','open','','2356','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13385',0,'post','',0),
  6423. (13386,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nFragment surexposé.\n<em>Louis IX, dit Saint Louis, Roi de France</em> (1844), Emile Signol.\n\n\n<b>Voix Off et In\n---</b>\n\ncet art disparaîtra. (Jean Luc Godard).\n<em>Pour une métahistoire du film</em> (printemps 1997), Hollis Frampton, « <em>Trafic</em> », n. 21.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nLe roi Saint Louis\n','24’00','','publish','open','open','','2400','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13386',0,'post','',0),
  6424. (13387,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nFemme traversant un train bondé.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n- C’est pire que dans le métro.\n- Pardon, laissez passer.\n- Merde alors, vous pouvez pas rester à votre place non ?\n\n\n<b>Bande Son\n---</b>\n\n<em>Das Buch der Klange I - XII, V</em> (1999), Hans Otte.\n\n\n<b>Écrits\n---</b>\n\n','24’05','','publish','open','open','','2405','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13387',0,'post','',0),
  6425. (13388,1,'2023-09-26 09:19:05','2023-09-26 07:19:05','<b>Images\n---</b>\n\nTrain prenant un virage. \n\n\n<b>Voix Off et In\n---</b>\n\n- Suivez - moi Monsieur. \n - Décidément vous dormez \n - Oui, oui je dors. C’est très curieux. \n - Enfin madame, mais expliquerez-vous ? \n \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','24’46','','publish','open','open','','2446','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13388',0,'post','',0),
  6426. (13389,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nCadavres le long de voies ferrées.\n<em>Nuit et Brouillard</em> (1956), Alain Resnais.\n\n\n<b>Voix Off et In\n---</b>\n\n- Rien. Si vous dormez, si vous rêvez, acceptez vos rêves. C\'est le rôle du dormeur.\n<em>Orphée</em> (1950), Jean Cocteau.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','25’02','','publish','open','open','','2502','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13389',0,'post','',0),
  6427. (13390,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nCouple dans un train regardant par la fenêtre.\n<em>Film socialisme</em> (2010), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nElle était devenue terrible, la langue de Goethe, quand on l\'entendait dans la nuit des petites gares russes. (Jean Luc Godard).\n<em>Vie et destin</em> (1930), Vasiliĭ Semenovich Grossman.\n\nFemme [traduction du dialecte tunisien]:\nOn la décrit toujours comme quelque chose de surnaturel. Mais c\'est quelque chose qui ne se ressent pas. Une fois, je me suis heurté à une voiture de police. Après une explosion. J\'ai couru, je suis tombée. J\'ai senti ma tête se cogner contre le sol. J\'ai eu un malaise. Je n\'ai pas pensé à la mort. Non. Moi. C\'est MOI qui est en train de mourir.\n\nHomme (traduction du dialecte tunisien):\nJe te souhaite la sûreté.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','25’08','','publish','open','open','','2508','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13390',0,'post','',0),
  6428. (13391,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nFemme marchant et trébuchant parmi des soldats campant par terre après une catastrophe ferroviaire en Inde.\n<em>La Croisée des destins [Bhowani Junction]</em> (1956), George Cukor.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nNombreuses personnes parlant et criant.\n\n\n<b>Écrits\n---</b>\n\n','25’53','','publish','open','open','','2553','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13391',0,'post','',0),
  6429. (13392,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nHomme aidant une femme à sortir par la fenêtre d\'un wagon de train.\n<em>Le Mécano de la General [The General]</em> (1927), Buster Keaton.\n\n\n<b>Voix Off et In\n---</b>\n\nNous voulons voyager, sans vapeur, et sans voile, faites, pour égayer l’ennui de nos prisons, passer sur nos esprits tendus comme une toile, vos souvenirs avec leur cadre d’horizon. (Julie Delpy).\n« Le voyage », <em>Les Fleurs du mal</em> (1857), Charles Baudelaire.\n<em>Histoires du cinéma 2a</em> (1989 - 1999), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Le Clavier bien tempéré 1, BWV 846 - 869</em> (1722), Johann Sebastian Bach.\n\n\n<b>Écrits\n---</b>\n\n','26’00','','publish','open','open','','2600','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13392',0,'post','',0),
  6430. (13393,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nTrain en Afrique avec autour des femmes et hommes vendant des fruits et vêtements dans un marché. Enfants suivant un train qui s’éloigne.\n<em>Les routes de l’impossible</em> (2007), Tony Comiti, France 5.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nPersonnes parlant et criant. En arrière-plan sonore : tambours.\n\n\n<b>Écrits\n---</b>\n\n','26’30','','publish','open','open','','2630','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13393',0,'post','',0),
  6431. (13394,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nHomme et femme mangeant assis sur les sièges d\'un train.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','26’46','','publish','open','open','','2646','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13394',0,'post','',0),
  6432. (13395,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nPassagers dans un wagon.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAccordéon.\n\n\n<b>Écrits\n---</b>\n\n','26’48','','publish','open','open','','2648','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13395',0,'post','',0),
  6433. (13396,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nHomme parlant de manière animée à une femme dans un train.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSifflement de la vapeur s\'échappant d\'un train.\n\n\n<b>Écrits\n---</b>\n\n','26’50','','publish','open','open','','2650','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13396',0,'post','',0),
  6434. (13397,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nPassagers à l\'intérieur d\'une voiture.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAccordéon, voix de personnes qui discutent.\n\n\n<b>Écrits\n---</b>\n\n','26’53','','publish','open','open','','2653','','','2023-11-09 08:53:25','2023-11-09 07:53:25','',0,'https://localhost/?p=13397',0,'post','',0),
  6435. (13398,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nGroupe de personnes à l\'intérieur d\'une voiture, jouant de l\'accordéon.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','26’55','','publish','open','open','','2655','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13398',0,'post','',0),
  6436. (13399,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes voix de la séquence précédente continuent \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','26’56','','publish','open','open','','2656','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13399',0,'post','',0),
  6437. (13400,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nTrain passant au ralenti avec un drapeau nazi. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et train passant. \n\n\n<b>Écrits\n---</b>\n\n\n\n','27’00','','publish','open','open','','2700','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13400',0,'post','',0),
  6438. (13401,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nTrain traversant lentement un marché en Chine.\n<em>Shanghai Express</em> (1932), Josef von Sternberg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','27’05','','publish','open','open','','2705','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13401',0,'post','',0),
  6439. (13402,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nSaturé : fleurs.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Rising Grace</em> (2016), Wolfgang Muthspiel.\n\n\n<b>Écrits\n---</b>\n\n','27’07','','publish','open','open','','2707','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13402',0,'post','',0),
  6440. (13403,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\nSous les yeux de l’occident.\n<em>Under Western Eyes</em> (1911), Joseph Conrad.\n','27’17','','publish','open','open','','2717','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13403',0,'post','',0),
  6441. (13404,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nPersonne en tuant une autre dans un train.\n<em>Shanghai Express</em> (1932), Josef von Sternberg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVapeur s\'échappant d\'un train.\n\n\n<b>Écrits\n---</b>\n\n','27’19','','publish','open','open','','2719','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13404',0,'post','',0),
  6442. (13405,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nSoldat tirant sur d\'autres soldats, au-delà d\'une barricade.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nTirs de pistolets et mitraillettes.\n\n\n<b>Écrits\n---</b>\n\n','27’23','','publish','open','open','','2723','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13405',0,'post','',0),
  6443. (13406,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nAu ralenti : homme et femme passant dans le couloir d\'un train.\n\n<em>Terror by night</em> (1946), Roy William Neill.\n\n<b>Voix Off et In\n---</b>\n\nMais enfin dites-moi pourquoi vous avez fait de l’espionnage ?\n- J\'en sais rien.\n- Vous avez accepté ?\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','27’25','','publish','open','open','','2725','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13406',0,'post','',0),
  6444. (13407,1,'2023-09-26 09:19:06','2023-09-26 07:19:06','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n- D’entrer dans son organisation ? Non Michel.\nMais même chez les communistes l’agent compte plus que tout le reste.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','27’36','','publish','open','open','','2736','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13407',0,'post','',0),
  6445. (13408,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nVapeur sortant d\'un train prenant un virage.\n<em>Terror by night</em> (1946), Roy William Neill.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSifflet, puis passage d\'un train.\n\n\n<b>Écrits\n---</b>\n\n','27’45','','publish','open','open','','2745','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13408',0,'post','',0),
  6446. (13409,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nHomme regardant une femme boire, au restaurant d\'un train.\n<em>Terror by night</em> (1946), Roy William Neill.\n\n\n<b>Voix Off et In\n---</b>\n\nDeux discours prononcés par George Steiner et Cornelius Castoriadis se chevauchent :\nSteiner : Il fera exactement la même chose que les autres, ce que les autres lui ont appris.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','27’50','','publish','open','open','','2750','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13409',0,'post','',0),
  6447. (13410,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nEnfant regardant par la fenêtre d\'un train des wagons militaires transportant des réservoirs.\n<em>Le silence</em> (1963), Ingmar Bergman.\n\n\n<b>Voix Off et In\n---</b>\n\nPour qu\'il y ait vraiment des individus, il faut que la collectivité bouge, et pour que la collectivité bouge il fera exactement la même chose que les autres, ce que les autres\nCastoriadis : Quelque chose a surgi de barbare. Quelque chose d’immense lumière qui a accentué les beaux mystères de la vie\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','27’54','','publish','open','open','','2754','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13410',0,'post','',0),
  6448. (13411,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nAu ralenti : femme dans le vagons d’un train.\n<em>Terror by night</em> (1946), Roy William Neill.\n\n\n<b>Voix Off et In\n---</b>\n\n- Come va a New York ? Va bene ?\n- Non ci si arricchisce\n- Che importa questo ? Si può star bene senza arricchire\n\n\n<b>Bande Son\n---</b>\n\nTrain.\n\n\n<b>Écrits\n---</b>\n\n','28’11','','publish','open','open','','2811','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13411',0,'post','',0),
  6449. (13412,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nHommes parlant en regardant par la fenêtre d\'un train.\n<em>Sicilia !</em> (1998), Jean-Marie Straub et Danièle Huillet.\n\n\n<b>Voix Off et In\n---</b>\n\n- Non avresti fatto che il tuo dovere.\n- Naturalmente !\n- I tipi così sono sempre da fermare.\n- Effettivamente, non si sa mai.\n- Ogni morto di fame è un uomo pericoloso.\n- Come no, capace di tutto.\n- Di rubare.\n- Questo va da sé.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','28’14','','publish','open','open','','2814','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13412',0,'post','',0),
  6450. (13413,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nFemme entrant dans un wagon de train, hommes se retournant pour la regarder.\n<em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Image The Fog Dirappearing</em> (2016), Tord Gustavsen.\n\n\n<b>Écrits\n---</b>\n\n','28’35','','publish','open','open','','2835','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13413',0,'post','',0),
  6451. (13414,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’03','','publish','open','open','','2903','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13414',0,'post','',0),
  6452. (13415,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nCheval et cavalier au galop, derrière un train.\n<em>Turksib</em> (1921), Viktor Alexandrovitch Turin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’07','','publish','open','open','','2907','','','2023-11-09 08:53:26','2023-11-09 07:53:26','',0,'https://localhost/?p=13415',0,'post','',0),
  6453. (13416,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nHomme passant la main sur un vinyle et écoutant la musique qui s\'en dégage.\n<em>L’Atalante</em> (1934), Jean Vigo.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Concerto Grosso No. 4</em> (1988), Alfred Schnittke.\n\n\n<b>Écrits\n---</b>\n\n','29’10','','publish','open','open','','2910','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13416',0,'post','',0),
  6454. (13417,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nCheval et cavalier au galop, le long d’un train.\n<em>Turksib</em> (1921), Viktor Alexandrovitch Turin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','29’16','','publish','open','open','','2916','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13417',0,'post','',0),
  6455. (13418,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’22','','publish','open','open','','2922','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13418',0,'post','',0),
  6456. (13419,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nChameau reniflant les rails d\'un train, train traversant une prairie déserte.\n<em>Turksib</em> (1921), Viktor Alexandrovitch Turin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>The Fog Disappearing</em> (2016), Tord Gustavsen.\n\n\n<b>Écrits\n---</b>\n\n','29’24','','publish','open','open','','2924','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13419',0,'post','',0),
  6457. (13420,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nPaysage vu d\'un train. \n\n\n<b>Voix Off et In\n---</b>\n\nj\'avoue qu\'avant d\'embarquer à bord \n\n\n<b>Bande Son\n---</b>\n\nVoix masculine accompagnée au piano. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’31','','publish','open','open','','2931','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13420',0,'post','',0),
  6458. (13421,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nSaturé et surexposé : train avançant. \n\n\n<b>Voix Off et In\n---</b>\n\nde ce vieux \n piano \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’36','','publish','open','open','','2936','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13421',0,'post','',0),
  6459. (13422,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nMontage en superposition : rose.\n<em>Allemagne 90 neuf zéro</em> (1991), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nj\'ai scruté la météo\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’39','','publish','open','open','','2939','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13422',0,'post','',0),
  6460. (13423,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nPassage du métro. Superposé : femme semblant avoir été heurtée par un train.\n<em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nj\'ai longtemps flâné\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','29’42','','publish','open','open','','2942','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13423',0,'post','',0),
  6461. (13424,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nDessin : femme vue de dos.\n<em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','29’45','','publish','open','open','','2945','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13424',0,'post','',0),
  6462. (13425,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nEux tous\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt.\n\n\n<b>Écrits\n---</b>\n\n','29’50','','publish','open','open','','2950','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13425',0,'post','',0),
  6463. (13426,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nHommes saluant joyeusement des deux mains, depuis un train.\n<em>Les Deux Fedor</em> (1959), Marlen Khoutsiev.\n\n\n<b>Voix Off et In\n---</b>\n\nenfilés sur le fond\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’53','','publish','open','open','','2953','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13426',0,'post','',0),
  6464. (13427,1,'2023-09-26 09:19:07','2023-09-26 07:19:07','<b>Images\n---</b>\n\nFemmes courant.\n<em>Les Deux Fedor</em> (1959), Marlen Khoutsiev.\n\n\n<b>Voix Off et In\n---</b>\n\nDu vert luxuriant.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’57','','publish','open','open','','2957','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13427',0,'post','',0),
  6465. (13428,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nSaturé : paysage vu depuis la fenêtre d’un train. \n\n\n<b>Voix Off et In\n---</b>\n\nDe l’été. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’00','','publish','open','open','','3000','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13428',0,'post','',0),
  6466. (13429,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’03','','publish','open','open','','3003','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13429',0,'post','',0),
  6467. (13430,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nHomme courant le long d\'un train.\n<em>Wild boys on the road</em> (1933), William A. Wellman. <em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nEt l’embrasement\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’04','','publish','open','open','','3004','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13430',0,'post','',0),
  6468. (13431,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nAu ralenti : homme s\'approchant d\'une femme assise dans une grange devant un brasier.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’06','','publish','open','open','','3006','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13431',0,'post','',0),
  6469. (13432,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nFoule d\'hommes se pressant pour monter dans un train.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\nRoyal\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’07','','publish','open','open','','3007','','','2023-11-09 08:53:27','2023-11-09 07:53:27','',0,'https://localhost/?p=13432',0,'post','',0),
  6470. (13433,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nSaturé : trains miniatures passant sur une ligne de chemin de fer. <em>Toccata for Toy Trains</em> (1957), Charles and Ray Eames.\n\n\n<b>Voix Off et In\n---</b>\n\nde l\'automne.\n- Et la ruine de l’hiver\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’10','','publish','open','open','','3010','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13433',0,'post','',0),
  6471. (13434,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\navant que ne fleurisse \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’15','','publish','open','open','','3015','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13434',0,'post','',0),
  6472. (13435,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nFille faisant de l\'escrime devant un projecteur montrant une cathédrale gothique. En montage clignotant : cameraman sur un dolly. \n\n\n<b>Voix Off et In\n---</b>\n\nà nouveau \n le printemps, \n salit maintenant \n un peu noirci \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’19','','publish','open','open','','3019','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13435',0,'post','',0),
  6473. (13436,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nHomme se traînant le long d\'une voie ferrée.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nTrain en approche.\n\n\n<b>Écrits\n---</b>\n\n','30’30','','publish','open','open','','3030','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13436',0,'post','',0),
  6474. (13437,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’33','','publish','open','open','','3033','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13437',0,'post','',0),
  6475. (13438,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nHomme se traînant le long d\'une voie ferrée, et essayant de ne pas être écrasé par un train en approche.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’36','','publish','open','open','','3036','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13438',0,'post','',0),
  6476. (13439,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\npar le temps.\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt.\n\n\n<b>Écrits\n---</b>\n\n','30’39','','publish','open','open','','3039','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13439',0,'post','',0),
  6477. (13440,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nHomme évanoui et écrasé par un train.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\nToujours serein\n\n\n<b>Bande Son\n---</b>\n\nTrain en approche, cris.\n\n\n<b>Écrits\n---</b>\n\n','30’41','','publish','open','open','','3041','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13440',0,'post','',0),
  6478. (13441,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','30’45','','publish','open','open','','3045','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13441',0,'post','',0),
  6479. (13442,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nFemme arrachant ses boucles d\'oreilles en perle, horrifiée.\n<em>Au bord de la mer bleue</em> (1937), Boris Barnet.\n\n\n<b>Voix Off et In\n---</b>\n\n… des sentinelles. Non.\n- Comme s\'ils défendaient\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’47','','publish','open','open','','3047','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13442',0,'post','',0),
  6480. (13443,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nPerles tombant.\n<em>Au bord de la mer bleue</em> (1937), Boris Barnet.\nEnchaînement avec un montage clignotant : cadavres le long d\'une voie ferrée.\n<em>Nuit et brouillard</em> (1956), Alain Resnais.\n\n\n<b>Voix Off et In\n---</b>\n\nde leurs énormes et monolithiques\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt.\n\n\n<b>Écrits\n---</b>\n\n','31’01','','publish','open','open','','3101','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13443',0,'post','',0),
  6481. (13444,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nMontage clignotant : sous des cadavres longeant les rails d\'un train, folle dans une église du tableau.\n<em>L\'église Ludwigskirche à Munich</em> (1908), Wassily Kandinsky.\n\n\n<b>Voix Off et In\n---</b>\n\nLes vivants contre les morts.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','31’09','','publish','open','open','','3109','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13444',0,'post','',0),
  6482. (13445,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nTous. \n Les ossements. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','31’18','','publish','open','open','','3118','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13445',0,'post','',0),
  6483. (13446,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nFemmes et hommes autour d\'une table, plaçant leurs mains en cercle lors d\'une séance de spiritisme. <em>Anna Karénine</em> (1948), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\nAvant que ne fleurissent\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','31’21','','publish','open','open','','3121','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13446',0,'post','',0),
  6484. (13447,1,'2023-09-26 09:19:08','2023-09-26 07:19:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nà nouveau le printemps \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','31’26','','publish','open','open','','3126','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13447',0,'post','',0),
  6485. (13448,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nTrain passant dans le blizzard et personnes marchant sous la neige et dans le vent.\n<em>Anna Karénine</em> (1948), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et train passant.\n\n\n<b>Écrits\n---</b>\n\n','31’28','','publish','open','open','','3128','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13448',0,'post','',0),
  6486. (13449,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nEn superposition, et en alternance : dessin d\'un mort.\n<em>Les désastres de la guerre</em> (1815 - 20), Francisco Goya.\n\nPuis montage clignotant : personne levant un fusil vers le ciel, femme juive.\n\n\n<b>Voix Off et In\n---</b>\n\nEux tous, profilés sur le fond du vert luxuriant de l’été, et l\'embrasement royal de l’automne, et la ruine de l’hiver,\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt et silence.\n\n\n<b>Écrits\n---</b>\n\n','31’43','','publish','open','open','','3143','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13449',0,'post','',0),
  6487. (13450,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nAu ralenti, saturé : voie ferrée parcourue par un train.\n<em>Après le feu</em> (2010), Jacques Perconte.\n\n\n<b>Voix Off et In\n---</b>\n\navant que ne fleurisse à nouveau le printemps. Eux tous.\n<em>Sépulture Sud</em>, in <em>Idylle au désert et autres nouvelles</em> (1985), William Faulkner. <em>Grandeur et décadence d\'un petit commerce de cinéma</em> (1986), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','32’09','','publish','open','open','','3209','','','2023-11-09 08:53:28','2023-11-09 07:53:28','',0,'https://localhost/?p=13450',0,'post','',0),
  6488. (13451,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nHomme saluant une femme le regardant par la fenêtre d\'un train, et poursuivant le train qui s’éloigne.\n<em>Le plaisir</em> (1938), Max Ophüls.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Das Buch der Klange I - XII, V</em> (1999), Hans Otte.\n\n\n<b>Écrits\n---</b>\n\n','32’23','','publish','open','open','','3223','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13451',0,'post','',0),
  6489. (13452,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nPellicule passant dans un projecteur.\n<em>Deux fois cinquante ans de cinéma français</em> (1995), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','32’51','','publish','open','open','','3251','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13452',0,'post','',0),
  6490. (13453,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n \n\n\n<b>Écrits\n---</b>\n\n\n\n','33’02','','publish','open','open','','3302','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13453',0,'post','',0),
  6491. (13454,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n4 \n L’ESPRIT DES LOIS \n\n','33’05','','publish','open','open','','3305','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13454',0,'post','',0),
  6492. (13455,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nActeurs incarnant au théâtre des soldats intimant à la population qui manifeste de se disperser. Soldats déposant les armes et s\'unissant au peuple. <em>La Commune (Paris, 1971)</em> (2000), Peter Watkins.\n\n\n<b>Voix Off et In\n---</b>\n\nÉcartez - vous. Première sommation, nous allons faire usage de la force. Deuxième et dernière sommation, nous allons faire usage de la force. Dispersez-vous.\n\n\n<b>Bande Son\n---</b>\n\nPersonnes protestant et criant.\n<em>Three Little Nocturnes, II Allegro appassionata</em> (2005), Hans Abrahamsen.\n\n\n<b>Écrits\n---</b>\n\n','33’08','','publish','open','open','','3308','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13455',0,'post','',0),
  6493. (13456,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nHommes derrière une barricade attaqués par des soldats.\n<em>Vendémiaire</em> (1918), Louis Feuillade.\n<em>Histoire (s) du cinéma 3b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- La situation de tous, dans cette heure fatale et dans ce lieu inexorable, avait comme résultat et comme sommet. <em>Les Misérables</em> (1862), Victor Hugo.\n- Le drapeau\n\n\n<b>Bande Son\n---</b>\n\n<em>Breit-sehr frisch und straff</em> (1939), Paul Hindemith.\n\n\n<b>Écrits\n---</b>\n\n','34’08','','publish','open','open','','3408','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13456',0,'post','',0),
  6494. (13457,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nPhotographie d’Arthur Rimbaud.\n\n\n<b>Voix Off et In\n---</b>\n\n- la mélancolie suprême d’Enjolras. <em>Les Misérables</em> (1862), Victor Hugo.\n- Le drapeau va au paysage infâme\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','34’20','','publish','open','open','','3420','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13457',0,'post','',0),
  6495. (13458,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nFemme tout en blanc se dirigeant vers un écran puis reculant de peur, les mains en l\'air.\n<em>Le Mystère des roches de Kador</em> (1912), Léonce Perret. <em>Histoire (s) du cinéma 2a</em> (1988 - 89), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\net notre patois étouffe le\ntambour. Arthur Rimbaud,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','34’30','','publish','open','open','','3430','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13458',0,'post','',0),
  6496. (13459,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\ndémocratie. (Jean Luc Godard). <em>Les Illuminations. Démocratie</em> (1854), Arthur Rimbaud.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nTERRORISM CONSIDERED\nas one of the\nFINE ARTS\n','34’36','','publish','open','open','','3436','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13459',0,'post','',0),
  6497. (13460,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nDissonance Films \n\n','34’38','','publish','open','open','','3438','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13460',0,'post','',0),
  6498. (13461,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nFemme supliant un homme jettant un bébé par la fenêtre.\n<em>Histoire (s) du cinéma</em>, (1988 - 89), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nAprès une révolution dans la révolution (Philippe Sollers).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nEnd Lo Sung\n','34’41','','publish','open','open','','3441','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13461',0,'post','',0),
  6499. (13462,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nAu violon \n\n\n<b>Écrits\n---</b>\n\n\n\n','34’44','','publish','open','open','','3444','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13462',0,'post','',0),
  6500. (13463,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nSaturé : torero transperçant un taureau à coups d’épée. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','34’48','','publish','open','open','','3448','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13463',0,'post','',0),
  6501. (13464,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nAu ralenti : homme courant et criant en faisant claquer ses poignets ensemble.\n<em>La terre</em> (1930), Alexandre Dovjenko. <em>Histoire (s) du cinéma 2a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVoix masculine, accompagnée à la guitare : chant russe.\n<em>La chasse aux loups</em> (1977), Vladimir Vissotsky.\n\n\n<b>Écrits\n---</b>\n\n','34’49','','publish','open','open','','3449','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13464',0,'post','',0),
  6502. (13465,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’12','','publish','open','open','','3512','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13465',0,'post','',0),
  6503. (13466,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nSurexposé : photographie d’un buste de Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\nSi je pouvais faire en sorte que ceux qui commandent augmentassent leur connaissances sur ce qu’ils doivent prescrire, et que ceux qui obéissent trouvassent un nouveau plaisir à obéir. <em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','35’14','','publish','open','open','','3514','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13466',0,'post','',0),
  6504. (13467,1,'2023-09-26 09:19:09','2023-09-26 07:19:09','<b>Images\n---</b>\n\nEnfants en Asie faisant un exercice militaire. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoix d\'enfants chantant et criant ensemble. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’26','','publish','open','open','','3526','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13467',0,'post','',0),
  6505. (13468,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nSurexposé : personnes marchant courbées et vacillantes le long d\'un couloir.\n<em>Alphaville</em> (1965), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nJe me croirais le plus heureux des hommes.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','35’31','','publish','open','open','','3531','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13468',0,'post','',0),
  6506. (13469,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nJe me croirais le plus heureux des mortels. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’37','','publish','open','open','','3537','','','2023-11-09 08:53:29','2023-11-09 07:53:29','',0,'https://localhost/?p=13469',0,'post','',0),
  6507. (13470,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nSaturé et surexposé : pellicule d’aspect usée et déchirée.\n<em>Notre caméra analytique</em> (2015), Yervant Gianikian et Angela Ricci Lucchi.\n\n\n<b>Voix Off et In\n---</b>\n\nJe me croirais le plus heureux des mortels, si je pouvais faire que les hommes\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’40','','publish','open','open','','3540','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13470',0,'post','',0),
  6508. (13471,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nCouverture des volumes de <em>l\'Esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\npuissent se guérir de leurs préjugés.\n<em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’50','','publish','open','open','','3550','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13471',0,'post','',0),
  6509. (13472,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nSaturé : visage d’un homme de profil allumant une cigarette.\n<em>Détective</em> (1985), Jean-Luc Godard. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nJ\'appelle ici préjugés,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’54','','publish','open','open','','3554','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13472',0,'post','',0),
  6510. (13473,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nMontage superposé : main tenant une bougie.\n<em>Ivan le terrible</em> (1944 - 46), Sergueï Eisenstein. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nnon pas\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’56','','publish','open','open','','3556','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13473',0,'post','',0),
  6511. (13474,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nce qui fait qu\'on ignore de certaines choses, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’59','','publish','open','open','','3559','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13474',0,'post','',0),
  6512. (13475,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nSurexposé : buste de Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\nmais ce qui fait qu\'on s\'ignore soi-même. (Jean Luc Godard)\n<em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’00','','publish','open','open','','3600','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13475',0,'post','',0),
  6513. (13476,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nCouteau planté sur une surface noire.\n<em>Au cœur de l\'orage</em> (1948), Jean-Paul Le Chanois.\n\n\n<b>Voix Off et In\n---</b>\n\nE arrivato Zampanò ! è arrivato Zampanò !\n\n\n<b>Bande Son\n---</b>\n\nTambours.\n\n\n<b>Écrits\n---</b>\n\n','36’02','','publish','open','open','','3602','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13476',0,'post','',0),
  6514. (13477,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nAu ralenti : deux clowns parmi une foule de gens.\n<em>La Strada</em> (1954), Federico Fellini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','36’13','','publish','open','open','','3613','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13477',0,'post','',0),
  6515. (13478,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nFemme au bord d\'une rivière.\n<em>Pastorales Tahitiennes</em> (1893), Paul Gauguin. Alternant, en montage clignotant : homme l’observant à travers une vitre.\n<em>Le Pré de Béjine</em> (1935 - 37), Sergueï Eisenstein. En alternance : femme en blanc des <em>Pastorales tahitiennes</em> (1892), Paul Gauguin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’18','','publish','open','open','','3618','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13478',0,'post','',0),
  6516. (13479,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nSaturé : homme et femme marchant entre des voitures en feu.\n<em>Weekend</em> (1967), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est qu’il n’est pas\n\n\n<b>Bande Son\n---</b>\n\n<em>Choral pour orgue, BWV 721 (« Aie pitié de moi Seigneur »)</em> (1704), Johann Sebastian Bach.\n\n\n<b>Écrits\n---</b>\n\n','36’22','','publish','open','open','','3622','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13479',0,'post','',0),
  6517. (13480,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nplus permis à un gouvernement \n qu’à un individu d’être un assassin. C’est que l’Europe est solidaire \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','36’27','','publish','open','open','','3627','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13480',0,'post','',0),
  6518. (13481,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nFemmes décapitant un homme.\n<em>Judith tranchant la tête d’Holopherne</em> (1620), Artemisia Gentileschi.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est que tout ce qui se fait en Europe\nest fait par l’Europe\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’32','','publish','open','open','','3632','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13481',0,'post','',0),
  6519. (13482,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nHomme pillant un cadavre. \n\n\n<b>Voix Off et In\n---</b>\n\nc’est que \n s’il existe un gouvernement \n de bêtes fauves \n il doit être traité \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’34','','publish','open','open','','3534','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13482',0,'post','',0),
  6520. (13483,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nHomme regardant à travers une caméra. En superposition : cadavre d’homme dans la rue. \n\n\n<b>Voix Off et In\n---</b>\n\nen bête fauve \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','36’41','','publish','open','open','','3641','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13483',0,'post','',0),
  6521. (13484,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nHomme conduisant une voiture à toute vitesse.\n<em>Dr. Mabuse, le joueur</em> (1922), Fritz Lang.\n\nEn superposition : dessin d\'homme. <em>Combats</em> (1915), Ernst Ludwig Kirchner. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est qu’à l’heure qu’il est, tout près de nous là, sous nos yeux on massacre\non incendie\non pille\non extermine\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’44','','publish','open','open','','3644','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13484',0,'post','',0),
  6522. (13485,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\non égorge les pères et les mères \n on vend les petites filles et les petits garçons \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','36’49','','publish','open','open','','3649','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13485',0,'post','',0),
  6523. (13486,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nFemme avec une tache rouge à la place de son sexe se trouvant situé à la hauteur de la bouche d’un Saturne dont le croquis se superpose au dessin en clignotement léger comme une flamme qui va s’éteindre, avec une femme portant une torche et au bras levé.\n<em>Lady Macbeth somnambule</em> (1781 - 84), Johann Heinrich Füssli. <em>Histoire (s) du cinéma 3a</em>, Jean-Luc Godard (1889 - 99)\n\n\n<b>Voix Off et In\n---</b>\n\non vend les petites filles et les petits garçons\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’52','','publish','open','open','','3652','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13486',0,'post','',0),
  6524. (13487,1,'2023-09-26 09:19:10','2023-09-26 07:19:10','<b>Images\n---</b>\n\nLady Macbeth id. clignotement id. avec deux corps pendus à un arbre, des taches rouges à la place du sexe et l’un en morceaux accrochés à l’arbre : des bras tranchés et attachés d’une corde à une branche, le corps pendu par les jambes et la tête plantée dans une branche.\n<em>Bel exploit, avec des morts</em> (dans la série des <em>Désastres de la guerre, n. 39</em> (1810 - 1815), Francisco de Goya. <em>Histoire (s) du cinéma 3a</em> (1889 - 99), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est que les enfants trop petits\npour être vendus\non les fend d’un coup de sabre\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’55','','publish','open','open','','3655','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13487',0,'post','',0),
  6525. (13488,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nGoya id. Clignotant : enfant errant dans une ville.\n<em>Allemagne année zéro</em> (1948), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est qu’on brûle les familles dans les maisons\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’58','','publish','open','open','','3658','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13488',0,'post','',0),
  6526. (13489,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nEnfant errant dans une ville.\n<em>Allemagne année zéro</em> (1948), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','37’03','','publish','open','open','','3703','','','2023-11-09 08:53:30','2023-11-09 07:53:30','',0,'https://localhost/?p=13489',0,'post','',0),
  6527. (13490,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nId.. Rossellini. En surimpression : homme avec une tête au bout d’un pique.\nGravure des <em>Disparates</em> (1821 - 24), Francisco de Goya. <em>Histoire (s) du cinéma 3a</em> (1889 - 99), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nde sorte qu’aux vivants qui leur ont envoyé le carnage\nles morts envoient la peste, ce qui est bien fait\nnous apprenons aux gouvernements d’Europe\nceci :\nc’est qu’on ouvre les femmes grosses\npour leur tuer les enfants dans les entrailles\n\n\n<b>Bande Son\n---</b>\n\n<em>Choral pour orgue, BWV 721 (« Aie pitié de moi Seigneur »)</em> (1704), Johann Sebastian Bach.\n\n\n<b>Écrits\n---</b>\n\nLes signes parmi nous.\n','37’09','','publish','open','open','','3709','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13490',0,'post','',0),
  6528. (13491,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est qu’il y a dans les places publiques\ndes tas de squelettes. (Jean-Luc Godard)\n<em>Pour la Serbie</em> (1876), Victor Hugo.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’25','','publish','open','open','','3725','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13491',0,'post','',0),
  6529. (13492,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nChat noir descendant les escaliers au ralenti.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nLe sort de la France\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','37’27','','publish','open','open','','3727','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13492',0,'post','',0),
  6530. (13493,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nSurexposé : homme se traînant péniblement vers une chaise.\n<em>Docteur Jerry et Mister Love</em> (1963), Jerry Lewis.\n\n\n<b>Voix Off et In\n---</b>\n\nSuivait celui de l’Amérique. Comme dans les contes romantiques allemandes, le chat\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’29','','publish','open','open','','3729','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13493',0,'post','',0),
  6531. (13494,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nqui éprouve à son tour les amours \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','37’37','','publish','open','open','','3737','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13494',0,'post','',0),
  6532. (13495,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nPieds marchant au milieu de l\'eau.\n<em>La couleur de la grenade</em> (1968), Sergei Parajanov.\n\n\n<b>Voix Off et In\n---</b>\n\net les ambitions de son maître et les rend dérisoires.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’42','','publish','open','open','','3742','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13495',0,'post','',0),
  6533. (13496,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nPieds marchant dans la rue.\n<em>Les Olvidados</em> (1950), Luis Buñuel.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCloche d’enterrement.\n\n\n<b>Écrits\n---</b>\n\n','37’44','','publish','open','open','','3744','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13496',0,'post','',0),
  6534. (13497,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nPhotographie de Marilyn Monroe.\n<em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','37’46','','publish','open','open','','3746','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13497',0,'post','',0),
  6535. (13498,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nHomme et jeune femme sous la pluie.\n<em>Le premier maître</em> (1965), Andreï Kontchalovski. <em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’47','','publish','open','open','','3747','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13498',0,'post','',0),
  6536. (13499,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nVisage de femme aux mains jointes dans un geste de prière. En tons rouges :\ndétail de la fresque de la coupole <em>San Antonio de la Florida</em> (1798), Francisco Goya. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’50','','publish','open','open','','3750','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13499',0,'post','',0),
  6537. (13500,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nJean-Luc Godard posant les mains sur un exemplaire de <em>De la certitude</em> (1951), Ludwig Wittgenstein, puis les retirant. En dessous, un autre livre de la Pléiade. Sur un bureau, clés et marqueurs. À côté, <em>JLG / JLG</em> (1995), Jean-Luc Godard. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','37’51','','publish','open','open','','3751','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13500',0,'post','',0),
  6538. (13501,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nIris : détail, un visage.\n<em>Judith et Holopherne</em> (1820 - 23), Francisco de Goya. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Pourquoi Sarajevo ?\n- On dit deux cents villages brûlés\nil n’y en a que quatre vingt dix neuf\nce que vous appelez la peste\nn’est que le typhus\ntoutes les femmes n’ont pas été violées\n\n\n<b>Bande Son\n---</b>\n\nCloche d’enterrement et silence.\n\n\n<b>Écrits\n---</b>\n\nDes ténèbres\n','37’59','','publish','open','open','','3759','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13501',0,'post','',0),
  6539. (13502,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\ntoutes les filles n’ont pas été vendues \n quelques-unes ont échappé \n on a châtré les prisonniers \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','38’10','','publish','open','open','','3810','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13502',0,'post','',0),
  6540. (13503,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nDétail du visage d\'une femme.\n<em>Balcon</em> (1868), Edouard Manet. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nmais on leur a aussi coupé la tête…\n- Parce que la Palestine\n-... à la pointe d’une baïonnette. (Jean-Luc Godard)\n<em>Pour la Serbie</em> (1876), Victor Hugo.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nJe sais à quoi tu penses\n','38’15','','publish','open','open','','3815','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13503',0,'post','',0),
  6541. (13504,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt cetera, et cetera. (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','38’27','','publish','open','open','','3827','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13504',0,'post','',0),
  6542. (13505,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nQuatrièmes de couverture des exemplaires des volumes de <em>l\'Esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\nC\'est en cherchant à instruire les hommes, que l\'on peut pratiquer cette vertu générale qui comprend l\'amour de tous. L\'homme …\nque l\'on peut pratiquer cette vertu générale qui comprend l\'amour de tous.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','38’31','','publish','open','open','','3831','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13505',0,'post','',0),
  6543. (13506,1,'2023-09-26 09:19:11','2023-09-26 07:19:11','<b>Images\n---</b>\n\nHommes encagoulés de blanc sur le toit d\'une voiture avec une croix en bois sur le coffre. \n\n\n<b>Voix Off et In\n---</b>\n\nL\'homme, l’homme \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','38’58','','publish','open','open','','3858','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13506',0,'post','',0),
  6544. (13507,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nAu ralenti : homme ouvrant un canif avec sa main.\n<em>M le maudit</em> (1931), Fritz Lang. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\ncet être flexible, se pliant dans la société\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’00','','publish','open','open','','3900','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13507',0,'post','',0),
  6545. (13508,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nHomme tenant un appareil photo. \n\n\n<b>Voix Off et In\n---</b>\n\naux pensées \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','39’07','','publish','open','open','','3907','','','2023-11-09 08:53:31','2023-11-09 07:53:31','',0,'https://localhost/?p=13508',0,'post','',0),
  6546. (13509,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nFemme mourant dans les bras d\'un homme et s\'effondrant sur le sol.\n\n\n<b>Voix Off et In\n---</b>\n\net aux impressions des autres, est également capable de comprendre sa propre nature. lorsqu\'on la lui montre, et d\'en perdre jusqu\'au sentiment lorsqu\'on la lui dérobe. (Jean-Luc Godard).\n<em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’09','','publish','open','open','','3909','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13509',0,'post','',0),
  6547. (13510,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nHomme poussant un autre homme au sol.\n<em>Francesco, giullare di dio</em> (1950), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’30','','publish','open','open','','3930','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13510',0,'post','',0),
  6548. (13511,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nPhotographie d\'un réalisateur regardant à travers une caméra \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','39’39','','publish','open','open','','3939','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13511',0,'post','',0),
  6549. (13512,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nSaturé et ouverture iris entourée de noir : mains d\'une femme avec des ciseaux coupant une pellicule. \n\n\n<b>Voix Off et In\n---</b>\n\n- Books ? \n - Yeah, in the last barrel \n - Books \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','39’46','','publish','open','open','','3946','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13512',0,'post','',0),
  6550. (13513,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nHomme trouvant un livre et le lisant, pendant que d\'autres enfants et adultes l\'entourent avec intérêt.\n<em>Vers sa destinée</em> (1939), John Ford.\n\n\n<b>Voix Off et In\n---</b>\n\n- That\'s law.\n- Law, I know that book was about somethin’.\n- Hardly a thumb mark on it either.\n- No sir. We took mighty good care of it. Reckon you can read it, sir ?\n- I expect I could make heads or tails out of it, if I set my mind to it.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’48','','publish','open','open','','3948','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13513',0,'post','',0),
  6551. (13514,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','40’07','','publish','open','open','','4007','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13514',0,'post','',0),
  6552. (13515,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nHomme allongé, les jambes contre un arbre, un livre à la main.\n<em>Vers sa destinée</em> (1939), John Ford.\n\n\n<b>Voix Off et In\n---</b>\n\nA bas le roi !\nIl a dix femmes dans son lit pour y passer de folles nuits. A Bas le roi !\nVive la loi ! Vive la loi !\nVive le roi ! Peut contenter d’une traite. A bas la loi !\n<em>Chanson paillarde républicaine.</em>\n\n<b>Bande Son\n---</b>\n\nAccordéon, voix féminine.\n\n\n<b>Écrits\n---</b>\n\n','40’10','','publish','open','open','','4010','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13515',0,'post','',0),
  6553. (13516,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nHomme en menaçant et poussant un autre dans des escaliers.\n<em>Le Chaos</em> (2007), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','40’32','','publish','open','open','','4032','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13516',0,'post','',0),
  6554. (13517,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','40’36','','publish','open','open','','4036','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13517',0,'post','',0),
  6555. (13518,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nAu ralenti : homme souriant, les dents découvertes.\n<em>Freaks</em> (1939), Tod Browning. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','40’39','','publish','open','open','','4039','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13518',0,'post','',0),
  6556. (13519,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nFemme nue, homme lui léchant l’anus.\nExtrait d’un film pornographique.\n<em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','40’44','','publish','open','open','','4044','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13519',0,'post','',0),
  6557. (13520,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nHomme riant, et se couvrant la bouche avec la main.\n<em>Freaks</em> (1939), Tod Browning. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et <em>Arcadiana, Op. 12 : IV. Et … (tango mortale)</em> (1994), Thomas Adès.\n\n\n<b>Écrits\n---</b>\n\n','40’51','','publish','open','open','','4051','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13520',0,'post','',0),
  6558. (13521,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : François Truffaut.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Arcadiana, Op. 12 : IV. Et … (tango mortale)</em> (1994), Thomas Adès.\n\n<b>Écrits\n---</b>\n\n','40’57','','publish','open','open','','4057','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13521',0,'post','',0),
  6559. (13522,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : Jacques Rivette. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’00','','publish','open','open','','4100','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13522',0,'post','',0),
  6560. (13523,1,'2023-09-26 09:19:12','2023-09-26 07:19:12','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : Eric Rohmer. \n\n\n<b>Voix Off et In\n---</b>\n\nOn sent que l’on tombera. Doit tomber. \n Va tomber. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’04','','publish','open','open','','4104','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13523',0,'post','',0),
  6561. (13524,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nle secret et la loi \n\n','41’08','','publish','open','open','','4108','','','2023-11-09 08:53:32','2023-11-09 07:53:32','',0,'https://localhost/?p=13524',0,'post','',0),
  6562. (13525,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nSaturé : femme attachée à un poteau, et brûlée vive.\n<em>Jeanne au bûcher</em> (1954) Roberto Rossellini. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’16','','publish','open','open','','4116','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13525',0,'post','',0),
  6563. (13526,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’30','','publish','open','open','','4130','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13526',0,'post','',0),
  6564. (13527,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nHomme marchant sous un arbre.\n\n\n<b>Voix Off et In\n---</b>\n\nQu’est-ce que cela fait ? Tout est grâce. Je crois qu’il est mort presque aussitôt. (Jean-Luc Godard).\n<em>Journal d\'un curé de campagne</em> (1951), Robert Bresson.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’32','','publish','open','open','','4132','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13527',0,'post','',0),
  6565. (13528,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nChars traversant une forêt. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’37','','publish','open','open','','4137','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13528',0,'post','',0),
  6566. (13529,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’41','','publish','open','open','','4141','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13529',0,'post','',0),
  6567. (13530,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nHommes courbés à genoux ponçant un parquet.\n<em>Les Raboteurs de parquet</em> (1875), Gustave Caillebotte.\n\n\n<b>Voix Off et In\n---</b>\n\nUn homme que la justice a retranché du nombre des vivants\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’43','','publish','open','open','','4143','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13530',0,'post','',0),
  6568. (13531,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nHomme marchant derrière les barreaux d\'une prison.\n<em>La faux coupable</em> (1956), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\nappartient au Parquet. Le Parquet est souverain @\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’47','','publish','open','open','','4147','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13531',0,'post','',0),
  6569. (13532,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nil ne dépend de personne, il ne relève que de sa conscience. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’54','','publish','open','open','','4154','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13532',0,'post','',0),
  6570. (13533,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nHomme serrant les poings.\n<em>Le faux coupable</em> (1956), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\nLa prison appartient au Parquet\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’00','','publish','open','open','','4200','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13533',0,'post','',0),
  6571. (13534,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nil en est \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','42’03','','publish','open','open','','4203','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13534',0,'post','',0),
  6572. (13535,1,'2023-09-26 09:19:13','2023-09-26 07:19:13','<b>Images\n---</b>\n\nJuge enjoinant à une femme de garder le silence.\n<em>Jour de colère</em> (1943), Carl Theodor Dreyer.\n\n\n<b>Voix Off et In\n---</b>\n\nle maître absolu. (Jean-Luc Godard)\n<em>Scènes de la vie parisienne</em> (1820), Honoré Balzac.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’06','','publish','open','open','','4206','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13535',0,'post','',0),
  6573. (13536,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nHomme marchant dans un long couloir obscure.\n<em>La dame de Shanghai</em> (1948), Orson Welles. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Ils ont vite été relâchés dans la nature.\n- Les Clanton et les Mclaury ont payé leur caution. C’est la loi. C’est la même pour eux que pour toi ou moi.\n- Alors il y a quelque chose qui cloche dans la loi.\n<em>Wyatt Earp</em> (1994), Lawrence Kasdan.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n- Tais toi !\n','42’10','','publish','open','open','','4210','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13536',0,'post','',0),
  6574. (13537,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Insight</em> (2002), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\n','42’22','','publish','open','open','','4222','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13537',0,'post','',0),
  6575. (13538,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nSaturé : hommes marchant en rang, les mains au-dessus de la tête. En arrière-plan : fumée d’incendie.\nTout va bien (1972), Jean Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’23','','publish','open','open','','4223','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13538',0,'post','',0),
  6576. (13539,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nAu ralenti : homme désignant de la main un point hors-champ.\n<em>Alexandre Nevski</em> (1938), Sergueï Eisenstein et Dmitri Vassiliev.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’32','','publish','open','open','','4232','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13539',0,'post','',0),
  6577. (13540,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','42’39','','publish','open','open','','4239','','','2023-11-09 08:53:33','2023-11-09 07:53:33','',0,'https://localhost/?p=13540',0,'post','',0),
  6578. (13541,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nPrisonnier nu, assis et recroquevillé.\n<em>Eau argentée, Syrie autoportrait</em> (2014), Ossama Mohammad et Wiam Simav Bedirxan.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’44','','publish','open','open','','4244','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13541',0,'post','',0),
  6579. (13542,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nFemme avec un foulard autour de la bouche et du nez regardant à travers les barreaux.\n<em>Tout va bien</em> (1972), Jean Luc Godard. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’52','','publish','open','open','','4252','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13542',0,'post','',0),
  6580. (13543,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nPrisonnier d\'un camp de concentration regardant à travers la fenêtre d’un train.\n<em>Nuit et brouillard</em> (1956), Alain Resnais. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’57','','publish','open','open','','4257','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13543',0,'post','',0),
  6581. (13544,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nSoldats. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','42’59','','publish','open','open','','4259','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13544',0,'post','',0),
  6582. (13545,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nManifestation appelant à la grève générale diffusée par la programme télévisé français <em>C\'est dans l\'air</em>.\n\n<b>Voix Off et In\n---</b>\n\nGrève générale,\nJusqu’au retrait total. (2x)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’00','','publish','open','open','','4300','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13545',0,'post','',0),
  6583. (13546,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nHomme dans l\'obscurité, le menton appuyé sur la paume de la main.\n<em>Fantômas</em> (1913), Louis Feuillade. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Et toujours le même slogan, et la même connerie.\n\nTous ensemble, tous ensemble !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’04','','publish','open','open','','4304','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13546',0,'post','',0),
  6584. (13547,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nBlanc\n\n\n<b>Voix Off et In\n---</b>\n\nGrève générale !\nTous ensemble, tous ensemble !\nIl faut que ça continue, il faut que ça continue pour faire céder ce gouvernement. (Discours de François Ruffin)\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nla société\nest fondée\nsur un crime\nen commun\n<em>La violence et le sacré</em> (1972), René Girard.\n','43’13','','publish','open','open','','4313','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13547',0,'post','',0),
  6585. (13548,1,'2023-09-26 09:19:14','2023-09-26 07:19:14','<b>Images\n---</b>\n\nHomme recourbé, la tête posée sur un bloc de bois, condamné à mort, puis décapité. <em>Le procès de Charles I</em> (1963), Guy Lessertisseur.\n\n\n<b>Voix Off et In\n---</b>\n\nSouvenez-vous ! (Sigmund Freud)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’20','','publish','open','open','','4320','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13548',0,'post','',0),
  6586. (13549,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nAu ralenti : personnes dans le procès de Nuremberg (1945 - 46). \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','43’35','','publish','open','open','','4335','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13549',0,'post','',0),
  6587. (13550,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Insight</em> (2002), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\n','43’46','','publish','open','open','','4346','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13550',0,'post','',0),
  6588. (13551,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nSaturé et surexposé : femme et fleurs géantes.\n<em>La Fée Libellule</em> (1908), Georges Méliès. <em>Histoire (s) du cinéma 2a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’50','','publish','open','open','','4350','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13551',0,'post','',0),
  6589. (13552,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nPhotographie de Marilyne Monroe. Iris et clignotant : corbeaux s’envolant. <em>Les Oiseaux</em> (1963), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nDevenue adulte, la jeune femme se méfiant de la liberté exagérée, dont le mot souvent répété pourrait faire craindre les excès, tout comme elle sera hostile à la république\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','44’04','','publish','open','open','','4404','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13552',0,'post','',0),
  6590. (13553,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','44’12','','publish','open','open','','4412','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13553',0,'post','',0),
  6591. (13554,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nBanc de montage. Puis en surimpression : détail de <em>Gabrielle d\'Estrées et une de ses sœurs</em> (1594), Anonyme, École Française.\n\nLa bobine est aussi grande que le buste de la femme et sa pointe ressemble presque à celle du sein de la femme. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nnon par principe, mais parce que l\'Europe\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','44’13','','publish','open','open','','4413','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13554',0,'post','',0),
  6592. (13555,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nHommes prononçant un discours devant une foule, à la fin du XVII siècle.\n\n\n<b>Voix Off et In\n---</b>\n\nn\'a pas les vertus nécessaires. (Jean-Luc Godard).\n<em>Mémoire de la reine Hortense</em> (1831), Hortense de Beauharnais.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','44’16','','publish','open','open','','4416','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13555',0,'post','',0),
  6593. (13556,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nPlusieurs personnes dansant dans une salle. <em>This Country\'s Going to War, Duck soup</em> (1933), Leo McCarey.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>This Country\'s Going to War, Duck soup</em> (1933), Leo McCarey. Et voix qui chantent.\n\n\n<b>Écrits\n---</b>\n\n','44’21','','publish','open','open','','4421','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13556',0,'post','',0),
  6594. (13557,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes rebels, c’est vous ? Vous vous insurgez contre l’ordre \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nt \n\n','44’24','','publish','open','open','','4424','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13557',0,'post','',0),
  6595. (13558,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nChat se retournant, l’air terrifié. Cartoon de Tex Avery. En surimpression : texte.\n<em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Non, contre les privilèges !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nmontage\ninter\ndit /\npar\nandré\nbazin\n','44’28','','publish','open','open','','4428','','','2023-11-09 08:53:34','2023-11-09 07:53:34','',0,'https://localhost/?p=13558',0,'post','',0),
  6596. (13559,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nAdolescent parlant à une caméra, habillé en soldat avec un foulard sur la tête.\n\n\n<b>Voix Off et In\n---</b>\n\nDevant nous de la République\nL\'étendard …\n(réécriture de <em>La Marseillaise</em>, paroles de l’Abbé René Charles de Lusson)\n\n\n<b>Bande Son\n---</b>\n\nVoix masculine chantant <em>La Marseillaise</em>.\n\n\n<b>Écrits\n---</b>\n\nEt je vous invite à égorger les mécréants\n','44’34','','publish','open','open','','4434','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13559',0,'post','',0),
  6597. (13560,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nAdolescent tirant avec une arme à feu sur un autre dans les couloirs d\'une école.\n<em>Elephant</em> (2003), Gus Van Sant.\n\n\n<b>Voix Off et In\n---</b>\n\nla sensation mentale qu’il éprouvait depuis quelques temps, se transforma en un tourbillon de ténèbres\n\n\n<b>Bande Son\n---</b>\n\nCoup de mitraillette.\n\n\n<b>Écrits\n---</b>\n\n','44’37','','publish','open','open','','4437','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13560',0,'post','',0),
  6598. (13561,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes pauvres gens, ceux pour qui j’avais \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','44’41','','publish','open','open','','4441','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13561',0,'post','',0),
  6599. (13562,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nAu ralenti : femme grimpant dans un wagon de marchandises d\'un train du documentaire <em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n<b>Voix Off et In\n---</b>\n\nJe les préfère [les pauvres]\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','44’44','','publish','open','open','','4444','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13562',0,'post','',0),
  6600. (13563,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nDessin : femme, homme et deux enfants manipulant une lanterne magique.\n<em>Histoire (s) du cinéma 3b</em> (1988 - 98), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nmais uniquement parce qu\'ils sont les vaincus. (Jean-Luc Godard)\n<em>Les Conquérants</em> (1928), André Malraux.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','44’50','','publish','open','open','','4450','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13563',0,'post','',0),
  6601. (13564,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nGris \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','44’55','','publish','open','open','','4455','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13564',0,'post','',0),
  6602. (13565,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nHomme avec un chapeau mexicain et une moustache, l\'air en colère.\n<em>Viva Villa !</em> (1934), Jack Conway.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n<b>Écrits\n---</b>\n\n','44’56','','publish','open','open','','4456','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13565',0,'post','',0),
  6603. (13566,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nAu ralenti : Cavaliers passant au-dessus d’un jeune homme enterré jusqu’aux épaules.\n<em>Que Viva Mexico !</em> (1931 - 1979), Sergueï Eisenstein.\n\n\n<b>Voix Off et In\n---</b>\n\n[Bruit d\'une voiture qui freine et accélère]\nEt bien des fois abandonné cet ouvrage\n\n\n<b>Bande Son\n---</b>\n\nFreinage et accélération de la voiture.\n\n\n<b>Écrits\n---</b>\n\n','44’58','','publish','open','open','','4458','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13566',0,'post','',0),
  6604. (13567,1,'2023-09-26 09:19:15','2023-09-26 07:19:15','<b>Images\n---</b>\n\nHomme passant la main à travers le feu d’une cheminée.\n<em>Les visiteurs du soir</em> (1942), Marcel Carné.\n\n\n<b>Voix Off et In\n---</b>\n\nJe suivais mon objet sans former de dessein @ je ne connaissais ni les règles\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','45’06','','publish','open','open','','4506','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13567',0,'post','',0),
  6605. (13568,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nni les exceptions. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','45’15','','publish','open','open','','4515','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13568',0,'post','',0),
  6606. (13569,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nPaysage de jour, paisible.\n<em>JLG / JLG</em> (1995), Jean-Luc Godard.\n\nEn alternance : homme à cheval semblant mort, battu par le vent.\n<em>Nan of the Music Mountain</em> (1917), G. H. Melford. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nJe ne trouvais la vérité que pour la perdre. (Jean-Luc Godard).\n<em>L’Esprit des lois</em> (1887), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’16','','publish','open','open','','4516','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13569',0,'post','',0),
  6607. (13570,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nIl n’y a que de traits noir. <em>Histoire de l’art, « L’art moderne », I</em>, (1921), Elie Faure,.\n<em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’19','','publish','open','open','','4519','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13570',0,'post','',0),
  6608. (13571,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nSaturé et surexposé en tons rouges : flammes et fumée s\'élevant à l\'horizon. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nViolons. Sergei Sergeyevich Prokofiev. \n\n\n<b>Écrits\n---</b>\n\n\n\n','45’21','','publish','open','open','','4521','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13571',0,'post','',0),
  6609. (13572,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','45’28','','publish','open','open','','4528','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13572',0,'post','',0),
  6610. (13573,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nCouverture du livre de science-fiction.\n<em>La fin du A</em> (1984), A. E. Van Vogt.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’30','','publish','open','open','','4530','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13573',0,'post','',0),
  6611. (13574,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nÉcoliers aux bras croisés, l\'air sérieux.\nLuis Buñuel (1932), <em>Las Hurdes. Liberté et Patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\n- Vous êtes un drôle de pistolet, c\'est ça que vous vouliez dire à la tribune, pourquoi vous ne l’avez pas dit ?\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’37','','publish','open','open','','4537','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13574',0,'post','',0),
  6612. (13575,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nFragment de texte.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je l\'ai dit mais je n\'ai pas su me faire entendre.\n\nEn même temps : Ce qui joue ici, ce n\'est pas seulement cette vision rétrospective des choses qui considère tout le passé comme préparant le fait accompli.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\nplus la pein la la\ndans la boue j\nplus soif la lang\nse referme elle\ndroite à présent c’\nl’image\n\n[je souris encore ce n\'est plus la peine depuis longtemps ce n\'est plus la peine la langue ressort va dans la boue je reste comme ça plus soif la langue rentre la bouche se referme elle doit faire une ligne droite à présent c\'est fait j\'ai fait l\'image], <em>Image</em> (1950), Samuel Beckett. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n','45’46','','publish','open','open','','4546','','','2023-11-09 08:53:35','2023-11-09 07:53:35','',0,'https://localhost/?p=13575',0,'post','',0),
  6613. (13576,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nAu ralenti : foule se pressant et tendant les mains.\n<em>Metropolis</em> (1927), Fritz Lang. <em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est également une certaine interférence des événements qui embrouille tout. (Jean-Luc Godard).\n<em>Guerre et Paix</em> (1867), Léon Tolstoï.\n\nLes phares, éteignez les phares !\n<em>Nuit du carrefour</em> (1932), Jean Renoir.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’51','','publish','open','open','','4551','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13576',0,'post','',0),
  6614. (13577,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','46’00','','publish','open','open','','4600','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13577',0,'post','',0),
  6615. (13578,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nFemme au nez en sang se faisant pousser par des policiers et juge parlant animeusement.\n<em>Vladimir et Rosa</em> (1971), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nPolitique, ça veut dire quoi politique ?!\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','46’02','','publish','open','open','','4602','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13578',0,'post','',0),
  6616. (13579,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nJuge parlant animeusement.\n<em>Vent d’est</em> (1969), Jean-Luc Godard et Jean-Pierre Gorin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','46’03','','publish','open','open','','4603','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13579',0,'post','',0),
  6617. (13580,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nJuge en hauteur, derrière le banc, dans une salle d\'audience.\n<em>La terreur et la vertu</em> (1964), Stellio Lorenzi.\n\n\n<b>Voix Off et In\n---</b>\n\nDeux discours solennels prononcés par un homme se chevauchent.\n\nLe dieu des prêtres est différent de l’être suprême. Le véritable prêtre de l’être suprême c’est la nature, son temple, l’univers, son culte, la vertu, ses fêtes, la joie d’un grand peuple rassemblé sous ses yeux pour resserrer les doux nœuds de la fraternité universelle et pour lui présenter l’hommage des cœurs sensibles et pures. <em>Sur le rapport des idées religieuses et morales avec les principes républicains et sur les fêtes nationales</em> (1866), Maximilien de Robespierre.\n\n- Vous devez savoir, si le ressort du gouvernement populaire dans la paix est la vertu. En temps de guerre, le ressort du gouvernement populaire est par nécessité la terreur, mais toujours la vertu,\ncar la vertu sans la terreur est impuissante, mais la terreur sans la vertue est funeste. <em>Sur les principes de morale politique qui doivent guider la Convention nationale dans l’administration intérieure de la République</em> (1794), Maximilien de Robespierre.\n- Tout cela est bel et bon\n\n\n<b>Bande Son\n---</b>\n\nApplaudissements.\n\n\n<b>Écrits\n---</b>\n\n','46’06','','publish','open','open','','4606','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13580',0,'post','',0),
  6618. (13581,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nCouverture d’un exemplaire de <em>De l’Esprit des Lois</em> (1748), Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nApplaudissements.\n\n\n<b>Écrits\n---</b>\n\n','46’24','','publish','open','open','','4624','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13581',0,'post','',0),
  6619. (13582,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nSurexposé et saturé en tons rouge : photographie des manifestations en Grèce (2015), <em>Alkis Konstantinidis</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','46’27','','publish','open','open','','4627','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13582',0,'post','',0),
  6620. (13583,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nSurexposée et saturé en tons rouges et jaunes : presque illisible. \n\n\n<b>Voix Off et In\n---</b>\n\n- Qu’est-ce qu’elle dit ? J’entends rien ! \n \n\n\n<b>Bande Son\n---</b>\n\nId. et vagues \n\n\n<b>Écrits\n---</b>\n\n\n\n','46’42','','publish','open','open','','4642','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13583',0,'post','',0),
  6621. (13584,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nEn surimpression : défilement d’une pellicule dans un iris. Couple au projecteur.\n<em>La Prison</em> (1949), Ingmar Bergman. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Elle dit que les pauvres sauveront le monde\n<em>Notre Musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','46’52','','publish','open','open','','4652','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13584',0,'post','',0),
  6622. (13585,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','46’59','','publish','open','open','','4659','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13585',0,'post','',0),
  6623. (13586,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nFemme mourant dans les bras d\'une autre femme essayant de parler à un homme devant elle répétant à haute voix ce qu\'il entend.\n<em>Notre Musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIls ne demanderont rien en échange. Ils ne savent pas le prix du service rendu. Ils feront cette colossale affaire.\n\n\n<b>Bande Son\n---</b>\n\nBrusquement : silence.\n\n\n<b>Écrits\n---</b>\n\n','47’01','','publish','open','open','','4701','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13586',0,'post','',0),
  6624. (13587,1,'2023-09-26 09:19:16','2023-09-26 07:19:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt … \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','47’46','','publish','open','open','','4746','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13587',0,'post','',0),
  6625. (13588,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nFemme effrayée à la vue d\'un monstre, puis s’évanouissant.\n<em>La belle et la bête</em> (1946), Jean Cocteau. <em>Histoire (s) du cinéma 2b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nOù allez-vous ?\n\n\n<b>Bande Son\n---</b>\n\nBande son du film <em>La belle et la bête</em> (1946), Jean Cocteau.\n\n\n<b>Écrits\n---</b>\n\n','47’50','','publish','open','open','','4750','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13588',0,'post','',0),
  6626. (13589,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nFemme avec bâton à la main et policier avec un chapeau saluant le publique.\n<em>Un drame chez les fantoches</em> (1908), Emile Cohl.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','47’58','','publish','open','open','','4758','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13589',0,'post','',0),
  6627. (13590,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','48’00','','publish','open','open','','4800','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13590',0,'post','',0),
  6628. (13591,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n5 \n LA RÉGION CENTRALE \n (Michael Snow, 1971) \n\n','48’02','','publish','open','open','','4802','','','2023-11-09 08:53:36','2023-11-09 07:53:36','',0,'https://localhost/?p=13591',0,'post','',0),
  6629. (13592,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nSaturé et au ralenti : chemin avec des pierres.\n<em>La Région Centrale</em> (1971), Michael Snow.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est une brève histoire, que celle de l’extinction en masse des espèces.\nEn bref, le plus gros des dégradations environnementales d’aujourd’hui est le fait de deux groupes. Le milliard le plus riche et le milliard le plus pauvre. Les plus riches détruisent l’environnement global par leur surconsommation rapide des ressources et leur production de déchets. Tandis que les plus pauvres détruisent leurs ressources par nécessité et par absence de choix.\n<em>Une brève histoire de l\'extinction en masse des espèces</em> (2010), Franz J.\nBroswimmer.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','48’16','','publish','open','open','','4816','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13592',0,'post','',0),
  6630. (13593,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nSaturé et surexposé en tons rouges et jaunes : homme assis. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','48’58','','publish','open','open','','4858','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13593',0,'post','',0),
  6631. (13594,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nSaturé et surexposé en tons bleus : presque illisible.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','49’00','','publish','open','open','','4900','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13594',0,'post','',0),
  6632. (13595,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nHomme portant un chapeau haut de forme et tenant une loupe devant son œil.\n<em>Dossier Secret [Mr Arkadin]</em> (1955), Orson Welles.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Dossier Secret [Mr Arkadin]</em> (1955), Orson Welles.\n\n\n<b>Écrits\n---</b>\n\n','49’03','','publish','open','open','','4903','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13595',0,'post','',0),
  6633. (13596,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nHommage\nA la Catalogne\n','49’15','','publish','open','open','','4915','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13596',0,'post','',0),
  6634. (13597,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','49’18','','publish','open','open','','4918','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13597',0,'post','',0),
  6635. (13598,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nHomme tenant d\'une main le revers de sa veste, remonté jusqu\'au cou.\n<em>La terre</em> (1930), Alexandre Dovjenko.\n<em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nEt pourtant aimer ceux qui sont capable de faire cela. Etre aimé d\'eux peut-être. Qu\'attendre de plus de l\'amour ? Quelle rage de leur demander encore des comptes. Mais lui aussi parlait lentement. Cet amour ne t\'empêchait pas de coucher avec ce type, alors que tu pensais si nous étions vivants.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','49’24','','publish','open','open','','4924','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13598',0,'post','',0),
  6636. (13599,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nFemme se tenant la main devant la bouche, l\'air perdu et pensif.\n<em>La terre</em> (1930), Alexandre Dovjenko. <em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nMais nous sommes vivants ! – Vous m\'interrogez avec quelque chose qui n\'est pas vivant en vous et qui cherche en moi quelque chose qui ne peux pas vivre. Cela c’est une souffrance, c\'est l\'angoisse, c\'est l\'attente, lorsque le temps est toujours de trop et que toutefois le temps manque au temps... Dans l’attente le temps qui permet d’attendre se perd pour mieux répondre à l’attente. Et l’attente qui a lieu dans le temps ouvre le temps à l’absence de temps où il n’y a pas lieu d’attendre. (Jean-Luc Godard).\n<em>L’attente, l’oubli</em> (1962), Maurice Blanchot.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','50’03','','publish','open','open','','5003','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13599',0,'post','',0),
  6637. (13600,1,'2023-09-26 09:19:17','2023-09-26 07:19:17','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nHe oui Ninon, c’est une fille \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','50’58','','publish','open','open','','5058','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13600',0,'post','',0),
  6638. (13601,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nMains d\'un vieil homme tournées vers le haut.\n<em>Histoire (s) du cinéma 1b / 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl y a les cinq doigts. On accomplirait l’acte rédempteur.\nLa main. (Jean-Luc Godard).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’00','','publish','open','open','','5100','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13601',0,'post','',0),
  6639. (13602,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nDessin de main tournée vers le bas.\n<em>Liberté et patrie</em>, Jean-Luc Godard et Anne-Marie Miéville (2002).\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’09','','publish','open','open','','5109','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13602',0,'post','',0),
  6640. (13603,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nMain d\'homme reposant sur une main de femme. La main de femme repose sur une épaule. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’12','','publish','open','open','','5112','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13603',0,'post','',0),
  6641. (13604,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt un long moment après \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’16','','publish','open','open','','5116','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13604',0,'post','',0),
  6642. (13605,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nDessin de Bécassine. Caumery et Pinchon. \n\n\n<b>Voix Off et In\n---</b>\n\nParce que les histoires que l\'on raconte vont moins vite que les actions \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’20','','publish','open','open','','5120','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13605',0,'post','',0),
  6643. (13606,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nne s\'accomplissent (Jean-Luc Godard). \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’29','','publish','open','open','','5129','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13606',0,'post','',0),
  6644. (13607,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','51’32','','publish','open','open','','5132','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13607',0,'post','',0),
  6645. (13608,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nFemme tenant un trousseau de clés à la main et touchant une clé sur laquelle est écrit « unica ».\n<em>Les Enchaînés, [Notorious]</em> (1946), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’35','','publish','open','open','','5135','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13608',0,'post','',0),
  6646. (13609,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nLa femme serrant dans ses bras un homme et, derrière sa tête, dérobant une clé d’un trousseau.\n<em>Les Enchaînés, [Notorious]</em> (1946), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’51','','publish','open','open','','5151','','','2023-11-09 08:53:37','2023-11-09 07:53:37','',0,'https://localhost/?p=13609',0,'post','',0),
  6647. (13610,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nSOUS LES YEUX \n DE L’OCCIDENT \n\n','51’57','','publish','open','open','','5157','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13610',0,'post','',0),
  6648. (13611,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nHomme poussé les mains derrière le dos par d\'autres hommes. Images retransmises dans le documentaire\n<em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCris\n\n\n<b>Écrits\n---</b>\n\n','51’59','','publish','open','open','','5159','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13611',0,'post','',0),
  6649. (13612,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nPetite fille portant un nourrisson sur l\'épaule et, à côté d\'elle, trois autres enfants, habillés de haillons.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','52’01','','publish','open','open','','5201','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13612',0,'post','',0),
  6650. (13613,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’06','','publish','open','open','','5206','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13613',0,'post','',0),
  6651. (13614,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nDans un roman,\n\n\n<b>Bande Son\n---</b>\n\nArpèges à la guitare. <em>Raf Raf</em> (1991), Anouar Brahem.\n\n\n<b>Écrits\n---</b>\n\nHEUREUSE ARABIE\n<em>L\'Arabie heureuse : souvenirs de voyages en Afrique et en Asie</em> (1860), Alexandre Dumas.\n','52’08','','publish','open','open','','5208','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13614',0,'post','',0),
  6652. (13615,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nSaturé : enfant sur le toit d\'une maison, vu de dos, regardant le reste de la ville.\n\n\n<b>Voix Off et In\n---</b>\n\nDans un roman l\'intérêt, dans le pire des cas, vient du fait que\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','52’10','','publish','open','open','','5210','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13615',0,'post','',0),
  6653. (13616,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\ntrès souvent les situations quelconques \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’21','','publish','open','open','','5221','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13616',0,'post','',0),
  6654. (13617,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nFemme tenant à la main une clé.\n<em>Meshes of afternoon</em> (1943), Maya Deren, Alexandr Hackenschmied.\n\n\n<b>Voix Off et In\n---</b>\n\nont un comportement assez\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','52’23','','publish','open','open','','5223','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13617',0,'post','',0),
  6655. (13618,1,'2023-09-26 09:19:18','2023-09-26 07:19:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nproche du pire des cas. \n (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nLES \n PARADIS \n PERDUS \n\n','52’26','','publish','open','open','','5226','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13618',0,'post','',0),
  6656. (13619,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nDessin de soldat avec une épée et un bouclier orné d\'un croissant et d’une étoile. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoix féminine chantant en arabe. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’33','','publish','open','open','','5233','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13619',0,'post','',0),
  6657. (13620,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nArmée avec des lances, des épées et des boucliers en marche.\n<em>Constantinople</em>, Faruk Aksoy, (2012).\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Taabani Nibniou</em>, Hedi Jouini (1993).\n\n\n<b>Écrits\n---</b>\n\n','52’35','','publish','open','open','','5235','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13620',0,'post','',0),
  6658. (13621,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSaturé en tons rouge : homme agenouillé avec un drapeau à la main.\n<em>Le visage de Dieu</em> (2014), Bahram Aloui.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','52’41','','publish','open','open','','5241','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13621',0,'post','',0),
  6659. (13622,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nTourné en noir et blanc et surexposé : photographie de Hosni Moubarak, ancien Président de la République arabe d\'Égypte. \n\n\n<b>Voix Off et In\n---</b>\n\nJe peux mourir tranquille \n (Albert Cossery) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’45','','publish','open','open','','5245','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13622',0,'post','',0),
  6660. (13623,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nHomme parlant à une femme vêtue d\'une tenue traditionnelle arabe.\n<em>La bandera</em> (1935), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\nTe souviens-tu encore comment nous entraînions autrefois notre pensée. Le plus souvent nous partions d\'un rêve. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','52’47','','publish','open','open','','5247','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13623',0,'post','',0),
  6661. (13624,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nJeune homme dormant avec un keffieh. En surimpression : femmes agées dansant et jouant cérémonieusement de la musique autour d\'une jeune femme à la poitrine nue. \n\n\n<b>Voix Off et In\n---</b>\n\nJe me sens toujours très bien les mains dans les poches même si j’ai pas un sou. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’54','','publish','open','open','','5254','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13624',0,'post','',0),
  6662. (13625,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nPhotographie en noir et blanc d’un homme âgé assis avec à côté de lui un âne portant une télévision sur son dos. \n\n\n<b>Voix Off et In\n---</b>\n\nJe me suis toujours senti un fils de roi. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’58','','publish','open','open','','5258','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13625',0,'post','',0),
  6663. (13626,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nHomme âgé assis avec à côté de lui un âne portant une télévision sur son dos. \n\n\n<b>Voix Off et In\n---</b>\n\nMais tous les égyptiens se sentent un peu fils de roi. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','53’01','','publish','open','open','','5301','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13626',0,'post','',0),
  6664. (13627,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSaturé en tous rouge : désert.\n<em>The Thief of Baghdad</em> (1978), Cline Donner.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAu violon : musique traditionnelle arabe. Personnes discutant.\n\n\n<b>Écrits\n---</b>\n\n','53’04','','publish','open','open','','5304','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13627',0,'post','',0),
  6665. (13628,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSaturé en tons rouge : homme portant de l’encens fumant.\n<em>Aladdin\'s magic lamp</em> (1967), Boris Rytsarev.\n\n\n<b>Voix Off et In\n---</b>\n\nL’orient est plus philosophe que l’occident,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’07','','publish','open','open','','5307','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13628',0,'post','',0),
  6666. (13629,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nJeune homme et jeune femme ayant des rapports sexuels la nuit dans une chambre.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\net le moindre vanupieds vous dira de choses extraordinaires\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’15','','publish','open','open','','5315','','','2023-11-09 08:53:38','2023-11-09 07:53:38','',0,'https://localhost/?p=13629',0,'post','',0),
  6667. (13630,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSur la vie, sur le monde. Et vous entendez chacun est philosophe \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','53’18','','publish','open','open','','5318','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13630',0,'post','',0),
  6668. (13631,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nTrois personnes sur un tapis volant.\n<em>Le voleur de Bagdad</em> (1924), Raoul Walsh.\n\n\n<b>Voix Off et In\n---</b>\n\nParce que il a le temps de réfléchir, de penser, de voir le monde passer\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’26','','publish','open','open','','5326','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13631',0,'post','',0),
  6669. (13632,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nArmée romaine devant les murs d\'une ville du Moyen-Orient.\n<em>Il Messia</em> (1975), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nEn occident\n(Albert Cossery)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’29','','publish','open','open','','5329','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13632',0,'post','',0),
  6670. (13633,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nCroisés à cheval avec des armures et des drapeaux passant sous les acclamations de la foule.\n<em>The Crusades</em> (1935), Cecil B DeMille.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis cris d’acclamation.\n\n\n<b>Écrits\n---</b>\n\n','53’33','','publish','open','open','','5333','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13633',0,'post','',0),
  6671. (13634,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','53’38','','publish','open','open','','5338','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13634',0,'post','',0),
  6672. (13635,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSaturé : soldats en guerre.\n<em>Adieu Bonaparte</em> (1985), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\nArrêtez ! Oh le con.\n- Vous ne savez pas qui vous êtes, vous voyez bien. Le christianisme, c’est le refus de se connaître, c’est la mort du langage.\n<em>Détective</em> (1985), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nTirs au pistolet, puis klaxon.\n\n\n<b>Écrits\n---</b>\n\n','53’41','','publish','open','open','','5341','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13635',0,'post','',0),
  6673. (13636,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nInscriptions en arabe sur fond noir du film <em>Socialisme</em> (2010), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nSilence je vous ai dit.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','53’57','','publish','open','open','','5357','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13636',0,'post','',0),
  6674. (13637,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nAu ralenti : femme se précipitant pour ramasser un tissu et s’en couvrant jusqu\'au nez. \n\n\n<b>Voix Off et In\n---</b>\n\nTout à coup, il aperçut à l’horizon derrière Tunis, comme des brouillards légers, qui se traînaient contre le sol @ \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','54’03','','publish','open','open','','5403','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13637',0,'post','',0),
  6675. (13638,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSaturé et surexposé : personnages presque invisibles. \n\n\n<b>Voix Off et In\n---</b>\n\npuis ce fut un grand rideau de poudre grise perpendiculairement étalé, et, dans les tourbillons \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','54’15','','publish','open','open','','5415','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13638',0,'post','',0),
  6676. (13639,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSurexposé, et saturé en tons bleu clair, rouges et verts : navire voguant dans la mer et drapeaux qui flottent dans le vent.\n\n\n<b>Voix Off et In\n---</b>\n\nde cette masse nombreuse,\ndes têtes de dromadaires, des lances,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','54’24','','publish','open','open','','5424','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13639',0,'post','',0),
  6677. (13640,1,'2023-09-26 09:19:19','2023-09-26 07:19:19','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : mer avec de la vapeur flottant au loin dans l’air. \n\n\n<b>Voix Off et In\n---</b>\n\ndes boucliers parurent. C’était l’armée des Barbares qui s’avançait sur Carthage. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','54’30','','publish','open','open','','5430','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13640',0,'post','',0),
  6678. (13641,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nCaravane dans le désert.\n<em>Il Messia</em> (1975), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nOh Salammbô.(Jean-Luc Godard).\n<em>Salammbô</em> (1862), Gustave Flaubert.\n\n\n<b>Bande Son\n---</b>\n\n<em>Aube rouge à Grozny</em> (2000), Anouar Trio Brahem.\n\n\n<b>Écrits\n---</b>\n\n','54’37','','publish','open','open','','5437','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13641',0,'post','',0),
  6679. (13642,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','55’07','','publish','open','open','','5507','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13642',0,'post','',0),
  6680. (13643,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nSaturé, au ralenti : deux mains déboutonnant une robe bleue.\n<em>Méditerranée</em> (1963), Jean Daniel Pollet.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','55’11','','publish','open','open','','5511','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13643',0,'post','',0),
  6681. (13644,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nDans l’ombre de l’Occident. \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nCES FLEURS \n PERDUES \n DANS LE VENT \n\n','55’33','','publish','open','open','','5533','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13644',0,'post','',0),
  6682. (13645,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nSaturé en tons jaunes et rouges : hommes creusant avec des pelles dans le désert. Groupe d\'arabophones essayant d\'embarquer sur un bateau en plein désert.\n<em>Les Baliseurs du désert</em> (1984), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nIl est certain que la représentation, plus particulièrement l’acte de représenter (et donc de réduire) implique presque toujours\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','55’35','','publish','open','open','','5535','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13645',0,'post','',0),
  6683. (13646,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nFemme nue dans dans une réplique miniature de ville du Moyen-Orient, puis capturée par un homme à cheval déguisé en soldat croisé.\n<em>Passion</em> (1982), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nimplique presque toujours une violence envers le sujet de la représentation. (Jean-Luc Godard). <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','55’59','','publish','open','open','','5559','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13646',0,'post','',0),
  6684. (13647,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nAu ralenti, saturé de bleu : croisé levant l’épée pour frapper.\n<em>Passion</em> (1982), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl y a\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','56’02','','publish','open','open','','5602','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13647',0,'post','',0),
  6685. (13648,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nun réel contraste entre la violence de l’acte de représenter et le calme intérieur de la représentation elle-même. (Jean-Luc Godard). <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','56’10','','publish','open','open','','5610','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13648',0,'post','',0),
  6686. (13649,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nSaturé : film en couleur pris avec une petite caméra numérique en 2016 d’une ville de bord de mer avec un homme à vélo. Au ralenti : deux enfants cherchant quelque chose entre les rochers, les pieds dans la mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, et vagues. \n\n\n<b>Écrits\n---</b>\n\n\n\n','56’22','','publish','open','open','','5622','','','2023-11-09 08:53:39','2023-11-09 07:53:39','',0,'https://localhost/?p=13649',0,'post','',0),
  6687. (13650,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nFoule de personnes se bousculant dans la rue.\n<em>De l’origine du XX siècle</em> (2000), Jean. Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIls sont pris entre “ salamalecs ” et “ charabia ”, et les Arabes n\'intéressent pas “ le monde ”. Les musulmans non plus. Si l\'islam retient politiquement l\'attention, le “ monde arabe ” est d’abord décor et paysage.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','56’40','','publish','open','open','','5640','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13650',0,'post','',0),
  6688. (13651,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nDeux soldats intimant à une personne de lever les mains et de faire face au mur. \n\n\n<b>Voix Off et In\n---</b>\n\nLe monde arabe s\'il existe en tant que monde n\'est jamais regardé en tant que tel. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','57’09','','publish','open','open','','5709','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13651',0,'post','',0),
  6689. (13652,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nDe nouveau, petite fille portant un bébé sur les épaules, trois autres enfants habillés de haillons à ses côtés.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl est toujours examiné comme un ensemble relativement à un pays du moyen-orient. <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’17','','publish','open','open','','5717','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13652',0,'post','',0),
  6690. (13653,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','57’19','','publish','open','open','','5719','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13653',0,'post','',0),
  6691. (13654,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nJeune femme ramant sur un lac, aidée par un jeune homme assis derrière elle.\n<em>Les Dernières vacances</em>, (1947), Roger Leenhardt. <em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nCes citoyens, ces amants de la patrie, dans l’excès de leur passion, auraient voulu mourir pour elle\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’23','','publish','open','open','','5723','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13654',0,'post','',0),
  6692. (13655,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nSaturé en tons bleus : homme à cheval au milieu d\'un paysage vallonné.\n<em>Paysage et cavalier</em>, aquarelle réalisée au cours du trajet Tanger-Meknès (1832), Eugène Delacroix.\n\n\n<b>Voix Off et In\n---</b>\n\net ils allaient la tuer.\n<em>Histoire de la Révolution française</em> (1847 - 1853), Jules Michelet.\n\nLes défauts\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’33','','publish','open','open','','5733','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13655',0,'post','',0),
  6693. (13656,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nSurexposé : autre aquarelle d’homme au turban à cheval de Eugène Delacroix. \n\n\n<b>Voix Off et In\n---</b>\n\nEt les enjeux \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','57’39','','publish','open','open','','5739','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13656',0,'post','',0),
  6694. (13657,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nFemme étendant du linge, autre femme se lavant au bord d\'un ruisseau.\n<em>Femme qui se lave et sa servante Maures</em> (1854), Eugene Delacroix\nPeinture.\n\n\n<b>Voix Off et In\n---</b>\n\nLes arabes, les arabes peuvent-ils parler. (Jean-Luc Godard). <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’42','','publish','open','open','','5742','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13657',0,'post','',0),
  6695. (13658,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nFemme interpellée bruyamment alors qu\'elle traverse une rue dans une ville du Moyen-Orient, puis se retournant.\n<em>Djamila</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\nDjamila, Djamila !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’52','','publish','open','open','','5752','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13658',0,'post','',0),
  6696. (13659,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nJeune homme levant les mains et montrant les paumes, puis plaçant d’un geste lent la main droite sur la paume gauche.\n<em>Les Baliseurs du désert</em>, Nacer Khémir (1984), cité dans <em>Voyage à Tunis</em> (2007), Bruno Moll.\n\n\n<b>Voix Off et In\n---</b>\n\nLes arabes peuvent-ils parler. (Jean-Luc Godard).\n<em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\nÀ demi-voix, d’une voix douce et faible disant de grandes choses : d’importantes, d’étonnantes, de profondes et justes choses,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’58','','publish','open','open','','5758','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13659',0,'post','',0),
  6697. (13660,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nHomme attrapant une colombe et la sortant de sa petite maison accrochée au mur.\n<em>Le collier perdu de la colombe</em> (1991), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nd’une voix douce et faible. La menace du tonnerre, la présence d’absolus dans une voix de rougegorge\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','58’16','','publish','open','open','','5816','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13660',0,'post','',0),
  6698. (13661,1,'2023-09-26 09:19:20','2023-09-26 07:19:20','<b>Images\n---</b>\n\nSaturé : homme et enfant marchant dans le désert.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir, cité dans <em>Voyage à Tunis</em> (2007), Bruno Moll.\n\n\n<b>Voix Off et In\n---</b>\n\ndans le détail fin d’une flûte, et la délicatesse du son pur. Tout le soleil suggérait, au moyen d’un demi-sourire demie voix...\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','58’27','','publish','open','open','','5827','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13661',0,'post','',0),
  6699. (13662,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nHomme se jetant sur une robe posée sur le toit d\'une maison de terre cuite dans une ville du Moyen-Orient.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','58’36','','publish','open','open','','5836','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13662',0,'post','',0),
  6700. (13663,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nSaturé : maisons se reflétant dans l\'eau. \n\n\n<b>Voix Off et In\n---</b>\n\nEt d’une sorte de murmure en français infiniment pur. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','58’44','','publish','open','open','','5844','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13663',0,'post','',0),
  6701. (13664,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nAu ralenti : enfant poussant une roue de voiture.\n\n\n<b>Voix Off et In\n---</b>\n\nQui n’eût saisi les mots, qui l’eût ouï à quelque distance, aurait cru qu’il disait des riens. Et c’étaient des riens pour l’oreille, rassurée. (Julie Delpy).\n<em>À propos de Stéphane Mallarmé. À demi-voix</em> (1939), Paul Valery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','58’55','','publish','open','open','','5855','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13664',0,'post','',0),
  6702. (13665,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nTremblant de droite à gauche : ville en ruines avec des soldats cachés, armes à la main.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','59’04','','publish','open','open','','5904','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13665',0,'post','',0),
  6703. (13666,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nSurexposé : pinceau projetant de l\'aquarelle sur une feuille de papier. \n\n\n<b>Voix Off et In\n---</b>\n\nMais ce contraste et cette musique cette voix ridant l’air à peine cette puissance chuchotée ces perspectives, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','59’10','','publish','open','open','','5910','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13666',0,'post','',0),
  6704. (13667,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nEnfants jouant dans la rue, autres enfants avec un scooter et un chat.\n\n\n<b>Voix Off et In\n---</b>\n\nces découvertes, ces abîmes et ces manœuvres devinées ce sourire congédiant l’univers. <em>Psaume sur une voix, Autres Rhumbs</em> (1927), Paul Valéry. <em>Histoires du cinéma 4a</em> (1989 - 99), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nVoix d’enfants.\n\n\n<b>Écrits\n---</b>\n\n','59’22','','publish','open','open','','5922','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13667',0,'post','',0),
  6705. (13668,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nJeune femme parlant au téléphone en arabe, observée par un homme au chapeau de prière musulman situé derrière la vitre d’une cabine téléphonique.\n<em>Gare Centrale</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\nJeune femme [traduction du dialecte égyptien]:\nIl faut que je vois. Il faut que je te vois, tu as été absent pendant quatre ans. Je m\'en fiche. Dis leur n\'importe quoi. Je t\'attendrai à la gare. Mon chéri...\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','59’36','','publish','open','open','','5936','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13668',0,'post','',0),
  6706. (13669,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nVoix d\'un enfant criant [traduction du dialecte palestinien]:\nMonsieur le juge, la guerre a brûlé mes livres !\n<em>Histoires du cinéma 4b</em> (1989 - 99), Jean-Luc Godard.\n\nVoix d’homme récitant un poème du poète palestinien Mahmoud Darwich en arabe [traduction de l’arabe classique]:\nJe t\'ai donné un instant. Et j\'ai passé un moment. Mais ton visage n\'est pas... et ton kohl un maquillage similaire au mascara] est devenu ciment. Et les fusils. J\'ai eu peur de la mort mais j\'ai souris. J\'ai porté la blessure des blessés pour un instant. Oh mon dieu... Je t\'ai cherché sous le palmier. On l\'a traîné...\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','59’57','','publish','open','open','','5957','','','2023-11-09 08:53:40','2023-11-09 07:53:40','',0,'https://localhost/?p=13669',0,'post','',0),
  6707. (13670,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nPeut-être \n Que \n Dans \n Mille et un \n Jours \n \n Racontera \n cela \n\n','1h00’03','','publish','open','open','','1h0003','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13670',0,'post','',0),
  6708. (13671,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nClignotant : deux nouveaux mots s’ajoutent au texte précédemment affiché.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nPeut-être\nQue\nDans\nMille et un\nJours\nScheherazade\nRacontera\nCela\nautrement\n','1h00’04','','publish','open','open','','1h0004','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13671',0,'post','',0),
  6709. (13672,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nPhotographie d\'une personne morte et défigurée, au crâne fendu.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h00’09','','publish','open','open','','1h0009','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13672',0,'post','',0),
  6710. (13673,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nFemme parlant devant un brasier. Main d\'une autre personne s\'approchant et posant l\'index sur sa lèvre inférieure.\n<em>Les silences du passé</em> (1994), Moufida Tlatli.\n\n\n<b>Voix Off et In\n---</b>\n\nVoix d\'un homme parlant en arabe. <em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Bande Son\n---</b>\n\nCoups de mitraillette. <em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Écrits\n---</b>\n\n','1h00’13','','publish','open','open','','1h0013','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13673',0,'post','',0),
  6711. (13674,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nDe nouveau, personne morte et défigurée au crâne fendu.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Voix Off et In\n---</b>\n\nId.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h00’22','','publish','open','open','','1h0022','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13674',0,'post','',0),
  6712. (13675,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nSaturé : cadavres dans un paysage désertique. \n\n\n<b>Voix Off et In\n---</b>\n\nId. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h00’31','','publish','open','open','','1h0031','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13675',0,'post','',0),
  6713. (13676,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nSaturé en tons bleus : personne nageant dans l\'eau. \n\n\n<b>Voix Off et In\n---</b>\n\nId. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h00’41','','publish','open','open','','1h0041','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13676',0,'post','',0),
  6714. (13677,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nSaturée en tons verts et rouges : femmes habillées plongeant dans un fleuve.\n<em>La saison des hommes</em> (2002), Moufida Tlatli.\n\n\n<b>Voix Off et In\n---</b>\n\nId.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h00’47','','publish','open','open','','1h0047','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13677',0,'post','',0),
  6715. (13678,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nLivre feuilleté\n<em>L\'Arabie heureuse. Souvenirs de voyages en Afrique et en Asie</em> (1860), Hadji-Abd-El-Hamid Bey, publié par Alexandre Dumas.\n\n\n<b>Voix Off et In\n---</b>\n\nQue n’a-t-on pas écrit la nuit ? pourtant de ce qui fut écrit à partir de ces visions par Holderlin, Rimbaud.\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','1h00’54','','publish','open','open','','1h0054','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13678',0,'post','',0),
  6716. (13679,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nNous parlions de ce qu’on voit dans un rêve\nNous nous demandions comment, dans l’obscurité totale peuvent surgir parmi nous\n\n\n<b>Bande Son\n---</b>\n\nVoix masculine d’un muezzin, en arabe.\nPuis, après à la guitare. <em>Thimar, 6. Uns</em> (1998), Anouar Brahem, John Surman, Dave Holland.\n\n\n<b>Écrits\n---</b>\n\n','1h01’06','','publish','open','open','','1h0106','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13679',0,'post','',0),
  6717. (13680,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nSaturé : aquarelle représentant un homme marchant entre des maisons.\n<em>Vue dans une ruelle</em> (1914), August Macke.\n\n\n<b>Voix Off et In\n---</b>\n\nde couleurs de telle intensité\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’18','','publish','open','open','','1h0118','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13680',0,'post','',0),
  6718. (13681,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nMains de Godard feuilletant des images, dont un dessin stylisé d’une femme en robe bleue.\n<em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nElles sont le produit de notre savoir\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’20','','publish','open','open','','1h0120','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13681',0,'post','',0),
  6719. (13682,1,'2023-09-26 09:19:21','2023-09-26 07:19:21','<b>Images\n---</b>\n\nAquarelle de femme en robe.\n<em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nconcernant la lumière\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’23','','publish','open','open','','1h0123','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13682',0,'post','',0),
  6720. (13683,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nHomme allongé sur un lit regardant au plafond où des images semblent être projetées.\n\n\n<b>Voix Off et In\n---</b>\n\nLe savoir voit !\n\nLe contrepoint est une discipline de la superposition des lignes mélodiques.\n\n\n<b>Bande Son\n---</b>\n\n<em>Concerto pour violon no 2 en mi mineur, Op. 64 (MWV O 14)</em> (1844), Félix Mendelssohn.\n\n\n<b>Écrits\n---</b>\n\nPASSEPORT\nVERS\nLE RÉEL\n','1h01’25','','publish','open','open','','1h0125','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13683',0,'post','',0),
  6721. (13684,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes mélodies n’ont pas besoin d’être identiques \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h01’35','','publish','open','open','','1h0135','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13684',0,'post','',0),
  6722. (13685,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nAquarelle d\'un âne au milieu des maisons.\n<em>Vue sur une mosquée</em> (1914), August Macke.\n\n\n<b>Voix Off et In\n---</b>\n\nnon plus que parentes, étrangères l\'une à l\'autre. Elles ne font pas obstacle à la composition\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’44','','publish','open','open','','1h0144','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13685',0,'post','',0),
  6723. (13686,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nmais il faut les tenir \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h01’49','','publish','open','open','','1h0149','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13686',0,'post','',0),
  6724. (13687,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nPhotographie d\'un pinceau posé sur une feuille peinte. \n\n\n<b>Voix Off et In\n---</b>\n\ntoutes les deux ensemble et en même temps. Dans l\'harmonie les accords produisent les mélodies. \n\n\n<b>Bande Son\n---</b>\n\nId. et silence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h01’53','','publish','open','open','','1h0153','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13687',0,'post','',0),
  6725. (13688,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nSurexposé et en tons jaunes : trois femmes faisant la vaisselle dans des bacs de fer posés à même le sol.\n<em>Tamaout</em> (1970), Marc’o.\n\n\n<b>Voix Off et In\n---</b>\n\nDans le contrepoint ce sont des mélodies elles-mêmes dont dont à l\'inverse résultent les accords. (Jean-Luc Godard).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h02’07','','publish','open','open','','1h0207','','','2023-11-09 08:53:41','2023-11-09 07:53:41','',0,'https://localhost/?p=13688',0,'post','',0),
  6726. (13689,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','1h02’16','','publish','open','open','','1h0216','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13689',0,'post','',0),
  6727. (13690,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nTrois filles et un garçon jouant dans une piscine.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h02’21','','publish','open','open','','1h0221','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13690',0,'post','',0),
  6728. (13691,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nSaturé : soleil couchant sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h02’39','','publish','open','open','','1h0239','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13691',0,'post','',0),
  6729. (13692,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nHEUREUSE\nARABIE\n\n<em>Hasards de l\'Arabie heureuse</em> (2005), Frederic Prokosch.\n','1h02’48','','publish','open','open','','1h0248','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13692',0,'post','',0),
  6730. (13693,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nSaturé et surexposé : bateau au milieu de la mer et pêcheurs. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h02’55','','publish','open','open','','1h0255','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13693',0,'post','',0),
  6731. (13694,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nFemme se peingnant les mains de symboles géométriques. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’08','','publish','open','open','','1h0308','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13694',0,'post','',0),
  6732. (13695,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nSaturé : mer ondulante vue d\'un golfe. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis vagues. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’09','','publish','open','open','','1h0309','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13695',0,'post','',0),
  6733. (13696,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. et silence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’41','','publish','open','open','','1h0341','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13696',0,'post','',0),
  6734. (13697,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nJeune femme pleurant sur une plage, hommes chantant en arabe en arrière-plan. <em>La fièvre</em> (2014), Safia Benhaïm.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVoix masculines accompagnées d’instruments à percussions.\n\n\n<b>Écrits\n---</b>\n\n','1h03’47','','publish','open','open','','1h0347','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13697',0,'post','',0),
  6735. (13698,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’57','','publish','open','open','','1h0357','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13698',0,'post','',0),
  6736. (13699,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nEn noir et blanc : bris de vitres de voitures.\n<em>Djamila</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nExplosion et vitres cassées.\n\n\n<b>Écrits\n---</b>\n\n','1h03’58','','publish','open','open','','1h0358','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13699',0,'post','',0),
  6737. (13700,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nFemme nue s’alongeant sur un homme nu sur un lit.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h04’00','','publish','open','open','','1h0400','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13700',0,'post','',0),
  6738. (13701,1,'2023-09-26 09:19:22','2023-09-26 07:19:22','<b>Images\n---</b>\n\nFemme embrassant les pieds d\'un homme. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’05','','publish','open','open','','1h0405','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13701',0,'post','',0),
  6739. (13702,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nHomme marchant sur des toits de maisons au moyen-orient.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\nTrès loin, très bas, l’océan … cent millions de vagues.\nElles rampaient vers les côtes invisibles de Dofa,\n\n\n<b>Bande Son\n---</b>\n\nId. puis coups de mitraillette.\n\n\n<b>Écrits\n---</b>\n\n','1h04’07','','publish','open','open','','1h0407','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13702',0,'post','',0),
  6740. (13703,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nLac et ciel entourés de montagnes. \n\n\n<b>Voix Off et In\n---</b>\n\nsi lentes que, vues d’en haut, d’en plein ciel en ciel, elles ne donnaient qu’à peine l’impression de bouger \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’24','','publish','open','open','','1h0424','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13703',0,'post','',0),
  6741. (13704,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nSaturé : hommes et femmes sur une plage, bateau. \n\n\n<b>Voix Off et In\n---</b>\n\nElles glissaient sur la mer avec l’indolente précision d\'un dessin de Damas \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’35','','publish','open','open','','1h0435','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13704',0,'post','',0),
  6742. (13705,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nqui semble comme un grand réseau blanc sur une feuille\n\n\n<b>Bande Son\n---</b>\n\nArpèges à la guitare. <em>Raf Raf</em> (1991), Anouar Brahem.\n\n\n<b>Écrits\n---</b>\n\nARCHÉOLOGIE\nET PIRATES\n','1h04’42','','publish','open','open','','1h0442','','','2023-11-09 08:53:42','2023-11-09 07:53:42','',0,'https://localhost/?p=13705',0,'post','',0),
  6743. (13706,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nSurexposé et saturé : quatre enfants au milieu de la mer. \n\n\n<b>Voix Off et In\n---</b>\n\nde verre bleu. De place en place, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’45','','publish','open','open','','1h0445','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13706',0,'post','',0),
  6744. (13707,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nPhoto d\'un coucher de soleil sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\ndans cette transparence, la forme d\'un poisson frémissait puis s\'éclipsait, raie géant peut-être, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’52','','publish','open','open','','1h0452','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13707',0,'post','',0),
  6745. (13708,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nCoucher de soleil sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\noù requin sur la voie d\'eau plus froide. Vers le nord. S’aplatissait un archipel \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’00','','publish','open','open','','1h0500','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13708',0,'post','',0),
  6746. (13709,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nZoomé : coucher de soleil sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\ncortège de crocodiles, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’09','','publish','open','open','','1h0509','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13709',0,'post','',0),
  6747. (13710,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nSurexposé : hommes dans un bateau. \n\n\n<b>Voix Off et In\n---</b>\n\nvers les jardins du sud, vers le nord. Les pirogues s\'aplatissaient. Un archipel posé sur la plaque de verre comme \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’16','','publish','open','open','','1h0516','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13710',0,'post','',0),
  6748. (13711,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\ndes moustiques.\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h05’26','','publish','open','open','','1h0526','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13711',0,'post','',0),
  6749. (13712,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nSaturé en tons rouge : désert, dunes. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’27','','publish','open','open','','1h0527','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13712',0,'post','',0),
  6750. (13713,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nVieil homme soufflant sur des braises placées sur une brique, et posant une cafetière dessus. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’30','','publish','open','open','','1h0530','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13713',0,'post','',0),
  6751. (13714,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nPalmiers secoués par un vent fort. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVent \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’36','','publish','open','open','','1h0536','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13714',0,'post','',0),
  6752. (13715,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nRue bruyante d\'une ville du Moyen Orient vue d’un balcon. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nChanson en arabe provenant d’une radio résonnant dans la ville. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’41','','publish','open','open','','1h0541','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13715',0,'post','',0),
  6753. (13716,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nSurexposé et déformé : masque d’aigle sur un homme dont on voit les mains au bas du cadre.\n<em>Judex</em> (1964), Georges Franju.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h05’45','','publish','open','open','','1h0545','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13716',0,'post','',0),
  6754. (13717,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nAu ralenti : femme au balcon vue de dos, se retournant.\n<em>La mome vert de gris</em> (1953), Bernard borderie.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h05’52','','publish','open','open','','1h0552','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13717',0,'post','',0),
  6755. (13718,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nFemme dansant en regardant la caméra.\n<em>La bandera</em> (1935), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h05’55','','publish','open','open','','1h0555','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13718',0,'post','',0),
  6756. (13719,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nPhoto d\'une rue d’une ville prise avec un téléphone portable depuis un balcon. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nExplosions et cris. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’00','','publish','open','open','','1h0600','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13719',0,'post','',0),
  6757. (13720,1,'2023-09-26 09:19:23','2023-09-26 07:19:23','<b>Images\n---</b>\n\nAu ralenti : homme enflammé courant. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’06','','publish','open','open','','1h0606','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13720',0,'post','',0),
  6758. (13721,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nDeux hommes lisant le Coran et priant. \n\n\n<b>Voix Off et In\n---</b>\n\nLe livre. Les religions du livre ont forgé nos sociétés \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’12','','publish','open','open','','1h0612','','','2023-11-09 08:53:43','2023-11-09 07:53:43','',0,'https://localhost/?p=13721',0,'post','',0),
  6759. (13722,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nHomme sortant d\'une maison en pierre et en saluant d’autres en leur tendant la main.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\net nous avons sacralisé les textes.\nTables de la lois, dix commencements, rouleaux de la Torah, Bible, Coran etc.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h06’19','','publish','open','open','','1h0619','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13722',0,'post','',0),
  6760. (13723,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nIl fallait (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’36','','publish','open','open','','1h0636','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13723',0,'post','',0),
  6761. (13724,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nPeinte à la main sur un fond noir : « Le Livre d’\' » écrit en rouge et « Image » écrit en blanc. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’38','','publish','open','open','','1h0638','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13724',0,'post','',0),
  6762. (13725,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nSaturé : vidéo prise du sommet d\'une montagne, montrant la mer. Le bruit du vent perturbe le microphone. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVent. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’41','','publish','open','open','','1h0641','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13725',0,'post','',0),
  6763. (13726,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nEn noir et blanc : femme dansant tandis que des hommes et des femmes assis à table la regardent.\n<em>La mome vert de gris</em> (1953), Bernard borderie.\n\n\n<b>Voix Off et In\n---</b>\n\nIci, à Dofa, la capitale de l\'Émirat, il était inconcevable qu’un mouvement subversif se soit constitué\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h06’50','','publish','open','open','','1h0650','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13726',0,'post','',0),
  6764. (13727,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nHomme et enfant entrant dans une pièce remplie de fumée de cigarette, où de nombreux hommes sont assis à table tout en regardant un écran, se plaignant de la main, et à haute-voix. Ils s’asseyent à table et commandent de la nourriture à un serveur.\n\n\n<b>Voix Off et In\n---</b>\n\nVous êtes conscients je suppose que toutes les histoires racontées se montrent parties.\n\nquelque rumeur autre que les explosions\n\n\n<b>Bande Son\n---</b>\n\nId. puis voix humaines.\n\n\n<b>Écrits\n---</b>\n\n','1h06’55','','publish','open','open','','1h0655','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13727',0,'post','',0),
  6765. (13728,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nSaturé en tons jaunes et rouges, et sous-exposé : puit de pétrole en flammes. \n\n\n<b>Voix Off et In\n---</b>\n\nEn effet la grande puissance impérialiste qui étendait son emprise politique sur tous les États du Golfe ne s’intéressait plus à Dofa depuis qu’il était clair que son sous-sol ne renfermait pas de pétrole. \n \n En superposition la voix de Jean-Luc Godard : un gouvernement assez puissant pour donner aux gens tout ce qu\'ils veulent, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h07’28','','publish','open','open','','1h0728','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13728',0,'post','',0),
  6766. (13729,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nHomme tirant de nuit sur des fêtards réunis autour d\'un feu. Fêtards s\'enfuyant à la vue de l\'homme. \n\n\n<b>Voix Off et In\n---</b>\n\nassez puissant pour leur prendre tout ce qu’ils ont. \n \n Les frondeurs irréductibles de l’ordre établi avaient depuis longtemps renoncé à toute action brutale \n\n\n<b>Bande Son\n---</b>\n\nId. puis chants, coups de fusil et cris. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h07’50','','publish','open','open','','1h0750','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13729',0,'post','',0),
  6767. (13730,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nSous-exposé, en noir et blanc : personnes autour d\'un feu.\n\n\n<b>Voix Off et In\n---</b>\n\nla considérant comme inadéquate dans cet oasis misérable\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h08’13','','publish','open','open','','1h0813','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13730',0,'post','',0),
  6768. (13731,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nmais où régnait une paix souveraine \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’21','','publish','open','open','','1h0821','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13731',0,'post','',0),
  6769. (13732,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nPaysage semi désert, vu d\'une route.\n\n\n<b>Voix Off et In\n---</b>\n\ncar, là où il n\'y a rien, même les scélérats se résignent à l\'indigence. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h08’24','','publish','open','open','','1h0824','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13732',0,'post','',0),
  6770. (13733,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’32','','publish','open','open','','1h0832','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13733',0,'post','',0),
  6771. (13734,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nHaut et bas de l’écran noircis pour imiter la vision d’une personne portant une burqa. Au milieu de l’écran, à travers la fente : femmes marchant couvertes d’une burqa.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nÀ la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h08’36','','publish','open','open','','1h0836','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13734',0,'post','',0),
  6772. (13735,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’52','','publish','open','open','','1h0852','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13735',0,'post','',0),
  6773. (13736,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nVisage d\'une femme chantant en arabe. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoix féminine, en arabe. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’55','','publish','open','open','','1h0855','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13736',0,'post','',0),
  6774. (13737,1,'2023-09-26 09:19:24','2023-09-26 07:19:24','<b>Images\n---</b>\n\nSaturé en tons oranges et jaunes : match de football à la télévision aaccompagné des mots d’un commentateur sportif et photographie en couleur seppia de deux footballers. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’59','','publish','open','open','','1h0859','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13737',0,'post','',0),
  6775. (13738,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’11','','publish','open','open','','1h0911','','','2023-11-09 08:53:44','2023-11-09 07:53:44','',0,'https://localhost/?p=13738',0,'post','',0),
  6776. (13739,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nHomme et femme regardant la télévision. \n\n\n<b>Voix Off et In\n---</b>\n\nOn ne pouvait cependant oublier leur aptitude à se surpasser dans l\'abjection \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’12','','publish','open','open','','1h0912','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13739',0,'post','',0),
  6777. (13740,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nMains d\'un homme enchaîné.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\nlorsqu\'ils sont soutenus\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h09’23','','publish','open','open','','1h0923','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13740',0,'post','',0),
  6778. (13741,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nPetit enfant marchant dans une rue à la lumière du soleil sur laquelle se découpent les ombres des pales d\'un moulin.\nÀ côté de lui, homme enchaîné et gardé par trois autres hommes.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\net conseillés par des criminels d\'une plus grande envergure venus de l\'extérieur.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h09’26','','publish','open','open','','1h0926','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13741',0,'post','',0),
  6779. (13742,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSamantar \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’38','','publish','open','open','','1h0938','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13742',0,'post','',0),
  6780. (13743,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nVisage d\'un jeune homme appuyant sur une vitre reflétant son image. \n\n\n<b>Voix Off et In\n---</b>\n\nétait convaincu que la pauvreté d’un pays était sa seule sauvegarde contre les rapaces armés ou non. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’44','','publish','open','open','','1h0944','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13743',0,'post','',0),
  6781. (13744,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nDeux petites filles au foulard sur la tête. Mains de personnes applaudissant. \n\n\n<b>Voix Off et In\n---</b>\n\nqui n\'attendaient qu\'une promesse de profit pour venir le conquérir, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’58','','publish','open','open','','1h0958','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13744',0,'post','',0),
  6782. (13745,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nSurexposé et saturé : chameaux et hommes marchant en file dans le désert. \n\n\n<b>Voix Off et In\n---</b>\n\nle détruire et le pourrir \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’01','','publish','open','open','','1h1001','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13745',0,'post','',0),
  6783. (13746,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nFemme vue de dos, regardant un âne. \n\n\n<b>Voix Off et In\n---</b>\n\nEt Samantar remerciait le ciel d\'être né sur cette \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’05','','publish','open','open','','1h1005','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13746',0,'post','',0),
  6784. (13747,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nAu ralenti, en noir et blanc : homme marchant dans une rue, une arme à la main. \n\n\n<b>Voix Off et In\n---</b>\n\nterre désertique démunie de toute matière première et assez ingrate pour décourager les marchés. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’14','','publish','open','open','','1h1014','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13747',0,'post','',0),
  6785. (13748,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLe plus stupéfiant dans cette affaire \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’26','','publish','open','open','','1h1026','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13748',0,'post','',0),
  6786. (13749,1,'2023-09-26 09:19:25','2023-09-26 07:19:25','<b>Images\n---</b>\n\nRue et marché en plein air dans une ville du Moyen-Orient.\n<em>La fièvre</em> (2014), Safia Benhaïm.\n\n\n<b>Voix Off et In\n---</b>\n\nétait que les attentats étaient revendiqués par une soi-disant\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h10’31','','publish','open','open','','1h1031','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13749',0,'post','',0),
  6787. (13750,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSaturé : trois personnes sur une plage rocheuse au bord d\'une mer.\n\n\n<b>Voix Off et In\n---</b>\n\nforce de libération du golfe totalement inconnue et dont les tracts mal imprimés se targuaient d\'un vocabulaire révolutionnaire depuis longtemps dépassé. (Jean-Luc Godard). <em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId. puis vent.\n\n\n<b>Écrits\n---</b>\n\n','1h10’38','','publish','open','open','','1h1038','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13750',0,'post','',0),
  6788. (13751,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h11’30','','publish','open','open','','1h1130','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13751',0,'post','',0),
  6789. (13752,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSurexposé et saturé : deux hommes debout dans une voiture au toit ouvert, et criant des phrases en arabe.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\n[traduction de l’arabe] : Le volontariat dans la brigade de... La vie est une posture...\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h11’32','','publish','open','open','','1h1132','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13752',0,'post','',0),
  6790. (13753,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nNi l\'importance du territoire de Dofa … \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h11’35','','publish','open','open','','1h1135','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13753',0,'post','',0),
  6791. (13754,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSous-exposée : homme se déplaçant dans l\'ombre.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h11’40','','publish','open','open','','1h1140','','','2023-11-09 08:53:45','2023-11-09 07:53:45','',0,'https://localhost/?p=13754',0,'post','',0),
  6792. (13755,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nRalenti et sous exposé : main glissant trois doigts dans l’ouverture d\'une porte, pour l\'ouvrir.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n<b>Voix Off et In\n---</b>\n\nJournal télévisé [traduction de l’arabe standard] :\nNous ne savons pas jusqu\'à présent jusqu\'où pourra aller la riposte russe mais le climat ambiant laisse à penser que l\'attaque ne...\n\nVoix d’homme :\nni la conjoncture politique dans la région n\'avaient\n\nresté jusqu\'ici en dehors de l\'éclatante prospérité\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h11’46','','publish','open','open','','1h1146','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13755',0,'post','',0),
  6793. (13756,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSurexposé et saturé, au ralenti : rangée de personnes vêtues de blanc se tenant les mains, et les déplaçant vers l\'arrière. Puis pieds en tongs dansant. \n\n\n<b>Voix Off et In\n---</b>\n\ndes émirats voisins pouvait d\'un jour à l\'autre devenir un enfer. \n\n\n<b>Bande Son\n---</b>\n\nVoix masculines chantant un chant soufi (mystique) d\'Afrique du Nord (Hadhra en Tunisie ou Aissaoua en Algérie), accompagné de percussions. (Chant d\'invocation où l’on dit que il n\'y a de dieu que Dieu et que Mohamed est son prophète. Éloges de Dieu et du prophète Mohamed. Éloges d\'un saint patron qui est censé nous protéger). \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’00','','publish','open','open','','1h1200','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13756',0,'post','',0),
  6794. (13757,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’24','','publish','open','open','','1h1224','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13757',0,'post','',0),
  6795. (13758,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nDe nouveau, groupe d\'hommes courant dans la rue et se pressant contre la porte d\'un appartement. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’28','','publish','open','open','','1h1228','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13758',0,'post','',0),
  6796. (13759,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSaturé : hommes en tenue militaire officielle, et commandants.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\nCe qui tourmentait le Cheick El Kadem, le premier ministre du royaume, c\'était une vue de l\'esprit\n\n\n<b>Bande Son\n---</b>\n\nTrompettes de fanfare militaire.\n\n\n<b>Écrits\n---</b>\n\n','1h12’34','','publish','open','open','','1h1234','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13759',0,'post','',0),
  6797. (13760,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSaturé, sortant à droite et réapparaissant à gauche de l\'écran comme s\'il était projeté sur l\'écran d\'une télévision cassée : libellé du film « Le Livre d\'Image ». \n\n\n<b>Voix Off et In\n---</b>\n\ncar il rêvait de soumettre à sa domination, l\'ensemble des pays du golfe. \n\n\n<b>Bande Son\n---</b>\n\nId. et puis silence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’47','','publish','open','open','','1h1247','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13760',0,'post','',0),
  6798. (13761,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSaturé : maison en ruine sur une plage de roche en bord de mer. \n\n\n<b>Voix Off et In\n---</b>\n\nIl était vrai que sur cette bande de terre aride, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’57','','publish','open','open','','1h1257','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13761',0,'post','',0),
  6799. (13762,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nManifestation avec de nombreuses personnes dans la rue portant des pancartes écrites en arabe.\n<em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\nIl était le maître incontesté\n\n\n<b>Bande Son\n---</b>\n\nÀ la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h13’08','','publish','open','open','','1h1308','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13762',0,'post','',0),
  6800. (13763,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nSurexposé : sultan avec une femme à ses côtés.\n<em>The Thief of Baghdad</em> (1978), Cline Donner.\n\n<b>Voix Off et In\n---</b>\n\npuisque le vieil émir régnant, croupissant dans son harem, ne prenait plus la peine de lui donner des ordres.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h13’15','','publish','open','open','','1h1315','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13763',0,'post','',0),
  6801. (13764,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt la passion \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h13’21','','publish','open','open','','1h1321','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13764',0,'post','',0),
  6802. (13765,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nHomme au fez rouge sortant d\'une voiture dont le conducteur ouvre la porte.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\npour le pouvoir, Ben Kadem l\'avait ressentie depuis son enfance et maintenant à 42 ans elle le dévorait avec encore plus de densité.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h13’24','','publish','open','open','','1h1324','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13765',0,'post','',0),
  6803. (13766,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nGroupe de personnes marchant de nuit dans les dunes d\'un désert.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nMais malheureusement le monde n\'était pas aussi simple que son rêve d\'enfant. L\'irruption du pétrole dans la péninsule sauf ici à Dofa avait détruit l\'espoir de réaliser ses ambitions.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h13’37','','publish','open','open','','1h1337','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13766',0,'post','',0),
  6804. (13767,1,'2023-09-26 09:19:26','2023-09-26 07:19:26','<b>Images\n---</b>\n\nPalmier enflammé dans le désert de nuit.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nÀ la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h14’00','','publish','open','open','','1h1400','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13767',0,'post','',0),
  6805. (13768,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nFemmes riant dans un harem.\n<em>Arabian nights</em> (1942), John Rawlins.\n\n\n<b>Voix Off et In\n---</b>\n\nChose étrange,\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h14’11','','publish','open','open','','1h1411','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13768',0,'post','',0),
  6806. (13769,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nle seul homme avec lequel Ben Kadem pouvait parler franchement de son ambition \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h14’16','','publish','open','open','','1h1416','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13769',0,'post','',0),
  6807. (13770,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nPalmiers secoués par un vent fort. \n\n\n<b>Voix Off et In\n---</b>\n\nc’était celui là même qui trouvait cette ambition dérisoire : son jeune cousin Samantar. \n\n\n<b>Bande Son\n---</b>\n\nVent. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h14’24','','publish','open','open','','1h1424','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13770',0,'post','',0),
  6808. (13771,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h14’33','','publish','open','open','','1h1433','','','2023-11-09 08:53:46','2023-11-09 07:53:46','',0,'https://localhost/?p=13771',0,'post','',0),
  6809. (13772,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nDéplacement de gauche à droite : photo d\'un restaurant appelé « Les coquillages » et d’une rue d’une ville de bord de mer.\n\n\n<b>Voix Off et In\n---</b>\n\nn’avait pas uniquement pour objet d’approfondir sa vision sur le jeu sanglant des grandes puissances. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nExplosions.\n\n\n<b>Écrits\n---</b>\n\n','1h14’36','','publish','open','open','','1h1436','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13772',0,'post','',0),
  6810. (13773,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nPhoto de Barack Obama aux côtés de l\'émir du Koweït Cheikh Sabah al-Ahmad al-Jaber al-Sabah.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h14’53','','publish','open','open','','1h1453','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13773',0,'post','',0),
  6811. (13774,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nHomme au fez s\'approchant d\'une grille d\'entrée et frappant avec son bâton contre la grille.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\nIl était d\'une importance capitale de savoir l\'opinion de Samantar sur les derniers événements survenus.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h14’57','','publish','open','open','','1h1457','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13774',0,'post','',0),
  6812. (13775,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLe début d’une ère révolutionnaire à Dofa \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h15’07','','publish','open','open','','1h1507','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13775',0,'post','',0),
  6813. (13776,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nVisage d\'un homme plongé dans l\'obscurité, puis émergeant à la lumière éclairant ses lèvres et son nez.\n\n\n<b>Voix Off et In\n---</b>\n\nétait une négation totale de la possible d’une action armée dans la péninsule. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h15’12','','publish','open','open','','1h1512','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13776',0,'post','',0),
  6814. (13777,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nSaturé en tons bleus et rouges : personnes ballottées par une mer agitée. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVagues. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h15’24','','publish','open','open','','1h1524','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13777',0,'post','',0),
  6815. (13778,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nPersonne au foulard palestinien nué autour de la tête, se traînant avec un bras sur le sable, tenant de l’autre un fusil.\n<em>Ici et ailleurs</em> (1975), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Tu es seul ?\n- Oui je suis seul.\n- Je ne te dérange pas ?\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h15’28','','publish','open','open','','1h1528','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13778',0,'post','',0),
  6816. (13779,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nAu ralenti, saturé en tons bleus : foule de personnes manifestant.\n<em>Sexe, salafistes, printemps arabe</em> (2012), Paul Moreira.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je suis toujours ravi de te voir.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h15’36','','publish','open','open','','1h1536','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13779',0,'post','',0),
  6817. (13780,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nSous-exposé et tourné en noir et blanc : personnes dansant au milieu de la fumée.\n<em>Silence ! On tourne</em> (2001), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n- Un tel bonheur m\'est rarement accordé, excellence. - Tu te détaches de moi.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h15’43','','publish','open','open','','1h1543','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13780',0,'post','',0),
  6818. (13781,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nFemme portant une écharpe à pois rouges et blancs et courant les mains en l\'air.\n<em>À propos d\'Elly</em> (2009), Asghar Farhadi.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je vois que tu n\'es toujours pas prêt à ce sacrifice.\n\n\n<b>Bande Son\n---</b>\n\nA la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h15’51','','publish','open','open','','1h1551','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13781',0,'post','',0),
  6819. (13782,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nSaturé : groupe d\'hommes armés sur le toit d\'une voiture, observés par un homme vu de dos se cachant derrière un mur. Au ralenti : hommes descendant de la voiture.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\n- C\'est l\'excuse de toute ambition politique que de prétendre se sacrifier pour le bonheur du peuple. Mais le peuple ne t\'a rien demandé, il veut simplement vivre en paix.\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','1h15’57','','publish','open','open','','1h1557','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13782',0,'post','',0),
  6820. (13783,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nEn noir et blanc, basculé de 180° : visage d\'un homme la tête en bas, plongé dans l\'obscurité.\n\n\n<b>Voix Off et In\n---</b>\n\n- Pendant que nous vivons en paix, le monde bouge. (Avec écho)\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h16’15','','publish','open','open','','1h1615','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13783',0,'post','',0),
  6821. (13784,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nTremblements, et déplacement de droite à gauche : enfant écrivant sur une feuille de papier, observée de dos par un autre enfant. \n\n\n<b>Voix Off et In\n---</b>\n\n- Que nous importe ce monde qui bouge. (Avec écho) \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’23','','publish','open','open','','1h1623','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13784',0,'post','',0),
  6822. (13785,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nSaturé en tons rouges : visage de femme aux mains jointes en prière. Détail de la fresque de la coupole.\n<em>San Antonio de la Florida</em> (1798), Francisco Goya. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nCe sont tous des canailles, tous complices de l’imposture universelle.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h16’25','','publish','open','open','','1h1625','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13785',0,'post','',0),
  6823. (13786,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- La révolution a commencé dans le royaume mais tu le sais déjà sans doute. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’33','','publish','open','open','','1h1633','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13786',0,'post','',0),
  6824. (13787,1,'2023-09-26 09:19:27','2023-09-26 07:19:27','<b>Images\n---</b>\n\nEn noir et blanc, basculé de 180° : visage courroucé d\'un homme plongé dans l\'obscurité.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je le reconnaîtrais volontiers s’il s’agissait d’une vraie révolution, mais j’en doute.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h16’40','','publish','open','open','','1h1640','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13787',0,'post','',0),
  6825. (13788,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé : tissu rouge traîné sur la plage par le vent.\n<em>Fissures</em> (2009), Hicham Ayouch.\n\n\n<b>Voix Off et In\n---</b>\n\nOn a arrêté quelque type\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h16’49','','publish','open','open','','1h1649','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13788',0,'post','',0),
  6826. (13789,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nconnu de nos services \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’51','','publish','open','open','','1h1651','','','2023-11-09 08:53:47','2023-11-09 07:53:47','',0,'https://localhost/?p=13789',0,'post','',0),
  6827. (13790,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé : enfants jouant avec une femme portant une burka. \n\n\n<b>Voix Off et In\n---</b>\n\nmais ils prétendent ne rien savoir. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’54','','publish','open','open','','1h1654','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13790',0,'post','',0),
  6828. (13791,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nIls demandent même de quelle bombe il s’agit car \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’55','','publish','open','open','','1h1655','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13791',0,'post','',0),
  6829. (13792,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nFemme et homme vus à contre jour, se faisant face dans un couloir.\n\n\n<b>Voix Off et In\n---</b>\n\nils n’ont rien entendu. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nDe nouveau, à la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h16’56','','publish','open','open','','1h1656','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13792',0,'post','',0),
  6830. (13793,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé : homme portant un voile et homme marchant dans une rue. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoitures, et personnes marchant et parlant. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h17’02','','publish','open','open','','1h1702','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13793',0,'post','',0),
  6831. (13794,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nRue de nuit, éclairée par des lampadaires, avec des gens parlant et faisant du bruit. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h17’07','','publish','open','open','','1h1707','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13794',0,'post','',0),
  6832. (13795,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nFemmes voilées et hommes marchant dans la rue.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et en arrière-plan, annonces de service d\'une gare.\n\n\n<b>Écrits\n---</b>\n\n','1h17’25','','publish','open','open','','1h1725','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13795',0,'post','',0),
  6833. (13796,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nCôte montagneuse surplombant la mer. Groupe de personnes marchant sur la plage. \n\n\n<b>Voix Off et In\n---</b>\n\nIci, à Dofa, que des gens \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h17’31','','publish','open','open','','1h1731','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13796',0,'post','',0),
  6834. (13797,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nlancent des bombes un peu partout cela me parait normal \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nHICHAM \n People throwing bombs \n\n','1h17’40','','publish','open','open','','1h1740','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13797',0,'post','',0),
  6835. (13798,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nHomme touareg vêtu de blanc, assis au pied d\'un palmier dans le désert, caressant une antilope.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em>, Nacer Khémir (2005).\n\n\n<b>Voix Off et In\n---</b>\n\nque pourraient-ils faire d\'autre ? C\'est leur seule manière d\'exprimer leur révolte devant la férocité des moyens employés par le gouvernement. Quelle autre attitude serait valable ? Pour ma part, je serai toujours du côté des bombes.\n\n\n<b>Bande Son\n---</b>\n\nDe nouveau, à la guitare : arpèges. Silence.\n\n\n<b>Écrits\n---</b>\n\n','1h17’44','','publish','open','open','','1h1744','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13798',0,'post','',0),
  6836. (13799,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLa révolution, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nTAREK \n\n','1h18’13','','publish','open','open','','1h1813','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13799',0,'post','',0),
  6837. (13800,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : hommes touareg sous des palmiers avec des ânes à leurs côtés. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’18','','publish','open','open','','1h1818','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13800',0,'post','',0),
  6838. (13801,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé en tons rouges : explosion et flammes. \n\n\n<b>Voix Off et In\n---</b>\n\ncela ne me paraît pas vital dans cette région. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’21','','publish','open','open','','1h1821','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13801',0,'post','',0),
  6839. (13802,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nHomme courant. \n\n\n<b>Voix Off et In\n---</b>\n\nIl est vrai qu\'à notre époque \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’26','','publish','open','open','','1h1826','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13802',0,'post','',0),
  6840. (13803,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé : enfants et personnes courant en tous sens et semblant regarder quelque chose hors champ.\n<em>Les Baliseurs du désert</em>, Nacer Khémir (1984), cité dans <em>Voyage à Tunis</em> (2007), Bruno Moll.\n\n\n<b>Voix Off et In\n---</b>\n\ntout est possible\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’32','','publish','open','open','','1h1832','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13803',0,'post','',0),
  6841. (13804,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé : missile tiré sur une voiture explosant.\n<em>13 hours. The Secret Soldiers of Benghazi</em>, (2016), Michael Bay.\n\n\n<b>Voix Off et In\n---</b>\n\ncrois-tu que les hommes\n\n\n<b>Bande Son\n---</b>\n\nExplosions et cris.\n\n\n<b>Écrits\n---</b>\n\n','1h18’37','','publish','open','open','','1h1837','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13804',0,'post','',0),
  6842. (13805,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’40','','publish','open','open','','1h1840','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13805',0,'post','',0),
  6843. (13806,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nSaturé et sous-exposé : explosion, avec un hélicoptère en feu à l\'arrière-plan. Homme tombant au sol en gémissant après avoir été touché par un missile.\n<em>13 hours. The Secret Soldiers of Benghazi</em>, (2016), Michael Bay.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’41','','publish','open','open','','1h1841','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13806',0,'post','',0),
  6844. (13807,1,'2023-09-26 09:19:28','2023-09-26 07:19:28','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\ncrois-tu que les hommes au pouvoir aujourd\'hui\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h18’43','','publish','open','open','','1h1843','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13807',0,'post','',0),
  6845. (13808,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nHommes vêtus de manière formelle, avec un fez sur la tête, parlant entre eux.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\ndans le monde soient autre chose\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’47','','publish','open','open','','1h1847','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13808',0,'post','',0),
  6846. (13809,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nSaturé et au ralenti : homme courant dans une rue, avec à ses côtés une explosion.\n<em>Karbala, 4 jour en enfer</em> (2015), Krzysztof Łukaszewicz.\n\n\n<b>Voix Off et In\n---</b>\n\nque des débiles sanguinaires ?\n(Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’53','','publish','open','open','','1h1853','','','2023-11-09 08:53:48','2023-11-09 07:53:48','',0,'https://localhost/?p=13809',0,'post','',0),
  6847. (13810,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nC’était peu de rêver d’être roi \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’55','','publish','open','open','','1h1855','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13810',0,'post','',0),
  6848. (13811,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nSous-exposé et saturé et puis surexposé : Homme visant avec un bazooka à l’épaule.\n<em>Karbala, 4 jour en enfer</em> (2015), Krzysztof Łukaszewicz.\n\n\n<b>Voix Off et In\n---</b>\n\nquand on pouvait rêver d\'être Faust.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’57','','publish','open','open','','1h1857','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13811',0,'post','',0),
  6849. (13812,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nMais nul, mais nul, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’00','','publish','open','open','','1h1900','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13812',0,'post','',0),
  6850. (13813,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nPersonne morte gisant sur le sol.\n<em>Karbala, 4 jour en enfer</em> (2015), Krzysztof Łukaszewicz.\n\n\n<b>Voix Off et In\n---</b>\n\nne rêvait plus d\'être Faust\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h19’03','','publish','open','open','','1h1903','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13813',0,'post','',0),
  6851. (13814,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\net chacun rêvait d\'être roi. (Jean-Luc Godard).\n<em>Air de Méphistophélès, Damnation de Faust</em> (1846), Hector Berlioz.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h19’05','','publish','open','open','','1h1905','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13814',0,'post','',0),
  6852. (13815,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nEnfant jetant des pierres sur un chien dans une rue. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’10','','publish','open','open','','1h1910','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13815',0,'post','',0),
  6853. (13816,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nPersonne écrivant en arabe sur une feuille de papier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Cloud</em> (2017), Tomasz Stanko New York Quartet.\n\n\n<b>Écrits\n---</b>\n\n','1h19’16','','publish','open','open','','1h1916','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13816',0,'post','',0),
  6854. (13817,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nAquarelle d\'un homme vêtu de blanc assis sur le sol. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’20','','publish','open','open','','1h1920','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13817',0,'post','',0),
  6855. (13818,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nSaturé en tons bleus : lac entouré d\'arbres.\n\n\n<b>Voix Off et In\n---</b>\n\nÀ Dofa, le rêve de Cheikh ben Kadem fit naufrage. La mort de son jeune amant dissipa l’ambition de soumettre à sa domination l\'ensemble\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h19’28','','publish','open','open','','1h1928','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13818',0,'post','',0),
  6856. (13819,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nVoiture longeant une route suivie de personnes marchant derrière elle.\n<em>Les terrasses</em> (2013), Merzak Allouache.\n\n\n<b>Voix Off et In\n---</b>\n\ndes pays du golfe. Ben Kadem s\'en vint alors confesser ses erreurs politiques\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h19’43','','publish','open','open','','1h1943','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13819',0,'post','',0),
  6857. (13820,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nDe nouveau, photo en noir et blanc d\'un homme au visage courroucé. \n\n\n<b>Voix Off et In\n---</b>\n\nà Samantar et puis il s\'enfuit et se refugia. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’51','','publish','open','open','','1h1951','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13820',0,'post','',0),
  6858. (13821,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSamantar heureux et tranquillisé \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’58','','publish','open','open','','1h1958','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13821',0,'post','',0),
  6859. (13822,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nSaturé : maison en ruine entourée d\'antennes de télévision et d\'internet. \n\n\n<b>Voix Off et In\n---</b>\n\npar ce dénouement, sortit de sa misérable cahute. \n \n\n\n<b>Bande Son\n---</b>\n\nDe nouveau, à la guitare : arpèges. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’01','','publish','open','open','','1h2001','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13822',0,'post','',0),
  6860. (13823,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nHomme souriant.\n<em>Les terrasses</em> (2013), Merzak Allouache.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h20’07','','publish','open','open','','1h2007','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13823',0,'post','',0),
  6861. (13824,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nSurexposé : Photographie d\'une file d\'hommes vêtus de jeans et de lunettes de soleil marchant. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’11','','publish','open','open','','1h2011','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13824',0,'post','',0),
  6862. (13825,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’18','','publish','open','open','','1h2018','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13825',0,'post','',0),
  6863. (13826,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nSaturé : cheval tirant une calèche passant dans une rue. \n\n\n<b>Voix Off et In\n---</b>\n\nCe n\'est que quelques mois plus tard que Samantar rencontra Tarek le long de la mer \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’20','','publish','open','open','','1h2020','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13826',0,'post','',0),
  6864. (13827,1,'2023-09-26 09:19:29','2023-09-26 07:19:29','<b>Images\n---</b>\n\nJeune homme au turban accompagnant un homme âgé dans une prairie près d\'un ruisseau et s’asseyant sur un rocher.\n\n\n<b>Voix Off et In\n---</b>\n\net apprit la vérité de la fausse révolution fomentée par l\'ancien premier ministre. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\nCe que je fais avec les enfants dit le fou c\'est une sorte de contre-révolution.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h20’27','','publish','open','open','','1h2027','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13827',0,'post','',0),
  6865. (13828,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nSurexposé : groupe d\'enfants jouant et courant.\n<em>Les mille mois</em> (2003), Faouzi Bensaïdi.\n\n\n<b>Voix Off et In\n---</b>\n\nUn fou peut aller partout, il a une liberté totale de mouvement, et de parole. Avec l\'aide des enfants j\'ai fait sauter la banque et l\'agence d\'import export\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h20’43','','publish','open','open','','1h2043','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13828',0,'post','',0),
  6866. (13829,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nHomme écrivant sur une feuille de papier, et enfant regardant ce qu\'il écrit, debout devant lui, dans une maison du Moyen Orient avec des tapis, des coussins et des rideaux devant les fenêtres. \n\n\n<b>Voix Off et In\n---</b>\n\nles deux signes de l\'ignominie capitaliste. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’01','','publish','open','open','','1h2101','','','2023-11-09 08:53:49','2023-11-09 07:53:49','',0,'https://localhost/?p=13829',0,'post','',0),
  6867. (13830,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nSaturé en tons rouges et bleus, et basculé de 90 degrés : coucher du soleil et puits de pétrole. \n\n\n<b>Voix Off et In\n---</b>\n\nMais comment as-tu pu te procurer les explosifs ? Ils ont été repérés \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’02','','publish','open','open','','1h2102','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13830',0,'post','',0),
  6868. (13831,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nEnfants courant derrière la caméra. Enfant portant une chemise blanche trop longue et marchant en trébuchant sur le tissu. \n\n\n<b>Voix Off et In\n---</b>\n\npar les enfants dans un vieux derrick abandonné par les étrangers quand ils cherchaient en vain du pétrole. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’09','','publish','open','open','','1h2109','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13831',0,'post','',0),
  6869. (13832,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nEnfant sur une route faisant tourner de la main une bobine rouge en s’aidant d’une pellicule. <em>Reel-Unreel</em> (2011), Francis Alÿs.\n\n\n<b>Voix Off et In\n---</b>\n\nJe te remercie. Discuter avec un fou est un privilège\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h21’18','','publish','open','open','','1h2118','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13832',0,'post','',0),
  6870. (13833,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nCouverture d’un exemplaire <em>d’Images en parole</em> (2003), Anne-Marie Miéville. L’exemplaire est feuilleté.\n\n\n<b>Voix Off et In\n---</b>\n\ninestimable, crois moi. (Jean-Luc Godard).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h21’25','','publish','open','open','','1h2125','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13833',0,'post','',0),
  6871. (13834,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nGros plan de la face de Bécassine.\nDerrière : id. en dimensions réduites.\n\n\n<b>Voix Off et In\n---</b>\n\nCrois-moi. On n\'est jamais suffisamment triste. (Anne-Marie Miéville).\n<em>Le territoire de l’homme</em> (1978), Elias Canetti.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h21’32','','publish','open','open','','1h2132','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13834',0,'post','',0),
  6872. (13835,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nSaturé : pinceau et livre ouvert. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’38','','publish','open','open','','1h2138','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13835',0,'post','',0),
  6873. (13836,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nSaturé : photographie d\'un grand pinceau et d\'un crayon. \n\n\n<b>Voix Off et In\n---</b>\n\nOn n\'est jamais suffisamment triste pour que le monde soit meilleur. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’41','','publish','open','open','','1h2141','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13836',0,'post','',0),
  6874. (13837,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nSaturé : de nouveau, plage de roche en bord de mer, enfants y jouant au football. \n\n\n<b>Voix Off et In\n---</b>\n\nla terre abandonnée, la terre abandonnée, surchargée de lettres de l\'alphabet, étouffée sous les connaissances et \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’53','','publish','open','open','','1h2153','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13837',0,'post','',0),
  6875. (13838,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nplus guère d\'oreilles qui soient à l\'écoute. (Anne-Marie Miéville).\n<em>Le territoire de l’homme</em> (1978), Elias Canetti.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h22’10','','publish','open','open','','1h2210','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13838',0,'post','',0),
  6876. (13839,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nSurexposé et en négatif : de nouveau, petite fille aux yeux fermés, le visage levé vers le ciel et les mains tendues devant elle.\n<em>Miracle en Alabama</em> (1962), Arthur Penn. <em>Histoire (s) du cinéma 4a</em>, (1988 - 98) Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946) Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','1h22’14','','publish','open','open','','1h2214','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13839',0,'post','',0),
  6877. (13840,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nDétail de son visage et de sa main gauche. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h22’20','','publish','open','open','','1h2220','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13840',0,'post','',0),
  6878. (13841,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nEn tons bleus : détail de son visage. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h22’26','','publish','open','open','','1h2226','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13841',0,'post','',0),
  6879. (13842,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nDétail de sa main.\n\n\n<b>Voix Off et In\n---</b>\n\nVoici les roses de cette nuit écloses.\n<em>La Damnation de Faust</em> (1946), Berlioz Hector.\n\n\n<b>Bande Son\n---</b>\n\n<em>La Damnation de Faust</em> (1946), Berlioz Hector.\n\n\n<b>Écrits\n---</b>\n\n','1h22’32','','publish','open','open','','1h2232','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13842',0,'post','',0),
  6880. (13843,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nEn blanc sur fond noir : inscription manuscrites. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nGodard \n Battaggia \n Aragno \n Brenez \n\n','1h22’43','','publish','open','open','','1h2243','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13843',0,'post','',0),
  6881. (13844,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h22’49','','publish','open','open','','1h2249','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13844',0,'post','',0),
  6882. (13845,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSilenzio, si gira. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nDe Vinci, Bernanos, King Lear, Closed vision, Weinberg, Giacometti, Jeanne d\'arc, Chahine, Chien andalou, Histoire (s) du cinéma, Derain, Caméra analytique, S. Walker, Artaud, Murnau, Ramuz, Hamlet, Gaumont, Miracle en Alabama, J Michelet, Histoire, Kiss me Deadly, V. Grossman \n\n','1h22’54','','publish','open','open','','1h2254','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13845',0,'post','',0),
  6883. (13846,1,'2023-09-26 09:19:30','2023-09-26 07:19:30','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSilenzio. Camera, moteur, motore \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nD. Guyotat, Allemagne année neuf zéro, Le dernier des hommes, J. Gozland, Johny Guitar, petit soldat, M Leroux, Liban Guerres et hommes, Salo, A Sokourov, Timbuktu, Vrai faux passeport, chute faucon noir, les carabiniers, hommes du dimanche, Blue jean, guerre de chine, les dents de la mer, Le sang des bêtes, R. Girard, V Illitch, La grève, Païsa \n\n','1h22’58','','publish','open','open','','1h2258','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13846',0,'post','',0),
  6884. (13847,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\npartito, ciak, Odissea 14702 prima.\n<em>Le Mépris</em> (1963), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nVertigo, femme au corbeau, l\'Atalante, au bord de la mer bleue, hélas pour moi, Ruby gentry, planète, 8 mai 1945, les enfants jouent à la Russie, Delacroix, Angèle, Zylberman, JLG JLG, Guerre et paix, Péguy, Les enfants de la guerre, Stalingrad, l\'espoir, Inessa Armand, le silence de la mer\n','1h23’03','','publish','open','open','','1h2303','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13847',0,'post','',0),
  6885. (13848,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nGong profond et inquiétant. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h23’08','','publish','open','open','','1h2308','','','2023-11-09 08:53:50','2023-11-09 07:53:50','',0,'https://localhost/?p=13848',0,'post','',0),
  6886. (13849,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « TEXTES ». \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n TEXTES \n\n','1h23’10','','publish','open','open','','1h2310','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13849',0,'post','',0),
  6887. (13850,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nGoogle, Al razutis, RM Rilke, Berlin express, l\'affrontement, paysage dans le brouillard, Dostoïevski, Hollis Frampton, L. F. Céline, P de Villiers, Hans Otte, Manon, Orphée, croisée des destins, mécano de la générale, route de l\'impossible, Baudelaire, Hegel, D. Vertov, terror by night, G Steiner, castoriadis, le silence \n\n','1h23’14','','publish','open','open','','1h2314','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13850',0,'post','',0),
  6888. (13851,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nShanghai express, A Brehem, E Vittorini T Gustavsen, Turksib, A. Schnittke, Trigon films, Liberté et patrie, P. Val, W. Faulkner, grandeur et décadence, les 2 Fédor, Wild boys on the road, Toccata for toy trains, Arvo part, Au bord de la mer bleue, Anna Karenine, Medvedkine, Après le feu, le plaisir, deux fois cinquante ans, la commune, Arditti quartet, ECM records, V. Hugo, vendémiaire \n\n','1h23’19','','publish','open','open','','1h2319','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13851',0,'post','',0),
  6889. (13852,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « FILMS ». \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\nMais la langue ne sera jamais \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nFILMS \n\n','1h23’20','','publish','open','open','','1h2320','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13852',0,'post','',0),
  6890. (13853,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nle langage \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nA. Rimbaud, terrorism considered, Sollers, V. Vysotsky, Montesquieu, le faux coupable, Grèce 2013, Au cœur de l\'orage, La Strada, J.- S. Bach, Les chouans, Mister love, Sayat nova, Los Olvidados, Marilyn, Le premier maître, les onze fioretti, Young Mister Lincoln, Monsieur de Charette, Le chaos, Freaks, Porno, danish string quartet, For ever Mozart \n\n','1h23’25','','publish','open','open','','1h2325','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13853',0,'post','',0),
  6891. (13854,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nCaillebotte, Balzac, Jacques rivette, Dies irae, Wyatt Earp, Tout va bien, Alexandre Nevski, Eau argentée, C dans l\'air, Fantômas, Freud, procès de Charles 1er, Nuremberg, Méliès, Hortense de Beauharnais, école de Fontainebleau, Duck soup, René Charles de Lusson, Elephant, Week-end, Viva Villa, Que viva mexico, les visiteurs du soir, Elie Faure, S. Prokofiev, La fin du A \n\n','1h23’30','','publish','open','open','','1h2330','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13854',0,'post','',0),
  6892. (13855,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « TABLEAUX ». \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nCoq chantant. \n\n\n<b>Écrits\n---</b>\n\nTABLEAUX \n\n','1h23’31','','publish','open','open','','1h2331','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13855',0,'post','',0),
  6893. (13856,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Vom Winde Beweint - 1 Largo Molto</em> (1990), Giya Kancheli.\n\n\n<b>Écrits\n---</b>\n\nlas Hurdes, Beckett, metropolis, Nuit du carrefour, M. Blanchot, Vladimir et Rosa, terreur et vertu, l\'esprit des lois, La dame de Shanghai, Un feu, la belle et la Bête, Emile Cohl, la région centrale, Photo Libération, Bécassine, Broswimmer, Notorius, Moubarak, Origine du XXIe siècle, A. Cossery, le visage de Dieu, Meshes of afternoon, Les 1001 nuits, Constantinople, Détective, Film socialisme, Voleur de Bagdad (R. Walsh)\n','1h23’35','','publish','open','open','','1h2335','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13856',0,'post','',0),
  6894. (13857,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nAladin magic lamp, le Messie, The crusades, Bonaparte, frères de guerre, Salammbô, Méditerranée, E. Saïd, S. Luste Boulbina, M. Koldenitzky, Nous, les dernières vacances, Djamila, Voyage à Tunis, Collier perdu de la colombe, Kanchelli, Khalled abou Khalled, gare centrale, Ici et ailleurs, la saison des hommes, Alexandre Dumas, Muezzin, P Mizraki, Mendelssohn, A. Macke, Tamaout, Détention secrète \n\n','1h23’40','','publish','open','open','','1h2340','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13857',0,'post','',0),
  6895. (13858,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « MUSIQUE » \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nMUSIQUE \n\n','1h23’41','','publish','open','open','','1h2341','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13858',0,'post','',0),
  6896. (13859,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n F. Prokosch, Judex, la Bandera, Syriana, D. Sibony, La môme vert de gris, Mille mois, Premiers chanteurs des Bilad Al Sham, les silences du palais, Al leil, La fièvre, About Elly, Tunisie, Voleur de Bagdad (C. Donner), Bab\' Aziz\', Arabian nights, Fissures, Salafistes sexe, Maghreb, 13 hours, kerbala, Tomasz Stanko, les terrasses, 2 films inconnus, Reel unreel, La recupart, Elias Canetti, P. Weiss \n\n','1h23’45','','publish','open','open','','1h2345','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13859',0,'post','',0),
  6897. (13860,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nEUX TOUS \n\n','1h23’49','','publish','open','open','','1h2349','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13860',0,'post','',0),
  6898. (13861,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : photo d\'un enfant mangeant assis. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h23’51','','publish','open','open','','1h2351','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13861',0,'post','',0),
  6899. (13862,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. Lettres latines rouges s’y superposant à des lettres arabes blanches. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nHAMIDREZA \n PEJMAN \n\n','1h23’54','','publish','open','open','','1h2354','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13862',0,'post','',0),
  6900. (13863,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. Lettres latines rouges s’y superposant à des lettres arabes blanches. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nGEORGES \n SCHOUCAIR \n\n','1h23’56','','publish','open','open','','1h2356','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13863',0,'post','',0),
  6901. (13864,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nNADER \n MOBARGHA \n\n','1h23’59','','publish','open','open','','1h2359','','','2023-11-09 08:53:51','2023-11-09 07:53:51','',0,'https://localhost/?p=13864',0,'post','',0),
  6902. (13865,1,'2023-09-26 09:19:31','2023-09-26 07:19:31','<b>Images\n---</b>\n\nEn noir et blanc : grillage avec une pancarte indiquant : « NO TRESPASSING ». \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’00','','publish','open','open','','1h2400','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13865',0,'post','',0),
  6903. (13866,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nEn couleur : photo d’un grillage avec une pancarte indiquant : « DÉFENSE D’ENTRER \n PROPRIÉTÉ DE L’ETAT ». \n\n\n<b>Voix Off et In\n---</b>\n\nEn réalité, disait Brecht, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’04','','publish','open','open','','1h2404','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13866',0,'post','',0),
  6904. (13867,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nInscription manuscrite : \n « Film immatriculé \n Au Registre public de la \n Cinématographie \n et visé à la censure \n sous N932 15 / 2 / 46 ». \n\n\n<b>Voix Off et In\n---</b>\n\nseul le fragment \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’09','','publish','open','open','','1h2409','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13867',0,'post','',0),
  6905. (13868,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nAu ralenti et en noir et blanc : jeunes esclaves vénérant un roi sur un trône. \n\n\n<b>Voix Off et In\n---</b>\n\nporte la marque de l\'authenticité parce qu’il est le plus proche de la fonction la plus intérieure de l’acte de production. De production qui correspond à la respiration, au simple fait d’exister tout juste vécu par la conscience. (Jean-Luc Godard). \n \n Deux voix de Godard continuent de parler en se chevauchant : \n \n Marx et Engels. A leurs yeux \n Eugène Sue était un aveugle, \n un solitaire, pour qui la vie pleine de vie était une abstraction. Ils admirent, il vrai, que la représentation d’une civilisation tombée dans la dépravation d’un état où les droits civils n’étaient pas respectés, où l’inégalité régnait, contenait … critique. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’14','','publish','open','open','','1h2414','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13868',0,'post','',0),
  6906. (13869,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nEn noir et blanc : détail de la main du <em>San Giovanni Battista</em> (1508 - 1513), Leonardo da Vinci.\n\n\n<b>Voix Off et In\n---</b>\n\nMais\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’41','','publish','open','open','','1h2441','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13869',0,'post','',0),
  6907. (13870,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nSurexposé et saturé : pellicule tirée d\'une bobine en rotation. \n\n\n<b>Voix Off et In\n---</b>\n\nau contraire de Balzac, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’44','','publish','open','open','','1h2444','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13870',0,'post','',0),
  6908. (13871,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : de nouveau, photographie d\'un enfant mangeant assis. \n\n\n<b>Voix Off et In\n---</b>\n\nil ne faisait que satisfaire son penchant effréné pour l’homme \n \n \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’45','','publish','open','open','','1h2445','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13871',0,'post','',0),
  6909. (13872,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nSoldats courants à travers des explosions.\n\n\n<b>Voix Off et In\n---</b>\n\ns’humiliant lui-même.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’48','','publish','open','open','','1h2448','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13872',0,'post','',0),
  6910. (13873,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nPhotographie de Louis-Ferdinand Céline.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’50','','publish','open','open','','1h2450','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13873',0,'post','',0),
  6911. (13874,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, femme s’évanouissant avec les mains en l\'air devant un écran. <em>Deux fois cinquante ans de cinéma français</em> (1995), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nQu’il n’utilisait le remords et l’expiation\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’51','','publish','open','open','','1h2451','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13874',0,'post','',0),
  6912. (13875,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, femme au micro parlant lors d\'une manifestation. \n\n\n<b>Voix Off et In\n---</b>\n\nd’actes d’une brutalité inouïe \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’53','','publish','open','open','','1h2453','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13875',0,'post','',0),
  6913. (13876,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nEn négatif : de nouveau, homme caché dans l\'ombre, le menton posé sur la main gauche.\n<em>Fantômas</em> (1913), Louis Feuillade. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’54','','publish','open','open','','1h2454','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13876',0,'post','',0),
  6914. (13877,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, photographie de Marilyne Monroe. Iris et clignotement : corbeaux s’envolant.\n<em>Les Oiseaux</em> (1963), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’56','','publish','open','open','','1h2456','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13877',0,'post','',0),
  6915. (13878,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, Bécassine avec l\'index de la main gauche levé. \n\n\n<b>Voix Off et In\n---</b>\n\nque pour faire miroiter le lieu \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’00','','publish','open','open','','1h2500','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13878',0,'post','',0),
  6916. (13879,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nSurexposé, saturé en tons bleus : presque indistinguable. \n\n\n<b>Voix Off et In\n---</b>\n\nd’une transformation de \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’01','','publish','open','open','','1h2501','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13879',0,'post','',0),
  6917. (13880,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, personne portant un turban, montrant les paumes et plaçant une main sur la paume de l\'autre d’un mouvement lent.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nla réalité. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h25’04','','publish','open','open','','1h2504','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13880',0,'post','',0),
  6918. (13881,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, visage d\'un homme appuyé contre une vitre reflétant son image. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’10','','publish','open','open','','1h2510','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13881',0,'post','',0),
  6919. (13882,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, plage de roche surplombant la mer, avec une maison en ruine à côté. Deux hommes marchant entre des bateaux échoués sur la plage. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’13','','publish','open','open','','1h2513','','','2023-11-09 08:53:52','2023-11-09 07:53:52','',0,'https://localhost/?p=13882',0,'post','',0),
  6920. (13883,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, groupe d\'hommes courant dans la rue, puis faisant irruption à travers la porte d\'une maison située dans une ruelle. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’17','','publish','open','open','','1h2517','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13883',0,'post','',0),
  6921. (13884,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nDe nouveau, enfant sur une route poussant d\'une main une bobine rouge avec une pellicule.\n<em>Reel-Unreel</em> (2011), Francis Alÿs.\n\n\n<b>Voix Off et In\n---</b>\n\nIl doit y avoir une révolution. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h25’22','','publish','open','open','','1h2522','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13884',0,'post','',0),
  6922. (13885,1,'2023-09-26 09:19:32','2023-09-26 07:19:32','<b>Images\n---</b>\n\nNoir, avec l\'inscription « Parole et Image »\napparaissant. En traces de détrempe bleue et bleu clair, « Parole » et « Image », en rouge « et ».\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>The River I</em> (1997), Ketil Bjornstad &amp; David Darling.\n\n\n<b>Écrits\n---</b>\n\n','1h25’29','','publish','open','open','','1h2529','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13885',0,'post','',0),
  6923. (13886,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','<b>Images\n---</b>\n\nHomme en pleurs soulevant un cadavre du sol. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’32','','publish','open','open','','1h2532','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13886',0,'post','',0),
  6924. (13887,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','<b>Images\n---</b>\n\nPhotographie d\'une statue représentant probablement le Christ. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’36','','publish','open','open','','1h2536','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13887',0,'post','',0),
  6925. (13888,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nLorsque je me parle à moi même, je parle la parole d\'un autre. Que je me parle à moi-même. D\'un autre. Que je me parle à moi-même. (Anne Marie Miéville).\n\nGodard, avec une voix d’outre tombe :\nEt si même rien ne devait être comme nous l\'avions espéré, cela ne changerait rien à nos espérances. Les espérances resteraient, l\'utopie serait nécessaire. Plus tard aussi les espérances s’embraseraient de nombreuses fois, étouffées par l\'ennemi plus fort, et elles se réveilleraient sans cesse. Et le domaine des espérances serait plus vaste que de notre temps. Il s\'étendrait sur tous les continents : le besoin de contradiction, de résistance ne diminuera jamais, de même que le passé était immutable, de même les espérances resteraient immuables, et ceux qui un jour alors que nous étions jeunes avaient nourri l’ [toux] ardent espoir. Et si même rien ne devait être comme nous l\'avions espéré, cela ne changerait rien aux espérances.\n<em>L’Esthétique de la résistance</em> (1978 - 81), Peter Weiss.\n\n\n<b>Bande Son\n---</b>\n\nId. et puis silence.\n\n\n<b>Écrits\n---</b>\n\n','1h25’37','','publish','open','open','','1h2537','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13888',0,'post','',0),
  6926. (13889,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','<b>Images\n---</b>\n\nEntrée du danseur cachant sa vieillesse sous un masque, et dansant jusqu\'à en mourir.\n<em>Le masque, Le Plaisir</em> (1952), Max Ophüls.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Das Buch der Klange I - XII</em> (1999), I, Hans Otte.\n\n\n<b>Écrits\n---</b>\n\n','1h26’58','','publish','open','open','','1h2658','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13889',0,'post','',0),
  6927. (13890,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h27’58','','publish','open','open','','1h2758','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13890',0,'post','',0),
  6928. (13891,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Das Buch der Klange I - XII, V</em> (1999), Hans Otte.\n\n\n<b>Écrits\n---</b>\n\nC 2018 CASA AZUL FILMS\nC 2015 ECRAN Noir. productions\n','1h28’03','','publish','open','open','','1h2803','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13891',0,'post','',0),
  6929. (13892,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','0’0’’','','publish','open','open','','00','','','2023-11-09 09:27:26','2023-11-09 08:27:26','',0,'https://localhost/?p=13892',0,'post','',0),
  6930. (13893,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','02’55’’','','publish','open','open','','0255-2','','','2023-11-09 09:16:58','2023-11-09 08:16:58','',0,'https://localhost/?p=13893',0,'post','',0),
  6931. (13894,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','51’57’’','','publish','open','open','','5157-2','','','2023-11-09 09:19:01','2023-11-09 08:19:01','',0,'https://localhost/?p=13894',0,'post','',0),
  6932. (13895,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','1h22’43’’','','publish','open','open','','1h2243-2','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13895',0,'post','',0),
  6933. (13896,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','1h24’00’’','','publish','open','open','','1h2400-2','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13896',0,'post','',0),
  6934. (13897,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','11’48’’','','publish','open','open','','1148-2','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13897',0,'post','',0),
  6935. (13898,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','20’28’’','','publish','open','open','','2028-2','','','2023-11-09 08:53:53','2023-11-09 07:53:53','',0,'https://localhost/?p=13898',0,'post','',0),
  6936. (13899,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','33’02’’','','publish','open','open','','3302-2','','','2023-11-09 08:53:54','2023-11-09 07:53:54','',0,'https://localhost/?p=13899',0,'post','',0),
  6937. (13900,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','48’16’’','','publish','open','open','','4816-2','','','2023-11-09 08:53:54','2023-11-09 07:53:54','',0,'https://localhost/?p=13900',0,'post','',0),
  6938. (13901,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','55’33’’','','publish','open','open','','5533-2','','','2023-11-09 08:53:54','2023-11-09 07:53:54','',0,'https://localhost/?p=13901',0,'post','',0),
  6939. (13902,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','1h04’42’’','','publish','open','open','','1h0442-2','','','2023-11-09 08:53:54','2023-11-09 07:53:54','',0,'https://localhost/?p=13902',0,'post','',0),
  6940. (13903,1,'2023-09-26 09:19:33','2023-09-26 07:19:33','','1h17’40’’','','publish','open','open','','1h1740-2','','','2023-11-09 08:53:54','2023-11-09 07:53:54','',0,'https://localhost/?p=13903',0,'post','',0),
  6941. (13904,1,'2023-09-26 09:19:34','2023-09-26 07:19:34','','1h18’13’’','','publish','open','open','','1h1813-2','','','2023-11-09 08:53:54','2023-11-09 07:53:54','',0,'https://localhost/?p=13904',0,'post','',0),
  6942. (13905,1,'2023-09-26 13:47:23','2023-09-26 11:47:23','<b>Images\n---</b>\n\nNoir.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nAladin magic lamp, le Messie, The crusades, Bonaparte, frères de guerre, Salammbô, Méditerranée, E. Saïd, S. Luste Boulbina, M. Koldenitzky, Nous, les dernières vacances, Djamila, Voyage à Tunis, Collier perdu de la colombe, Kanchelli, Khalled abou Khalled, gare centrale, Ici et ailleurs, la saison des hommes, Alexandre Dumas, Muezzin, P Mizraki, Mendelssohn, A. Macke, Tamaout, Détention secrète','1h23’40','','inherit','closed','closed','','13857-autosave-v1','','','2023-09-26 13:47:23','2023-09-26 11:47:23','',13857,'https://localhost/?p=13905',0,'revision','',0),
  6943. (13907,1,'2023-09-26 14:08:36','2023-09-26 12:08:36','','02’55’’','','publish','closed','closed','','0255-3','','','2023-11-09 09:17:10','2023-11-09 08:17:10','',0,'https://localhost/?p=13907',0,'post','',0),
  6944. (13908,1,'2023-09-26 14:08:27','2023-09-26 12:08:27','','Brouillon créé le 26 September 2023 à 12h08','','inherit','closed','closed','','13907-revision-v1','','','2023-09-26 14:08:27','2023-09-26 12:08:27','',13907,'https://localhost/?p=13908',0,'revision','',0),
  6945. (13909,1,'2023-09-26 14:08:36','2023-09-26 12:08:36','','02’55’’','','inherit','closed','closed','','13907-revision-v1','','','2023-09-26 14:08:36','2023-09-26 12:08:36','',13907,'https://localhost/?p=13909',0,'revision','',0),
  6946. (13910,1,'2023-09-26 14:09:01','2023-09-26 12:09:01','','51’57’’','','publish','closed','closed','','5157-3','','','2023-09-26 14:09:02','2023-09-26 12:09:02','',0,'https://localhost/?p=13910',0,'post','',0),
  6947. (13911,1,'2023-09-26 14:08:52','2023-09-26 12:08:52','','Brouillon créé le 26 September 2023 à 12h08','','inherit','closed','closed','','13910-revision-v1','','','2023-09-26 14:08:52','2023-09-26 12:08:52','',13910,'https://localhost/?p=13911',0,'revision','',0),
  6948. (13912,1,'2023-09-26 14:09:01','2023-09-26 12:09:01','','51’57’’','','inherit','closed','closed','','13910-revision-v1','','','2023-09-26 14:09:01','2023-09-26 12:09:01','',13910,'https://localhost/?p=13912',0,'revision','',0),
  6949. (13913,1,'2023-09-26 18:41:45','0000-00-00 00:00:00','','Accueil','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13913',1,'nav_menu_item','',0),
  6950. (13914,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13914',1,'nav_menu_item','',0),
  6951. (13915,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13915',1,'nav_menu_item','',0),
  6952. (13916,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13916',1,'nav_menu_item','',0),
  6953. (13917,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13917',1,'nav_menu_item','',0),
  6954. (13918,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13918',1,'nav_menu_item','',0),
  6955. (13919,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13919',1,'nav_menu_item','',0),
  6956. (13920,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13920',1,'nav_menu_item','',0),
  6957. (13921,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13921',1,'nav_menu_item','',0),
  6958. (13922,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13922',1,'nav_menu_item','',0),
  6959. (13923,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13923',1,'nav_menu_item','',0),
  6960. (13924,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13924',1,'nav_menu_item','',0),
  6961. (13925,1,'2023-09-26 18:41:45','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-09-26 18:41:45','0000-00-00 00:00:00','',0,'https://localhost/?p=13925',1,'nav_menu_item','',0),
  6962. (13926,1,'2023-10-10 10:02:48','2023-10-10 08:02:48','<b>Images\n---</b>\n\nFemme se posant la main sur la tête.\nLe silence de la mer (1949), Jean-Pierre Melville.\n\nEn alternance : canon visant une voiture.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nQu\'arrive-t-il toujours mon ami ?\n\n<b>Bande Son\n---</b>\n\nPiano.\n\n<b>Écrits\n---</b>','13’31','','inherit','closed','closed','','13308-revision-v1','','','2023-10-10 10:02:48','2023-10-10 08:02:48','',13308,'https://localhost/?p=13926',0,'revision','',0),
  6963. (13927,4,'2023-10-23 06:56:21','2023-10-23 04:56:21','<b>Images\n---</b>\n\nLogo de la société de distribution Kino Lorber.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’02','','inherit','open','open','','','','','2023-10-23 06:56:11','2023-10-23 04:56:11','',13193,'https://localhost/?p=13927',0,'revision','',0),
  6964. (13931,1,'2023-10-23 10:58:41','2023-10-23 08:58:41','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sit amet blandit lorem. Donec luctus finibus metus cursus imperdiet. Etiam faucibus nibh varius velit eleifend tincidunt at in massa. Nam congue vestibulum posuere. Morbi molestie vel mi non imperdiet. Nulla interdum, neque in eleifend consequat, lectus augue pulvinar felis, vel dapibus velit nisl quis urna. Aenean pharetra faucibus metus. Sed et eros eros. Duis vitae eleifend felis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer mattis facilisis tortor nec molestie.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quisque in suscipit nunc, nec tempor urna. Nam posuere pellentesque gravida. Donec elementum arcu vel pretium euismod. Vivamus congue ullamcorper augue, quis condimentum felis blandit eget. Nunc egestas malesuada metus, eu condimentum ex convallis et. Cras ligula ante, egestas cursus finibus eu, porta nec ex. Praesent quis volutpat mi, vel tempus enim. Duis luctus nunc ligula, non faucibus odio aliquet eget. Suspendisse lobortis augue sed tempor fermentum. Nulla dapibus tristique nunc vel dapibus. Sed suscipit maximus arcu, in vulputate dui iaculis a. Integer ultrices ipsum non lobortis lacinia. Curabitur porta facilisis maximus. Proin eleifend mi a orci iaculis, eget lobortis urna pharetra. Aenean pharetra hendrerit magna, in dapibus justo ornare vel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quisque nunc diam, consequat sit amet nibh et, venenatis cursus nibh. Vivamus pellentesque tellus eu consequat scelerisque. Quisque blandit tellus non leo egestas, at tincidunt nisl tincidunt. Quisque vitae ligula risus. Nam fermentum quam feugiat tortor bibendum ultricies. Maecenas sagittis orci metus, ac malesuada purus consequat eget. Sed ac consectetur nisl, a iaculis augue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Nullam velit nibh, facilisis non est eu, luctus finibus felis. Phasellus iaculis pellentesque mi et commodo. Aliquam sapien lorem, ultrices sit amet varius sed, faucibus vel mauris. Donec ac tristique lorem. Aenean cursus, erat sed blandit volutpat, lorem velit consectetur odio, quis iaculis libero justo vel velit. Sed non nibh eu augue molestie aliquet nec vitae augue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pellentesque et posuere nisl. Etiam at tellus vel nisi suscipit mattis efficitur ut justo. Aliquam tempor aliquam enim vel molestie. Sed elementum odio erat, nec dictum turpis viverra non. Cras id nisi sed odio dignissim aliquet. Duis est mi, accumsan ac molestie at, porta nec augue. Aliquam dapibus mattis aliquet. Integer sed libero massa. Duis pharetra nunc vitae ornare aliquet. Fusce a finibus felis, eget facilisis quam. Sed convallis nisl a gravida dictum. Pellentesque ut massa nisl. Sed blandit mi nisi, nec pretium ex dapibus a. Aenean pellentesque tellus sed fermentum bibendum. Etiam nec libero eget orci iaculis facilisis nec ac elit. Fusce blandit velit vel cursus porta.</p>\n<!-- /wp:paragraph -->','Politique de confidentialité','','trash','closed','closed','','politique-de-confidentialite-2__trashed','','','2023-10-23 11:50:09','2023-10-23 09:50:09','',0,'https://localhost/?page_id=13931',0,'page','',0),
  6965. (13932,1,'2023-10-23 10:58:41','2023-10-23 08:58:41','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sit amet blandit lorem. Donec luctus finibus metus cursus imperdiet. Etiam faucibus nibh varius velit eleifend tincidunt at in massa. Nam congue vestibulum posuere. Morbi molestie vel mi non imperdiet. Nulla interdum, neque in eleifend consequat, lectus augue pulvinar felis, vel dapibus velit nisl quis urna. Aenean pharetra faucibus metus. Sed et eros eros. Duis vitae eleifend felis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer mattis facilisis tortor nec molestie.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quisque in suscipit nunc, nec tempor urna. Nam posuere pellentesque gravida. Donec elementum arcu vel pretium euismod. Vivamus congue ullamcorper augue, quis condimentum felis blandit eget. Nunc egestas malesuada metus, eu condimentum ex convallis et. Cras ligula ante, egestas cursus finibus eu, porta nec ex. Praesent quis volutpat mi, vel tempus enim. Duis luctus nunc ligula, non faucibus odio aliquet eget. Suspendisse lobortis augue sed tempor fermentum. Nulla dapibus tristique nunc vel dapibus. Sed suscipit maximus arcu, in vulputate dui iaculis a. Integer ultrices ipsum non lobortis lacinia. Curabitur porta facilisis maximus. Proin eleifend mi a orci iaculis, eget lobortis urna pharetra. Aenean pharetra hendrerit magna, in dapibus justo ornare vel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quisque nunc diam, consequat sit amet nibh et, venenatis cursus nibh. Vivamus pellentesque tellus eu consequat scelerisque. Quisque blandit tellus non leo egestas, at tincidunt nisl tincidunt. Quisque vitae ligula risus. Nam fermentum quam feugiat tortor bibendum ultricies. Maecenas sagittis orci metus, ac malesuada purus consequat eget. Sed ac consectetur nisl, a iaculis augue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Nullam velit nibh, facilisis non est eu, luctus finibus felis. Phasellus iaculis pellentesque mi et commodo. Aliquam sapien lorem, ultrices sit amet varius sed, faucibus vel mauris. Donec ac tristique lorem. Aenean cursus, erat sed blandit volutpat, lorem velit consectetur odio, quis iaculis libero justo vel velit. Sed non nibh eu augue molestie aliquet nec vitae augue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pellentesque et posuere nisl. Etiam at tellus vel nisi suscipit mattis efficitur ut justo. Aliquam tempor aliquam enim vel molestie. Sed elementum odio erat, nec dictum turpis viverra non. Cras id nisi sed odio dignissim aliquet. Duis est mi, accumsan ac molestie at, porta nec augue. Aliquam dapibus mattis aliquet. Integer sed libero massa. Duis pharetra nunc vitae ornare aliquet. Fusce a finibus felis, eget facilisis quam. Sed convallis nisl a gravida dictum. Pellentesque ut massa nisl. Sed blandit mi nisi, nec pretium ex dapibus a. Aenean pellentesque tellus sed fermentum bibendum. Etiam nec libero eget orci iaculis facilisis nec ac elit. Fusce blandit velit vel cursus porta.</p>\n<!-- /wp:paragraph -->','Politique de confidentialité','','inherit','closed','closed','','13931-revision-v1','','','2023-10-23 10:58:41','2023-10-23 08:58:41','',13931,'https://localhost/?p=13932',0,'revision','',0),
  6966. (13933,1,'2023-10-23 11:43:49','2023-10-23 09:43:49','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Qui sommes-nous&nbsp;?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>L’adresse de notre site est&nbsp;: https://localhost.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Commentaires</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici&nbsp;: https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Médias</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez «&nbsp;Se souvenir de moi&nbsp;», votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Contenu embarqué depuis d’autres sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Utilisation et transmission de vos données personnelles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Durées de stockage de vos données</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Les droits que vous avez sur vos données</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Où vos données sont envoyées</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Texte suggéré&nbsp;: </strong>Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.</p>\n<!-- /wp:paragraph -->','Politique de confidentialité','','inherit','closed','closed','','3-revision-v1','','','2023-10-23 11:43:49','2023-10-23 09:43:49','',3,'https://localhost/?p=13933',0,'revision','',0),
  6967. (13940,1,'2023-10-23 19:56:10','2023-10-23 17:56:10','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse rhoncus hendrerit convallis. Sed pellentesque ante mi, sit amet venenatis sem rutrum sed. Nullam eleifend bibendum nibh sit amet cursus. Phasellus et nibh sed libero bibendum suscipit. Nulla sodales nisi ipsum, quis sollicitudin nunc molestie at. Aenean commodo sodales elit, vel feugiat mauris vehicula in. Ut nec augue eget elit scelerisque mattis. Duis quam nunc, eleifend at justo ac, imperdiet sollicitudin leo. Cras vel dolor et lectus scelerisque scelerisque. Ut pulvinar iaculis ultricies. Etiam tempor purus ac arcu vulputate, eget blandit velit elementum. Duis ante leo, fringilla nec pellentesque nec, viverra sed quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In elementum libero eu quam finibus interdum. In interdum ex at velit dignissim, vel luctus nulla cursus. Ut sodales dui ac blandit consectetur. Aenean porttitor velit non nibh mollis, porta semper turpis consectetur. Sed a dignissim sem, eget varius purus. Nullam mollis vitae nulla id eleifend. Cras at hendrerit est, sed pretium tortor. Donec vitae odio sit amet sapien ultrices ullamcorper. Integer fringilla consequat nisl, sed dignissim purus cursus et.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In hac habitasse platea dictumst. In mattis turpis odio, id fermentum justo scelerisque eget. Sed nisi justo, dictum eu euismod eget, porttitor a ligula. Nunc mollis molestie quam, sit amet mollis nisi aliquam dictum. In dignissim sapien libero, quis faucibus erat laoreet id. Morbi aliquam placerat nulla eu vehicula. Duis elementum magna lorem, a aliquet mi feugiat sed. Ut est metus, consequat at volutpat vitae, finibus ut enim. Duis porttitor orci non volutpat feugiat. Vivamus tincidunt metus vel eros malesuada, ut luctus nulla commodo. In in sollicitudin odio. Donec in est ut tortor pharetra elementum eget non risus.</p>\n<!-- /wp:paragraph -->','Explication édition','','publish','closed','closed','','explication-edition','','','2023-10-23 19:56:11','2023-10-23 17:56:11','',0,'https://localhost/?page_id=13940',0,'page','',0),
  6968. (13941,1,'2023-10-23 19:56:10','2023-10-23 17:56:10','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse rhoncus hendrerit convallis. Sed pellentesque ante mi, sit amet venenatis sem rutrum sed. Nullam eleifend bibendum nibh sit amet cursus. Phasellus et nibh sed libero bibendum suscipit. Nulla sodales nisi ipsum, quis sollicitudin nunc molestie at. Aenean commodo sodales elit, vel feugiat mauris vehicula in. Ut nec augue eget elit scelerisque mattis. Duis quam nunc, eleifend at justo ac, imperdiet sollicitudin leo. Cras vel dolor et lectus scelerisque scelerisque. Ut pulvinar iaculis ultricies. Etiam tempor purus ac arcu vulputate, eget blandit velit elementum. Duis ante leo, fringilla nec pellentesque nec, viverra sed quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In elementum libero eu quam finibus interdum. In interdum ex at velit dignissim, vel luctus nulla cursus. Ut sodales dui ac blandit consectetur. Aenean porttitor velit non nibh mollis, porta semper turpis consectetur. Sed a dignissim sem, eget varius purus. Nullam mollis vitae nulla id eleifend. Cras at hendrerit est, sed pretium tortor. Donec vitae odio sit amet sapien ultrices ullamcorper. Integer fringilla consequat nisl, sed dignissim purus cursus et.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In hac habitasse platea dictumst. In mattis turpis odio, id fermentum justo scelerisque eget. Sed nisi justo, dictum eu euismod eget, porttitor a ligula. Nunc mollis molestie quam, sit amet mollis nisi aliquam dictum. In dignissim sapien libero, quis faucibus erat laoreet id. Morbi aliquam placerat nulla eu vehicula. Duis elementum magna lorem, a aliquet mi feugiat sed. Ut est metus, consequat at volutpat vitae, finibus ut enim. Duis porttitor orci non volutpat feugiat. Vivamus tincidunt metus vel eros malesuada, ut luctus nulla commodo. In in sollicitudin odio. Donec in est ut tortor pharetra elementum eget non risus.</p>\n<!-- /wp:paragraph -->','Explication édition','','inherit','closed','closed','','13940-revision-v1','','','2023-10-23 19:56:10','2023-10-23 17:56:10','',13940,'https://localhost/?p=13941',0,'revision','',0),
  6969. (13943,1,'2023-10-24 05:57:09','2023-10-24 03:57:09','<!-- wp:paragraph -->\n<p>godard, christ, noir, les oubliés, flamme</p>\n<!-- /wp:paragraph -->','Mots clés','','publish','closed','closed','','mots-cles','','','2023-10-24 07:28:59','2023-10-24 05:28:59','',0,'https://localhost/?page_id=13943',0,'page','',0),
  6970. (13944,1,'2023-10-24 05:57:09','2023-10-24 03:57:09','<!-- wp:paragraph -->\n<p>lorem, ipsum, dolor, sit amet, consectetur, adipiscing, elit</p>\n<!-- /wp:paragraph -->','Mots clés','','inherit','closed','closed','','13943-revision-v1','','','2023-10-24 05:57:09','2023-10-24 03:57:09','',13943,'https://localhost/?p=13944',0,'revision','',0),
  6971. (13946,1,'2023-10-24 07:28:35','2023-10-24 05:28:35','<!-- wp:paragraph -->\n<p>godard, christ, noir, les oubliés, flamme</p>\n<!-- /wp:paragraph -->','Mots clés','','inherit','closed','closed','','13943-revision-v1','','','2023-10-24 07:28:35','2023-10-24 05:28:35','',13943,'https://localhost/?p=13946',0,'revision','',0),
  6972. (13947,1,'2023-10-25 07:59:12','2023-10-25 05:59:12','<!-- wp:paragraph -->\n<p>Dans le cadre de ses recherches,<em>&nbsp;</em>Letizia Lusuardi, doctorante à l’ED 267 Arts&amp;Médias (UMR THALIM) de l’Université Sorbonne-Nouvelle à Paris et à l’Université IULM à Milan, a réalisé en 2023 un travail d’identification et de partition de <em>Le Livre d’Image </em>(2018), dernier&nbsp;film de Jean-Luc Godard, composé de citations d’archives (<em>found-footage</em>) provenant de films, de peintures, de programmes télévisés, de photographies, de livres ou de compositions musicales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La partition, découpant le film en séquences temporelles, prend la forme d’un tableau&nbsp;où chaque moment du film est décrit selon quatre catégories: les images, les écrits, les pistes musicales et enfin les voix off. Ce modèle est repris du travail sur&nbsp;<em>Histoire(s) du cinéma</em>&nbsp;(1989-99) réalisé et publié sur un site internet en 2006 en&nbsp;<em>open access</em>&nbsp;par Céline Scemama, en collaboration avec l\'Université Panthéon Sorbonne.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Outre l’accès libre à la partition du film, cette publication sur site internet permet aux utilisateurs référencés de compléter le travail d\'identification, ou de suggérer des modifications (environ 80% des œuvres citées sont pour l’instant identifiées). Ceci répond à une volonté d\'encourager&nbsp;les pratiques d\'interaction et de science participative.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ce site, développé selon les principes F.A.I.R., est hébergé par la TGIR huma-Num, dans un but de partage et de pérennisation des données de la recherche. Il a été développé en collaboration avec Amal Guha, ingénieur de recherches CNRS, Philippe Agbati, étudiant en informatique à l’IUT Paris Rives de Seine de l’Université Paris-Descartes et stagiaire auprès du laboratoire THALIM, et Valentin Le Moign, pour le collectif Figures Libres, en charge de la conception graphique et du suivi de développement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ce projet a pu être réalisé grâce au financement reçu en 2023 à la suite d\'un appel à projets en&nbsp;<em>Humanités Numériques - Science &amp; Société</em>&nbsp;de la Direction de la Recherche, de la Valorisation, et des Etudes Doctorales (DiRVED) de l’Université Sorbonne-Nouvelle, et grâce au soutien de l’unité mixte de recherche 7172 THALIM (Théorie et histoire des arts et des littératures de la modernité).</p>\n<!-- /wp:paragraph -->','Content about popup','','inherit','closed','closed','','9962-revision-v1','','','2023-10-25 07:59:12','2023-10-25 05:59:12','',9962,'https://localhost/?p=13947',0,'revision','',0),
  6973. (13949,5,'2023-10-25 11:49:18','2023-10-25 09:49:18','<b>Images\n---</b>\n\nMain écrivant au tableau « Un ruisseau d’ombres / A brook of shadows ».\n<em>Closed Vision</em> (1953), Marc\'O.\n\n<b>Voix Off et In\n---</b>\n\nEt la vraie condition de l’homme c’est de penser avec ses mains. (Jean-Luc Godard).\n<em>Penser avec les mains</em> (1936), Denis de Rougemont.\n\n<b>Bande Son\n---</b>\n\nRévision test\n\nId.\n\n<b>Écrits\n---</b>','01’04','','pending','open','open','','','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13949',0,'post','pending-revision',13202),
  6974. (13950,5,'2023-10-25 11:49:33','2023-10-25 09:49:33','<b>Images\n---</b>\n\nMain écrivant au tableau « Un ruisseau d’ombres / A brook of shadows ».\n<em>Closed Vision</em> (1953), Marc\'O.\n\n<b>Voix Off et In\n---</b>\n\nEt la vraie condition de l’homme c’est de penser avec ses mains. (Jean-Luc Godard).\n<em>Penser avec les mains</em> (1936), Denis de Rougemont.\n\n<b>Bande Son\n---</b>\n\nRévision test\n\nId.\n\n<b>Écrits\n---</b>','01’04','','inherit','closed','closed','','13949-revision-v1','','','2023-10-25 11:49:33','2023-10-25 09:49:33','',13949,'https://localhost/?p=13950',0,'revision','',0),
  6975. (13951,6,'2023-10-25 11:50:35','0000-00-00 00:00:00','','Brouillon auto','','auto-draft','open','open','','','','','2023-10-25 11:50:35','0000-00-00 00:00:00','',0,'https://localhost/?p=13951',0,'post','',0),
  6976. (13952,6,'2023-10-26 10:19:58','2023-10-26 08:19:58','<b>Images\n---</b>\n\nSurexposé et saturé : pellicule entraînée par une bobine en rotation.\n<em>Notre caméra analytique</em> (2015), Yervant Gianikian et Angela Ricci Lucchi.\n\n<b>Voix Off et In\n---</b>\n\nScott Walker in 2006, Orpheus has returned from the underworld. What happened on his long long journey ? Who is this man ?\n<em>Scott Walker : 30th Century Man</em> (2007), Stephen Kijak.\n\n<b>Bande Son\n---</b>\n\n<em>Cossacks Are</em> (2006), Scott Walker.\n\n<b>Écrits\n---</b>\n\nje vais rajouter un <em>contenu </em>','02’11','','inherit','open','open','','','','','2023-10-26 10:13:37','2023-10-26 08:13:37','',13215,'https://localhost/?p=13952',0,'revision','',0),
  6977. (13954,1,'2023-11-07 09:18:46','2023-11-07 08:18:46','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nC’est que pour ne pas faire caca \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','02’31','','draft','open','open','','','','','2023-11-09 08:53:15','2023-11-09 07:53:15','',0,'https://localhost/?p=13954',0,'post','draft-revision',13216),
  6978. (13955,1,'2023-11-07 09:19:02','2023-11-07 08:19:02','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nLes maîtres du m\nDevraient se méf\nPrécisément parc\n','0’26','','draft','open','open','','','','','2023-11-09 08:53:14','2023-11-09 07:53:14','',0,'https://localhost/?p=13955',0,'post','draft-revision',13198),
  6979. (13965,1,'2023-11-09 08:33:15','2023-11-09 07:33:15','<b>Images\n---</b>\n\nSurexposé et saturé : pellicule entraînée par une bobine en rotation.\n<em>Notre caméra analytique</em> (2015), Yervant Gianikian et Angela Ricci Lucchi.\n\n<b>Voix Off et In\n---</b>\n\nScott Walker in 2006, Orpheus has returned from the underworld. What happened on his long long journey ? Who is this man ?\n<em>Scott Walker : 30th Century Man</em> (2007), Stephen Kijak.\n\n<b>Bande Son\n---</b>\n\n<em>Cossacks Are</em> (2006), Scott Walker.\n\n<b>Écrits\n---</b>','02’11','','inherit','closed','closed','','13215-revision-v1','','','2023-11-09 08:33:15','2023-11-09 07:33:15','',13215,'https://localhost/?p=13965',0,'revision','',0),
  6980. (13966,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBrusquement : silence.\n\n<b>Écrits\n---</b>\n\nWild Bunch\nVentes internationales\n','1h28’08','','inherit','closed','closed','','13190-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13190,'https://localhost/?p=13966',0,'revision','',0),
  6981. (13967,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nLogos des distributeurs :\nArte, RTS, CINEFORUM, Loterie Romande, FONDATION JAN MICHALSKI POUR L\'ÉCRITURE ET LA LITTÉRATURE,\nSNAP ORAZ VE REIN,\nConfédération suisse, Département fédéral de l\'intérieur DFI, Office fédéral de la culture OFC\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n<b>Écrits\n---</b>\n\n','1h28’15','','inherit','closed','closed','','13191-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13191,'https://localhost/?p=13967',0,'revision','',0),
  6982. (13968,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n\n<b>Écrits\n---</b>\n\n\n\n','0’00','','inherit','closed','closed','','13192-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13192,'https://localhost/?p=13968',0,'revision','',0),
  6983. (13969,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nLogo de la société de distribution Kino Lorber.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’02','','inherit','closed','closed','','13193-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13193,'https://localhost/?p=13969',0,'revision','',0),
  6984. (13970,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n\n<b>Écrits\n---</b>\n\n\n\n','0’10','','inherit','closed','closed','','13194-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13194,'https://localhost/?p=13970',0,'revision','',0),
  6985. (13971,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nPalme d\'Or avec inscrit en-dessous « Festival de Cannes 2018 Spécial ». \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nBip sonore \n\n\n<b>Écrits\n---</b>\n\n\n\n','0\'13','','inherit','closed','closed','','13195-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13195,'https://localhost/?p=13971',0,'revision','',0),
  6986. (13972,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','0’18','','inherit','closed','closed','','13196-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13196,'https://localhost/?p=13972',0,'revision','',0),
  6987. (13973,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nDétail de la main.\n<em>San Giovanni Battista</em> (1508 - 1513), Léonard de Vinci.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','0’23','','inherit','closed','closed','','13197-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13197,'https://localhost/?p=13973',0,'revision','',0),
  6988. (13974,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nLes maîtres du m\nDevraient se méf\nPrécisément parc\n','0’26','','inherit','closed','closed','','13955-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13955,'https://localhost/?p=13974',0,'revision','',0),
  6989. (13975,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\ns du monde\nSe méfier de Bécassine,\nParce qu’elle se tait.\n<em>Les enfants humiliés</em>, Georges Bernanos (1949).\n','0’30','','inherit','closed','closed','','13199-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13199,'https://localhost/?p=13975',0,'revision','',0),
  6990. (13976,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','0’35','','inherit','closed','closed','','13200-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13200,'https://localhost/?p=13976',0,'revision','',0),
  6991. (13977,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nMains de Jean-Luc Godard, au travail à la table de montage, avec une pellicule.\n<em>King Lear</em> (1987), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl y a les 5 doigts, les 5 sens, les 5 parties du monde, oui les 5 doigts de la fée. Mais tous ensemble ils composent la main.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','0’41','','inherit','closed','closed','','13201-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13201,'https://localhost/?p=13977',0,'revision','',0),
  6992. (13978,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nDétail de <em>La Main</em>, Alberto Giacometti (1947) allant vers le haut.\n<em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et début du <em>Quintette avec piano, Op. 18 - I.</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nL’image\n','01’17','','inherit','closed','closed','','13203-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13203,'https://localhost/?p=13978',0,'revision','',0),
  6993. (13979,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nMains de personne enchaînée allant vers le bas et touchant le sol.\n<em>Le Procès de Jeanne d’Arc</em> (1961), Robert Bresson. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nviendra\n','01’23','','inherit','closed','closed','','13204-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13204,'https://localhost/?p=13979',0,'revision','',0),
  6994. (13980,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nMain levée vers le haut.\n<em>Gare Centrale</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nOh ! Temps\n','01’29','','inherit','closed','closed','','13205-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13205,'https://localhost/?p=13980',0,'revision','',0),
  6995. (13981,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nPersonne coupant en deux les yeux d’une dame avec un rasoir.\n<em>Un chien andalou</em> (1929), Luis Bunuel.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','01’40','','inherit','closed','closed','','13206-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13206,'https://localhost/?p=13981',0,'revision','',0),
  6996. (13982,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nArchive s et morale.\nPhrase citée dans <em>Histoire (s) du cinéma</em> (1988 - 98), Jean-Luc Godard.\n','01’43','','inherit','closed','closed','','13207-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13207,'https://localhost/?p=13982',0,'revision','',0),
  6997. (13983,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nSaturé : maisons avec des arbres. Détail d’un tableau d’André Derain.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Quintette avec piano, Op. 18 - I</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nCasa Azul Films\n','01’48','','inherit','closed','closed','','13208-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13208,'https://localhost/?p=13983',0,'revision','',0),
  6998. (13984,1,'2023-11-09 08:49:51','2023-11-09 07:49:51','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nEcran noir production \n \n En surimpression, écrit à la main : \n Mitra Farahani (présidente de la société). \n\n','01’53','','inherit','closed','closed','','13209-revision-v1','','','2023-11-09 08:49:51','2023-11-09 07:49:51','',13209,'https://localhost/?p=13984',0,'revision','',0),
  6999. (13985,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nSaturé et surexposé : fragments de pellicule sur fond blanc.\n<em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','01’55','','inherit','closed','closed','','13210-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13210,'https://localhost/?p=13985',0,'revision','',0),
  7000. (13986,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nTableau avec femmes dans la rue entre des maisons. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','01’58','','inherit','closed','closed','','13211-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13211,'https://localhost/?p=13986',0,'revision','',0),
  7001. (13987,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\n« Le Livre d’ » écrit à la main à la peinture à l’huile rouge, et « image » écrit en blanc sur fond noir et bleu foncé, toujours coloré à la peinture à l’huile, avec une applique de couleur épaisse et très visible.\n\n\n<b>Voix Off et In\n---</b>\n\nBon, va me chercher les livres. On va jeter un coup d\'œil.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\nC\'est que pour ne pas faire caca, il aurait fallu. Extrait de <em>Pour en finir avec le jugement de Dieu</em> (1948), Antonin Artaud.\n','02’00','','inherit','closed','closed','','13212-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13212,'https://localhost/?p=13987',0,'revision','',0),
  7002. (13988,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','02’06','','inherit','closed','closed','','13213-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13213,'https://localhost/?p=13988',0,'revision','',0),
  7003. (13989,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nImage et Parole \n\n','02’08','','inherit','closed','closed','','13214-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13214,'https://localhost/?p=13989',0,'revision','',0),
  7004. (13990,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nC’est que pour ne pas faire caca \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','02’31','','inherit','closed','closed','','13954-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13954,'https://localhost/?p=13990',0,'revision','',0),
  7005. (13991,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nHomme (avec une casquette de marin) visant dans une caméra (probablement photographie de Friedrich Wilhelm Murnau).\n<em>Histoire (s) du cinéma, 1b</em> (1988 - 98) Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nil aurait fallu qu\'on.\n<em>Pour en finir avec le jugement de Dieu</em> (1948), Antonin Artaud.\n\n\n<b>Bande Son\n---</b>\n\n<em>Cossacks Are</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\nTabou\n','02’34','','inherit','closed','closed','','13217-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13217,'https://localhost/?p=13991',0,'revision','',0),
  7006. (13992,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nCouverture du livre de C. F. Ramuz, <em>Les signes parmi nous.</em>\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','02’38','','inherit','closed','closed','','13218-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13218,'https://localhost/?p=13992',0,'revision','',0),
  7007. (13993,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Cue</em>, Scott Walker (2006).\n\n\n<b>Écrits\n---</b>\n\nLes prophètes\n','02’42','','inherit','closed','closed','','13219-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13219,'https://localhost/?p=13993',0,'revision','',0),
  7008. (13994,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nHomme sautant une épée à la main sur un autre homme.\n<em>Hamlet</em> (1964), Grigori Kozintsev.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','02’46','','inherit','closed','closed','','13220-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13220,'https://localhost/?p=13994',0,'revision','',0),
  7009. (13995,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','02’47','','inherit','closed','closed','','13221-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13221,'https://localhost/?p=13995',0,'revision','',0),
  7010. (13996,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nHomme en assassinant un autre à coups d’épée, puis sautant d’un mur, imitant un oiseau.\n<em>Hamlet</em> (1948), Laurence Olivier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCri du coq. (Logo de Pathé).\n\n\n<b>Écrits\n---</b>\n\n','02’48','','inherit','closed','closed','','13222-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13222,'https://localhost/?p=13996',0,'revision','',0),
  7011. (13997,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nPetite enfant à la tête levée et aux mains ouvertes.\n<em>Miracle en Alabama</em> (1962), Arthur Penn. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','02’51','','inherit','closed','closed','','13223-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13223,'https://localhost/?p=13997',0,'revision','',0),
  7012. (13998,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - IV. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n1\nREMAKES\n','02’55','','inherit','closed','closed','','13224-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13224,'https://localhost/?p=13998',0,'revision','',0),
  7013. (13999,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nExplosion d’une bombe atomique. \n\n\n<b>Voix Off et In\n---</b>\n\nécrit dans une nuit d’orage \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','03’00','','inherit','closed','closed','','13225-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13225,'https://localhost/?p=13999',0,'revision','',0),
  7014. (14000,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nFemme aidant un homme à s’éloigner d’une maison.\n<em>En quatrième vitesse [Kiss Me Deadly]</em> (1955), Robert Aldrich.\n\n\n<b>Voix Off et In\n---</b>\n\nles affaires spéciales de police marchent de front avec\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','03’04','','inherit','closed','closed','','13226-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13226,'https://localhost/?p=14000',0,'revision','',0),
  7015. (14001,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nLogo représentant un atome. \n\n\n<b>Voix Off et In\n---</b>\n\nles mesures les plus générales de la politique. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','03’08','','inherit','closed','closed','','13227-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13227,'https://localhost/?p=14001',0,'revision','',0),
  7016. (14002,1,'2023-11-09 08:49:52','2023-11-09 07:49:52','<b>Images\n---</b>\n\nFemme aidant un homme à s’éloigner d’une maison sur une plage.\n<em>En quatrième vitesse [Kiss Me Deadly]</em> (1955), Robert Aldrich.\n\n\n<b>Voix Off et In\n---</b>\n\nLes fautes morales s’y confondent avec les crimes d’État.\n<em>Histoire de la Révolution française</em> (1893 - 98), Jules Michelet.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','03’12','','inherit','closed','closed','','13228-revision-v1','','','2023-11-09 08:49:52','2023-11-09 07:49:52','',13228,'https://localhost/?p=14002',0,'revision','',0),
  7017. (14003,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nVassili Semionovitch Grossman écrivant au tableau. \n\n\n<b>Voix Off et In\n---</b>\n\nC’est évidemment là, et évidemment le coloris aussi que les peintres en tiraient. La forme, le dessin, les gros axes, les cadrages, les directions, le mouvement (Pierre Guyotat). \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','03’17','','inherit','closed','closed','','13229-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13229,'https://localhost/?p=14003',0,'revision','',0),
  7018. (14004,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nOn accomplirait l’acte rédempteur, si l’on pourrait conduire la critique jusqu’à la mort volontaire, sagement désespérée, de notre penser / parler.\n<em>Le langage</em> (1906), Fritz Mauthner.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','03’24','','inherit','closed','closed','','13230-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13230,'https://localhost/?p=14004',0,'revision','',0),
  7019. (14005,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n1 Remakes\n','03’37','','inherit','closed','closed','','13231-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13231,'https://localhost/?p=14005',0,'revision','',0),
  7020. (14006,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nFemmes sortant d’un taxi ouvert par un concierge, homme lisant un papier.\n<em>Allemagne neuf zéro</em> (1997), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\ngarder l’apparence de la vie\n(Jean-Luc Godard).\n\nComme le cinéma aussi, il faut que tout soit,\n\n\n<b>Bande Son\n---</b>\n\nId. e <em>Cue</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\n','03’42','','inherit','closed','closed','','13232-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13232,'https://localhost/?p=14006',0,'revision','',0),
  7021. (14007,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nAu ralenti, et plus tard accéléré : deux dames accompagnées à une voiture par un concierge sous un parapluie.\n<em>Le dernier des hommes</em> (1924), Friedrich Wilhelm Murnau.\n\n\n<b>Voix Off et In\n---</b>\n\nil faut que tout parle. (Pierre Guyotat).\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis moteur de voiture, et pas sur le sol accompagnés de rires de femmes.\n<em>Mon histoire n’est pas encore écrite</em> (2017), Jacqueline Gozland.\n\n\n<b>Écrits\n---</b>\n\n','04’04','','inherit','closed','closed','','13233-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13233,'https://localhost/?p=14007',0,'revision','',0),
  7022. (14008,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','04’27','','inherit','closed','closed','','13234-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13234,'https://localhost/?p=14008',0,'revision','',0),
  7023. (14009,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Voix Off et In\n---</b>\n\nJohnny : Don’t go away.\nVienna : I haven’t moved.\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Écrits\n---</b>\n\n','04’29','','inherit','closed','closed','','13235-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13235,'https://localhost/?p=14009',0,'revision','',0),
  7024. (14010,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nJohnny : Tell me something nice. \n Vienna : Sure, what do you want to hear ? \n Johnny : Lie to me. Tell me all these years you’ve waited \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','04’36','','inherit','closed','closed','','13236-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13236,'https://localhost/?p=14010',0,'revision','',0),
  7025. (14011,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Voix Off et In\n---</b>\n\nVienna : All those years I’ve waited …\nJohnny : Tell me you would have died if I hadn’t come back.\nVienna : I would\'ve died if you hadn’t come back.\nJohnny : Tell me you still love me like I love you.\nVienna : I still …\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','04’48','','inherit','closed','closed','','13237-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13237,'https://localhost/?p=14011',0,'revision','',0),
  7026. (14012,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- Dites des mensonges. \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','05’05','','inherit','closed','closed','','13238-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13238,'https://localhost/?p=14012',0,'revision','',0),
  7027. (14013,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Le petit soldat</em> (1947), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nque vous n’êtes pas triste que je parte.\n- Je ne suis pas triste que vous partiez. Je ne suis pas amoureuse de vous. Je ne vous rejoindrai pas au Brésil, je ne vous embrasse pas tendrement.\n\n\n<b>Bande Son\n---</b>\n\nId. et piano.\n\n\n<b>Écrits\n---</b>\n\n','05’10','','inherit','closed','closed','','13239-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13239,'https://localhost/?p=14013',0,'revision','',0),
  7028. (14014,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nJe ne vous embrasse pas tendrement.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','05’38','','inherit','closed','closed','','13240-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13240,'https://localhost/?p=14014',0,'revision','',0),
  7029. (14015,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nHomme parlant avec une femme.\n<em>Le petit soldat</em> (1947), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','05’45','','inherit','closed','closed','','13241-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13241,'https://localhost/?p=14015',0,'revision','',0),
  7030. (14016,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','05’50','','inherit','closed','closed','','13242-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13242,'https://localhost/?p=14016',0,'revision','',0),
  7031. (14017,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nAdolescents faisant des exercices militaires sous la supervision de soldats.\n<em>Liban, guerres et hommes</em> (1975), Frédéric Laffont.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','05’55','','inherit','closed','closed','','13243-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13243,'https://localhost/?p=14017',0,'revision','',0),
  7032. (14018,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','05’59','','inherit','closed','closed','','13244-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13244,'https://localhost/?p=14018',0,'revision','',0),
  7033. (14019,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nAdolescents faisant des exercices militaires sous la supervision de soldats.\n<em>Liban, guerres et hommes</em> (1975), Frédéric Laffont.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','06’00','','inherit','closed','closed','','13245-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13245,'https://localhost/?p=14019',0,'revision','',0),
  7034. (14020,1,'2023-11-09 08:49:53','2023-11-09 07:49:53','<b>Images\n---</b>\n\nMilitaires en rang observés par un commandant.\n<em>Liban, guerres et hommes</em> (1975), Frédéric Laffont.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','06’03','','inherit','closed','closed','','13246-revision-v1','','','2023-11-09 08:49:53','2023-11-09 07:49:53','',13246,'https://localhost/?p=14020',0,'revision','',0),
  7035. (14021,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nJeunes gens marchant à la manière de chiens, entourés de soldats les nourrissant.\n<em>Salò o le centoventi giornate di Sodoma</em> (1976), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAboiements et halètements de chiens.\n\n\n<b>Écrits\n---</b>\n\n','06’07','','inherit','closed','closed','','13247-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13247,'https://localhost/?p=14021',0,'revision','',0),
  7036. (14022,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- Mangia, sù ! \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','06’17','','inherit','closed','closed','','13248-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13248,'https://localhost/?p=14022',0,'revision','',0),
  7037. (14023,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n1 Remakes \n\n','06’28','','inherit','closed','closed','','13249-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13249,'https://localhost/?p=14023',0,'revision','',0),
  7038. (14024,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nSoldats djihadistes tirant à la mitraillette.\n<em>Timbuktu</em> (2014), Abderrahmane Sissako.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nMitraillette.\n\n\n<b>Écrits\n---</b>\n\n','06’31','','inherit','closed','closed','','13250-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13250,'https://localhost/?p=14024',0,'revision','',0),
  7039. (14025,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nBlanc \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','06’33','','inherit','closed','closed','','13251-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13251,'https://localhost/?p=14025',0,'revision','',0),
  7040. (14026,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nSoldats djihadistes tirant à la mitraillette.\n<em>Timbuktu</em> (2014), Abderrahmane Sissako.\n\n<b>Voix Off et In\n---</b>\n\nBruit de manipulation d\'une arme.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','06’37','','inherit','closed','closed','','13252-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13252,'https://localhost/?p=14026',0,'revision','',0),
  7041. (14027,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nSoldats déplaçant des cadavres et soignant des femmes torturées.\n<em>Vrai faux passeport</em> (2006), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nLes américains s’efforcent de réanimer cette combattante\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Vrai faux passeport</em> (2006), Jean-Luc Godard.\n\n\n<b>Écrits\n---</b>\n\n','06’44','','inherit','closed','closed','','13253-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13253,'https://localhost/?p=14027',0,'revision','',0),
  7042. (14028,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','07’05','','inherit','closed','closed','','13254-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13254,'https://localhost/?p=14028',0,'revision','',0),
  7043. (14029,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nHélicoptère.\n<em>La Chute du faucon noir</em> (2001), Ridley Scott.\n\n\n<b>Voix Off et In\n---</b>\n\npour sans doute l’interroger. Qu’en tireront-ils ? (fois 2)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','07’08','','inherit','closed','closed','','13255-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13255,'https://localhost/?p=14029',0,'revision','',0),
  7044. (14030,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nSoldats déplaçant des cadavres et soignant des femmes torturées. <em>Vrai faux passeport</em> (2006), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nDes insultes, des chants communistes ou simplement des cris de douleur.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nPatrie\n','07’13','','inherit','closed','closed','','13256-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13256,'https://localhost/?p=14030',0,'revision','',0),
  7045. (14031,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nSoldat menaçant une femme et un enfant avec une carabine.\n<em>Les carabiniers</em> (1963), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nFaites la partir. Pas dans la cuisine. Mettez-vous sur la chaise ! Tournez-vous !\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','07’17','','inherit','closed','closed','','13257-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13257,'https://localhost/?p=14031',0,'revision','',0),
  7046. (14032,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','07’43','','inherit','closed','closed','','13258-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13258,'https://localhost/?p=14032',0,'revision','',0),
  7047. (14033,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nEnfant sur une pelouse écoutant de la musique. Homme apprenant à nager à une femme.\n<em>Les hommes les dimanches</em> (1930), Robert Siodmak et Edgar George Ulmer.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Les hommes les dimanches</em> (1930), Robert Siodmak et Edgar George Ulmer.\n\n<b>Écrits\n---</b>\n\n','07’44','','inherit','closed','closed','','13259-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13259,'https://localhost/?p=14033',0,'revision','',0),
  7048. (14034,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nDeux hommes avec un scooter suivant deux femmes qui se promenant dans la rue.\n<em>Blue jeans</em> (1957), Jacques Rozier.\n\n\n<b>Voix Off et In\n---</b>\n\nAlors on se promène ? Vous n’avez pas peur toutes seules ? Vous habitez chez vos parents ? Alors vous habitez chez papa et maman ?\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','07’51','','inherit','closed','closed','','13260-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13260,'https://localhost/?p=14034',0,'revision','',0),
  7049. (14035,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nChez papa et maman ? \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','08’09','','inherit','closed','closed','','13261-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13261,'https://localhost/?p=14035',0,'revision','',0),
  7050. (14036,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nAvion de guerre \n orné d’un dessin de dents. Documentaire de la guerre civile en Chine. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','08’12','','inherit','closed','closed','','13262-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13262,'https://localhost/?p=14036',0,'revision','',0),
  7051. (14037,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nRequin émergeant de l\'eau, la gueule grande ouverte.\n<em>Les dents de la mer</em> (1975), Steven Spielberg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','08’13','','inherit','closed','closed','','13263-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13263,'https://localhost/?p=14037',0,'revision','',0),
  7052. (14038,1,'2023-11-09 08:49:54','2023-11-09 07:49:54','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n1 \n REMAKES \n\n','08’14','','inherit','closed','closed','','13264-revision-v1','','','2023-11-09 08:49:54','2023-11-09 07:49:54','',13264,'https://localhost/?p=14038',0,'revision','',0),
  7053. (14039,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nEmpilement de cadavres.\n<em>Nuit et brouillard</em> (1956), Alain Resnais.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','08’16','','inherit','closed','closed','','13265-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13265,'https://localhost/?p=14039',0,'revision','',0),
  7054. (14040,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nHomme tuant un cheval.\n<em>Le sang des bêtes</em> (1949), Georges Franju,.\n\n\n<b>Voix Off et In\n---</b>\n\nIl est presque impossible d’abolir\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','08’19','','inherit','closed','closed','','13266-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13266,'https://localhost/?p=14040',0,'revision','',0),
  7055. (14041,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nla réciprocité entre les hommes.\nLa violence est une forme.\n<em>La violence et le sacré</em>, (1972), René Girard\n\n\n<b>Bande Son\n---</b>\n\nId. e <em>Cue</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\nL’une part la décision et\ndécision, c’est : se tenir\nêtre et le non-être @ et il y\nde l’être, le primat incor\n\n(Vladimir Ilitch Lénine).\n','08’24','','inherit','closed','closed','','13267-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13267,'https://localhost/?p=14041',0,'revision','',0),
  7056. (14042,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nHibou, fondu avec un homme battant des paupières et les frottant successivement.\n<em>La Grève</em> (1925), Sergueï Eisenstein. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Cue</em> (2006), Scott Walker.\n\n\n<b>Écrits\n---</b>\n\n','08’31','','inherit','closed','closed','','13268-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13268,'https://localhost/?p=14042',0,'revision','',0),
  7057. (14043,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','08’36','','inherit','closed','closed','','13269-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13269,'https://localhost/?p=14043',0,'revision','',0),
  7058. (14044,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nHommes essayant de prendre la fuite et se faisant tirer dessus. Certains meurent. Hommes lançant dans la mer des prisonniers attachés.\n<em>Paisà</em> (1946), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nAccadeva nell’inverno del 1944. All’inizio della primavera la guerra era finita.\n\n\n<b>Bande Son\n---</b>\n\nMitraillette, personnes tombant dans l\'eau.\n\n\n<b>Écrits\n---</b>\n\n','08’43','','inherit','closed','closed','','13270-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13270,'https://localhost/?p=14044',0,'revision','',0),
  7059. (14045,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nSurexposé : djihadistes tirant sur des hommes, et les lançant à la mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','09’06','','inherit','closed','closed','','13271-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13271,'https://localhost/?p=14045',0,'revision','',0),
  7060. (14046,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nSurexposé et saturé en tons rouges : mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','09’13','','inherit','closed','closed','','13272-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13272,'https://localhost/?p=14046',0,'revision','',0),
  7061. (14047,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nUn homme et une femme traversant en courant le corridor de Vasari à Florence.\n<em>Paisà</em> (1946), Roberto Rossellini.\n\nEn surimpression, <em>La belle et la bête</em> (1946), Jean Cocteau.\n\n\n<b>Voix Off et In\n---</b>\n\nS’il vous plaît (fois 7)\n\n\n<b>Bande Son\n---</b>\n\nRessac de vagues.\n\n\n<b>Écrits\n---</b>\n\n','09’15','','inherit','closed','closed','','13273-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13273,'https://localhost/?p=14047',0,'revision','',0),
  7062. (14048,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nDevenir immortelle ne vous intéresse vraiment pas ?\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nRIM (AK) ES\n','09’23','','inherit','closed','closed','','13274-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13274,'https://localhost/?p=14048',0,'revision','',0),
  7063. (14049,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nHomme se jettant à la mer pour sauver une femme voulant se suicider.\n<em>Vertigo</em> (1958), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\n- Immortelle, quoi ça sert ?\n- On m’a dit que tout le monde en avait envie.\n- Qu’est ce que je vais devenir si je meurs pas ? La vie va s’arrêter\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’27','','inherit','closed','closed','','13275-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13275,'https://localhost/?p=14049',0,'revision','',0),
  7064. (14050,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nje ne suis pas comme vous. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','09’44','','inherit','closed','closed','','13276-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13276,'https://localhost/?p=14050',0,'revision','',0),
  7065. (14051,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nSurexposé et au ralenti : homme transportant le corps d’une femme ayant risqué de se noyer.\n<em>Vertigo</em> (1958), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\n- Fière, et orgueilleuse avec ça.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’47','','inherit','closed','closed','','13277-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13277,'https://localhost/?p=14051',0,'revision','',0),
  7066. (14052,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nFemme à la plage et homme naigeant dans la mer.\n<em>Femme au corbeau</em> (1929), Frank Borzage.\n\n<b>Voix Off et In\n---</b>\n\n- Oui, fière, si je me compare.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’49','','inherit','closed','closed','','13278-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13278,'https://localhost/?p=14052',0,'revision','',0),
  7067. (14053,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nCaméraman assis sur une dolly.\n<em>Silence ! On tourne</em> (2001), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’56','','inherit','closed','closed','','13279-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13279,'https://localhost/?p=14053',0,'revision','',0),
  7068. (14054,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nVisage d’une femme.\n<em>L’Atalante</em> (1934), Jean Vigo, au ralenti et superposé à l’image d’un homme.\n\n\n<b>Voix Off et In\n---</b>\n\nEt humble, si je me considère.\n- Vous me l\'avez déjà dit.\n- Oui, mais je ne savais pas que c\'était vous. Je croyais que c\'était Simon qui était là.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','09’58','','inherit','closed','closed','','13280-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13280,'https://localhost/?p=14054',0,'revision','',0),
  7069. (14055,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nHomme déposant une femme par terre au bord d’un lac.\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est notre première dispute, et je t’aime.\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','10’12','','inherit','closed','closed','','13281-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13281,'https://localhost/?p=14055',0,'revision','',0),
  7070. (14056,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nDeux personnes marchant à quatre pattes sur le sol au milieu de l\'eau.\n<em>La furie du désir [Ruby Gentry]</em> (1952), King Vidor.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','10’19','','inherit','closed','closed','','13282-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13282,'https://localhost/?p=14056',0,'revision','',0),
  7071. (14057,1,'2023-11-09 08:49:55','2023-11-09 07:49:55','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Quintette avec piano</em> (1944), <em>Op. 18 - I</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','10’25','','inherit','closed','closed','','13283-revision-v1','','','2023-11-09 08:49:55','2023-11-09 07:49:55','',13283,'https://localhost/?p=14057',0,'revision','',0),
  7072. (14058,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nImages d’archives : signature de l\'armistice de la Seconde Guerre mondiale le 8 mai 1945. En noir et blanc, puis en couleurs.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','10’27','','inherit','closed','closed','','13284-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13284,'https://localhost/?p=14058',0,'revision','',0),
  7073. (14059,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','10’37','','inherit','closed','closed','','13285-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13285,'https://localhost/?p=14059',0,'revision','',0),
  7074. (14060,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nImages d’archives de la chaîne de télévision francaise <em>Planète</em> : folle fêtant, drapeau Etatsunien à la main.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','10’39','','inherit','closed','closed','','13286-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13286,'https://localhost/?p=14060',0,'revision','',0),
  7075. (14061,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nAssignat de 25 sols. (Papier monnaie fiduciaire d’échange, instaurée sous la Révolution française par la loi du 4 janvier 1792). \n\n\n<b>Voix Off et In\n---</b>\n\nOn a signé, ah signé, assigné, assigné, assignats. (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','10’41','','inherit','closed','closed','','13287-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13287,'https://localhost/?p=14061',0,'revision','',0),
  7076. (14062,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nVous vous souvenez de José. républicain espagnol ? Avec les communistes j\'irai jusqu\'à la mort.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','10’55','','inherit','closed','closed','','13288-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13288,'https://localhost/?p=14062',0,'revision','',0),
  7077. (14063,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nHommes posant un livre sur la tête d’un homme allongé et plaçant le bout de l\'index et du majeur sur sa couverture.\n<em>Ivan le terrible</em> (1944), Sergej Ejzenstejn.<em> Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nAvec les communistes j\'irai jusqu\'à la mort mais je ne ferai pas un pas de plus.\n<em>L’Espoir</em> (1937), André Malraux.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’00','','inherit','closed','closed','','13289-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13289,'https://localhost/?p=14063',0,'revision','',0),
  7078. (14064,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nEnfants jouant du violon.\n<em>Les enfants jouent à la Russie</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nOrchestre.\n\n\n<b>Écrits\n---</b>\n\n','11’21','','inherit','closed','closed','','13290-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13290,'https://localhost/?p=14064',0,'revision','',0),
  7079. (14065,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nPhotographie d’Inès Armand, femme politique communiste. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','11’26','','inherit','closed','closed','','13291-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13291,'https://localhost/?p=14065',0,'revision','',0),
  7080. (14066,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nAvec des couleurs surexposées et saturées : groupe de personnes avec drapeaux et armes.\nLa liberté guidant le peuple (1830), Eugène Delacroix.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','11’30','','inherit','closed','closed','','13292-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13292,'https://localhost/?p=14066',0,'revision','',0),
  7081. (14067,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nEn noir et blanc et surexposé : groupe de personnes avec drapeaux et armes.\n<em>La liberté guidant le peuple</em> (1830), Eugène Delacroix.\n\n<b>Voix Off et In\n---</b>\n\nLes aventures. Encore un rouge. Dernier, le rouge.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’32','','inherit','closed','closed','','13293-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13293,'https://localhost/?p=14067',0,'revision','',0),
  7082. (14068,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nAlternance en clignotant de photos en couleur d’Hitler, et d’une dame marchant, un enfant dans les bras.\n<em>Angèle</em> (1934), Marcel Pagnol.\n\n\n<b>Voix Off et In\n---</b>\n\n- C’est lui qui a commencé, et c’est la vérité.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’35','','inherit','closed','closed','','13294-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13294,'https://localhost/?p=14068',0,'revision','',0),
  7083. (14069,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nTais-toi Cassandre ! \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','11’40','','inherit','closed','closed','','13295-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13295,'https://localhost/?p=14069',0,'revision','',0),
  7084. (14070,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nFemme pleurant.\n<em>Les larmes de Freya</em> (1900), Anne-Marie Zylberman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','11’42','','inherit','closed','closed','','13296-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13296,'https://localhost/?p=14070',0,'revision','',0),
  7085. (14071,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nMains tournées vers la lumière.\nFragment de tableau (1588), Anonyme, École de Fontainebleau.\nUne main sous un sein, une autre main joignant l’index au pouce.\n<em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard,.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','11’45','','inherit','closed','closed','','13297-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13297,'https://localhost/?p=14071',0,'revision','',0),
  7086. (14072,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n2 \n LES SOIRÉES DE \n ST. PÉTERSBOURG (Joseph de Maistre, 1821) \n\n','11’48','','inherit','closed','closed','','13298-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13298,'https://localhost/?p=14072',0,'revision','',0),
  7087. (14073,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nJeune fille dansant à un bal.\n<em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nInstruments à cordes : bande son de <em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Écrits\n---</b>\n\n','11’53','','inherit','closed','closed','','13299-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13299,'https://localhost/?p=14073',0,'revision','',0),
  7088. (14074,1,'2023-11-09 08:49:56','2023-11-09 07:49:56','<b>Images\n---</b>\n\nSoldats à cheval, pendant une bataille.\n<em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','11’55','','inherit','closed','closed','','13300-revision-v1','','','2023-11-09 08:49:56','2023-11-09 07:49:56','',13300,'https://localhost/?p=14074',0,'revision','',0),
  7089. (14075,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nSurexposé, puis perturbé par des scintillements, des taches noires ou des taches blanches surexposées : nobles entrant dans une salle de bal.\n<em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Entrance of Tsar Alexander (Polonaise)</em> : bande son du film <em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Écrits\n---</b>\n\n','12’06','','inherit','closed','closed','','13301-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13301,'https://localhost/?p=14075',0,'revision','',0),
  7090. (14076,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','12’45','','inherit','closed','closed','','13302-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13302,'https://localhost/?p=14076',0,'revision','',0),
  7091. (14077,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nEnfants luttant à coups de bâton.\n<em>Les enfants de la guerre</em> (1976), Jocelyne Saab.\n\n\n<b>Voix Off et In\n---</b>\n\nLa guerre est là. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','12’47','','inherit','closed','closed','','13303-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13303,'https://localhost/?p=14077',0,'revision','',0),
  7092. (14078,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nFemme allongée sur le dos devant un homme regardant la mer.\n<em>Notre musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- La voyez-vous, Péguy, dit-elle.\n- Il n’y a pas de morts.\n- Rien n’est aussi commode qu\'un texte.\n- Il y a seulement\n- Et rien n’est aussi commode qu\'un mot dans un texte.\n\n\n<b>Bande Son\n---</b>\n\nRessac de vagues.\n\n\n<b>Écrits\n---</b>\n\n','13’03','','inherit','closed','closed','','13304-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13304,'https://localhost/?p=14078',0,'revision','',0),
  7093. (14079,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nNous n\'avions que du livre à mettre dans du livre. \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’13','','inherit','closed','closed','','13305-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13305,'https://localhost/?p=14079',0,'revision','',0),
  7094. (14080,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nSurexposé : bateaux naviguant en mer. \n\n\n<b>Voix Off et In\n---</b>\n\nQue serait-ce quand il faut dans un livre, dans du livre, mettre de la réalité ? Et au deuxième degré quand il faut, dans la réalité, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’17','','inherit','closed','closed','','13306-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13306,'https://localhost/?p=14080',0,'revision','',0),
  7095. (14081,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nCannon visant une voiture.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nmettre de la réalité.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','13’29','','inherit','closed','closed','','13307-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13307,'https://localhost/?p=14081',0,'revision','',0),
  7096. (14082,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nVoiture militaire passant devant une folle. \n\n\n<b>Voix Off et In\n---</b>\n\n\n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’34','','inherit','closed','closed','','13309-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13309,'https://localhost/?p=14082',0,'revision','',0),
  7097. (14083,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nNoir. En alternance : femme se posant la main sur la tête.\n<em>Le silence de la mer</em> (1949), Jean-Pierre Melville.\n\n\n<b>Voix Off et In\n---</b>\n\nLe soir tombe, les vacances finissent.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','13’36','','inherit','closed','closed','','13310-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13310,'https://localhost/?p=14083',0,'revision','',0),
  7098. (14084,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nHomme torturé au chalumeau.\n<em>Roma città aperta</em> (1945), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une journée pour faire l\'histoire d\'une seconde.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','13’43','','inherit','closed','closed','','13311-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13311,'https://localhost/?p=14084',0,'revision','',0),
  7099. (14085,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’46','','inherit','closed','closed','','13312-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13312,'https://localhost/?p=14085',0,'revision','',0),
  7100. (14086,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nDétail surexposé : Reporter, et ombre d’un soldat au fusil. \n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une année pour faire l\'histoire d\'une minute. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’51','','inherit','closed','closed','','13313-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13313,'https://localhost/?p=14086',0,'revision','',0),
  7101. (14087,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nReporter, et ombre d’un soldat au fusil. \n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une vie pour faire l\'histoire d\'une heure. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','13’57','','inherit','closed','closed','','13314-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13314,'https://localhost/?p=14087',0,'revision','',0),
  7102. (14088,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nIl me faut une éternité pour faire l\'histoire d\'un jour. (Julie Delpy).\n<em>Clio, dialogue de l’histoire et de l’âme païenne</em> (1912), Charles Péguy.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','14’05','','inherit','closed','closed','','13315-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13315,'https://localhost/?p=14088',0,'revision','',0),
  7103. (14089,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Au revoir Ludovic, vous allez à la guerre ?\n- Oui madame Donadieu.\n\n\n<b>Bande Son\n---</b>\n\nAu violon : bande son <em>d’Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Écrits\n---</b>\n\n','14’08','','inherit','closed','closed','','13316-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13316,'https://localhost/?p=14089',0,'revision','',0),
  7104. (14090,1,'2023-11-09 08:49:57','2023-11-09 07:49:57','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','14’25','','inherit','closed','closed','','13317-revision-v1','','','2023-11-09 08:49:57','2023-11-09 07:49:57','',13317,'https://localhost/?p=14090',0,'revision','',0),
  7105. (14091,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nHomme lançant une lance dans le dos d\'un autre homme.\n<em>Les Nibelungen. La mort de Siegfried</em> (1924), Fritz Lang.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. puis silence.\n\n\n<b>Écrits\n---</b>\n\n','14’28','','inherit','closed','closed','','13318-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13318,'https://localhost/?p=14091',0,'revision','',0),
  7106. (14092,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nDjihadistes tuant d’une une voiture des gens dans la rue.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','14’32','','inherit','closed','closed','','13319-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13319,'https://localhost/?p=14092',0,'revision','',0),
  7107. (14093,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nHomme transpercé par un javelot.\n<em>Le testament d\'Orphée</em> (1960), Jean Cocteau.\n\n\n<b>Voix Off et In\n---</b>\n\nQuel horreur (fois 3)\n\n\n<b>Bande Son\n---</b>\n\nMitraillette, voitures.\n\n\n<b>Écrits\n---</b>\n\n','14’35','','inherit','closed','closed','','13320-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13320,'https://localhost/?p=14093',0,'revision','',0),
  7108. (14094,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','14’42','','inherit','closed','closed','','13321-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13321,'https://localhost/?p=14094',0,'revision','',0),
  7109. (14095,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nMaison en flammes. \n\n\n<b>Voix Off et In\n---</b>\n\nC\'est à Saint Petersburg \n\n\n<b>Bande Son\n---</b>\n\nViolon. \n\n\n<b>Écrits\n---</b>\n\n\n\n','14’45','','inherit','closed','closed','','13322-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13322,'https://localhost/?p=14095',0,'revision','',0),
  7110. (14096,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nNobles habillés pour une fête de carnaval. <em>Guerre et paix</em> (1967), Sergueï Bondartchouk.\n\n\n<b>Voix Off et In\n---</b>\n\nque de Maistre écrivait les soirées... A la veille de la bataille de la Moskova, il écrivait : « Les fléaux, les malheurs, les divisions, les tortures sont la punition de la méchanceté de l’homme corrompu par le péché. Le bourreau est la pierre angulaire de la société @ l’exécuteur de l’expiation divine.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','14’51','','inherit','closed','closed','','13323-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13323,'https://localhost/?p=14096',0,'revision','',0),
  7111. (14097,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nPhoto d’une voiture avec militaires. \n\n\n<b>Voix Off et In\n---</b>\n\nC\'est lui \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','15’17','','inherit','closed','closed','','13324-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13324,'https://localhost/?p=14097',0,'revision','',0),
  7112. (14098,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nMontage en surimpression : photo d’une comtesse. <em>My Official Wife</em> (1926), Paul L. Stein.\n\n\n<b>Voix Off et In\n---</b>\n\nqui nous renvoie à notre juge naturel... Sa mission est sacrée.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','15’19','','inherit','closed','closed','','13325-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13325,'https://localhost/?p=14098',0,'revision','',0),
  7113. (14099,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','15’22','','inherit','closed','closed','','13326-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13326,'https://localhost/?p=14099',0,'revision','',0),
  7114. (14100,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nMilitaires sur un champ de bataille, explosions.\n<em>Guerre et paix</em> (1956), King Vidor.\n\n\n<b>Voix Off et In\n---</b>\n\nLe ciel ne peut être apaisé que par le sang. L’innocent peut payer pour le coupable. (Jean Luc Godard).\n<em>Les soirées de Saint-Pétersbourg</em> (1821), Joseph de Maistre.\n\n\n<b>Bande Son\n---</b>\n\nId. et batterie\n\n\n<b>Écrits\n---</b>\n\n','15’26','','inherit','closed','closed','','13327-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13327,'https://localhost/?p=14100',0,'revision','',0),
  7115. (14101,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nEn noir et blanc : homme traînant un chargement.\n<em>Les paumés de la mendicité [Ladoni]</em> (1994), Artur Aristakisyan.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis <em>Concerto pour Violoncelle et cordes : part II. Longing</em> (2008), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\n','15’33','','inherit','closed','closed','','13328-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13328,'https://localhost/?p=14101',0,'revision','',0),
  7116. (14102,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nPhoto du tombeau de Rosa Luxemburg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','16’02','','inherit','closed','closed','','13329-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13329,'https://localhost/?p=14102',0,'revision','',0),
  7117. (14103,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nEn superposition : soldats tirant une femme à la bouche ouverte.\n<em>La Chanteuse de café (ou au gant)</em> (1878), Edgar Degas. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','16’09','','inherit','closed','closed','','13330-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13330,'https://localhost/?p=14103',0,'revision','',0),
  7118. (14104,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nCheval dans un cimetière. Documentaire <em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','16’12','','inherit','closed','closed','','13331-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13331,'https://localhost/?p=14104',0,'revision','',0),
  7119. (14105,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nFemme gisant sur le dos, devant un homme regardant la mer.\n<em>Notre musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVagues et cris de mouettes.\n\n\n<b>Écrits\n---</b>\n\n','16’18','','inherit','closed','closed','','13332-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13332,'https://localhost/?p=14105',0,'revision','',0),
  7120. (14106,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','16’50','','inherit','closed','closed','','13333-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13333,'https://localhost/?p=14106',0,'revision','',0),
  7121. (14107,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nDétail saturé et surexposée : photographie d’une femme à terre, blessée, un chien mort à ses côtés.\n<em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','16’54','','inherit','closed','closed','','13334-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13334,'https://localhost/?p=14107',0,'revision','',0),
  7122. (14108,1,'2023-11-09 08:49:58','2023-11-09 07:49:58','<b>Images\n---</b>\n\nSaturé, puis pris depuis le toit d\'un réservoir : soldats traversant une rivière, les armes au-dessus de la tête. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','16’56','','inherit','closed','closed','','13335-revision-v1','','','2023-11-09 08:49:58','2023-11-09 07:49:58','',13335,'https://localhost/?p=14108',0,'revision','',0),
  7123. (14109,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','17’05','','inherit','closed','closed','','13336-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13336,'https://localhost/?p=14109',0,'revision','',0),
  7124. (14110,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nTableau représentant Joseph de Maistre, père de la philosophie contre-révolutionnaire, et critique important des idées des Lumières. \n\n\n<b>Voix Off et In\n---</b>\n\nAu cours de la soirée, le comte Joseph de Maistre grand croix de l\'ordre de saint Maurice et de Lazare, continua… \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','17’08','','inherit','closed','closed','','13337-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13337,'https://localhost/?p=14110',0,'revision','',0),
  7125. (14111,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nSaturé : bombardements aériens. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nExplosions et avions. \n\n\n<b>Écrits\n---</b>\n\n\n\n','17’16','','inherit','closed','closed','','13338-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13338,'https://localhost/?p=14111',0,'revision','',0),
  7126. (14112,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nVoyage dans la steppe à l’arrière d’un camion : une femme et un enfant, la tête recouverte d’un foulard @ sur la route poussiéreuse, l’ombre d’autres camions passant dans la perpendiculaire à l’horizon.\n<em>Alenka</em> (1961), Boris Barnet. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Concerto pour Violoncelle et cordes : part II. Longing</em> (2008), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\nLa terre\n','17’27','','inherit','closed','closed','','13339-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13339,'https://localhost/?p=14112',0,'revision','',0),
  7127. (14113,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nFemme poursuivie et attaquée par un groupe d\'hommes.\n<em>Les Contes de la lune vague après la pluie</em> (1953), Kenji Mizoguchi.\n\n\n<b>Voix Off et In\n---</b>\n\ncontinua ses phrases les plus folles. Ainsi s’accomplit sans cesse la grande loi de la destruction des êtres vivants. La terre entière continuellement imbibée de sang n’est qu’un autel immense où tout ce qui vit\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','17’33','','inherit','closed','closed','','13340-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13340,'https://localhost/?p=14113',0,'revision','',0),
  7128. (14114,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nFemmes traversant une ville détruite dont les bâtiments s\'effondrent devant elles.\n<em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\ndoit être immolé, sans fin, sans mesure @\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','17’56','','inherit','closed','closed','','13341-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13341,'https://localhost/?p=14114',0,'revision','',0),
  7129. (14115,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nEn couleur : femme au bord d\'une route, le visage défiguré par des coups.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nOù tout ce qui vit doit être immolé, sans fin, sans mesure, sans relâche jusqu\'à la consommation des choses, jusqu\'à l\'extinction du mal.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','18’02','','inherit','closed','closed','','13342-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13342,'https://localhost/?p=14115',0,'revision','',0),
  7130. (14116,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nVoitures de police djihadistes défilant dans les rues, avec des drapeaux noirs. \n\n\n<b>Voix Off et In\n---</b>\n\nD’ici un mois, les brigades allaient devoir quitter le pays. Une fois de plus, nous comprîmes à quel point \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’15','','inherit','closed','closed','','13343-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13343,'https://localhost/?p=14116',0,'revision','',0),
  7131. (14117,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nVoiture avec des soldats armés de fusils passant au milieu d\'une rue avec des gens autour. \n\n\n<b>Voix Off et In\n---</b>\n\nnous n’avions pu imaginer que la guerre finisse sans que nous remportions la victoire. La guerre est donc divine en elle-même. \n \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’19','','inherit','closed','closed','','13344-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13344,'https://localhost/?p=14117',0,'revision','',0),
  7132. (14118,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLa guerre, la guerre est donc divine en elle-même, parce que c\'est une loi du monde. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nDélivrance \n\n','18’28','','inherit','closed','closed','','13345-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13345,'https://localhost/?p=14118',0,'revision','',0),
  7133. (14119,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nPhotos d\'avions de chasse en vol. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’35','','inherit','closed','closed','','13346-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13346,'https://localhost/?p=14119',0,'revision','',0),
  7134. (14120,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nSaturé : bombes et explosions. \n\n\n<b>Voix Off et In\n---</b>\n\nQui pourrait douter que la mort trouvée dans les combats n’est de grand privilège et qui pourrait croire que les victimes de cet épouvantable \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’37','','inherit','closed','closed','','13347-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13347,'https://localhost/?p=14120',0,'revision','',0),
  7135. (14121,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nPhoto d\'une petite fille demandant désespérément de l\'aide à un soldat. \n\n\n<b>Voix Off et In\n---</b>\n\njugement aient versé leur sang en vain. La guerre est donc divine dans la gloire mystérieuse qui l\'environne, et dans l\'attrait non moins \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','18’47','','inherit','closed','closed','','13348-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13348,'https://localhost/?p=14121',0,'revision','',0),
  7136. (14122,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\ninexplicable qui nous y porte. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’07','','inherit','closed','closed','','13349-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13349,'https://localhost/?p=14122',0,'revision','',0),
  7137. (14123,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nEnfants jouant à la guerre. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’11','','inherit','closed','closed','','13350-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13350,'https://localhost/?p=14123',0,'revision','',0),
  7138. (14124,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nSaturé : voiture passant avec un drapeau étasunien. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’21','','inherit','closed','closed','','13351-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13351,'https://localhost/?p=14124',0,'revision','',0),
  7139. (14125,1,'2023-11-09 08:49:59','2023-11-09 07:49:59','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','19’24','','inherit','closed','closed','','13352-revision-v1','','','2023-11-09 08:49:59','2023-11-09 07:49:59','',13352,'https://localhost/?p=14125',0,'revision','',0),
  7140. (14126,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nFemme militaire.\n<em>La chute de Berlin</em> (1950), Mikhaïl Tchiaoureli.\n\n\n<b>Voix Off et In\n---</b>\n\nEn fin de soirée, encore ces mots de représentants de la diplomatie française\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’26','','inherit','closed','closed','','13353-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13353,'https://localhost/?p=14126',0,'revision','',0),
  7141. (14127,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nà Saint-Petersburg.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’33','','inherit','closed','closed','','13354-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13354,'https://localhost/?p=14127',0,'revision','',0),
  7142. (14128,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nAu ralenti : politiciens débattant dans une assemblée.\n<em>Napoléon</em> (1927), Abel Gance.\n\n\n<b>Voix Off et In\n---</b>\n\nEn fin de soirée, encore ces mots de la diplomatie française à Saint-Petersburg.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’36','','inherit','closed','closed','','13355-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13355,'https://localhost/?p=14128',0,'revision','',0),
  7143. (14129,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nDétail : homme et femme pleurant.\n<em>Adam et Ève chassés du paradis</em> (1424 - 1425), Masaccio.\n\n\n<b>Voix Off et In\n---</b>\n\nMais c’est précisément parce que la révolution qui s’y passe est le comble de l’absurdité et de la corruption morale... (Jean-Luc Godard).\n<em>Soirées de Saint-Pétersbourg</em> (1821), Joseph de Maistre.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’43','','inherit','closed','closed','','13356-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13356,'https://localhost/?p=14129',0,'revision','',0),
  7144. (14130,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nChien.\n<em>Adieu au langage</em> (2014), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’49','','inherit','closed','closed','','13357-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13357,'https://localhost/?p=14130',0,'revision','',0),
  7145. (14131,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nHomme en voiture roulant très vite.\n<em>Dr. Mabuse, le joueur</em> (1922), Fritz Lang.\n\n\n<b>Voix Off et In\n---</b>\n\net Malraux dira plus simplement transformer notre apocalypse en armée ou crever, c’est tout. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','19’57','','inherit','closed','closed','','13358-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13358,'https://localhost/?p=14131',0,'revision','',0),
  7146. (14132,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nTransformer notre apocalypse en armée \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','20’07','','inherit','closed','closed','','13359-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13359,'https://localhost/?p=14132',0,'revision','',0),
  7147. (14133,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nSaturé et en tons verts et jaunes : canard attaqué par un crocodile, et tentant de s\'échapper.\n\n\n<b>Voix Off et In\n---</b>\n\nou crever, c’est tout.\nL’espoir (1937), André Malraux.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','20’09','','inherit','closed','closed','','13360-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13360,'https://localhost/?p=14133',0,'revision','',0),
  7148. (14134,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nLapin touché par un coup de feu.\n<em>La règle du jeu</em> (1939), Jean Renoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCoup de feu.\n\n\n<b>Écrits\n---</b>\n\n','20’13','','inherit','closed','closed','','13361-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13361,'https://localhost/?p=14134',0,'revision','',0),
  7149. (14135,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nPhotos de trois indiens à cheval au bord d\'une rivière, dans un quartier industrialisé.\n<em>Notre musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nLaissez-moi seul. Tout seul, vous entendez ? Je ne demande rien à personne moi.\n<em>Allô Berlin ? Ici Paris !</em> (1931), Julien Duvivier.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','20’21','','inherit','closed','closed','','13362-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13362,'https://localhost/?p=14135',0,'revision','',0),
  7150. (14136,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nRangée de personnes pendues ensemble.\n<em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nPiano Quintet, Op. 18 - 4. Largo (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','20’26','','inherit','closed','closed','','13363-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13363,'https://localhost/?p=14136',0,'revision','',0),
  7151. (14137,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n3.\nCES FLEURS ENTRE LES RAILS,\nDANS LE VENT CONFUS\nDES VOYAGES\n\n(Joseph Maria Rilke).\n','20’28','','inherit','closed','closed','','13364-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13364,'https://localhost/?p=14137',0,'revision','',0),
  7152. (14138,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nPetite fille sur le quai regardant le passage d\'un train.\n<em>Madeline + Train = Sheer Delight</em>, <a href=\"https://www.youtube.com/watch?v=rvpCmKUo1Aw\">Vidéo sur youtube</a> .\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nPiano.\n\n\n<b>Écrits\n---</b>\n\n','20’41','','inherit','closed','closed','','13365-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13365,'https://localhost/?p=14138',0,'revision','',0),
  7153. (14139,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nEn négatif et passé en noir et blanc : train à vapeur passant.\n<em>Visual essays : origins of film</em> (1983), Al Razutis.\n\n\n<b>Voix Off et In\n---</b>\n\n- What’s coming ?\n- A train.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','20’42','','inherit','closed','closed','','13366-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13366,'https://localhost/?p=14139',0,'revision','',0),
  7154. (14140,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nImages du 19ème siècle : passagers montant dans un train. \n\n\n<b>Voix Off et In\n---</b>\n\n- Oh is gonna arrive the train ? \n - Yeah \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','20’45','','inherit','closed','closed','','13367-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13367,'https://localhost/?p=14140',0,'revision','',0),
  7155. (14141,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- Here he comes ! \n - We are gonna be safe, let\'s go back \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','20’59','','inherit','closed','closed','','13368-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13368,'https://localhost/?p=14141',0,'revision','',0),
  7156. (14142,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nEn négatif, passé en noir et blanc, clignotant sur les images originales : train à vapeur passant.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nTrain en approche.\n\n\n<b>Écrits\n---</b>\n\n','21’03','','inherit','closed','closed','','13369-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13369,'https://localhost/?p=14142',0,'revision','',0),
  7157. (14143,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n- Oooh\n<em>Madeline + Train = Sheer Delight</em>, <a href=\"https://www.youtube.com/watch?v=rvpCmKUo1Aw\">Vidéo sur youtube</a>.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','21’05','','inherit','closed','closed','','13370-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13370,'https://localhost/?p=14143',0,'revision','',0),
  7158. (14144,1,'2023-11-09 08:50:00','2023-11-09 07:50:00','<b>Images\n---</b>\n\nSaturé : fleurs. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','21’07','','inherit','closed','closed','','13371-revision-v1','','','2023-11-09 08:50:00','2023-11-09 07:50:00','',13371,'https://localhost/?p=14144',0,'revision','',0),
  7159. (14145,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nHommes jetant des pierres sur un train venant de passer.\n<em>Hélas pour moi</em> (1993), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- lui jette la première pierre !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','21’09','','inherit','closed','closed','','13372-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13372,'https://localhost/?p=14145',0,'revision','',0),
  7160. (14146,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','21’14','','inherit','closed','closed','','13373-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13373,'https://localhost/?p=14146',0,'revision','',0),
  7161. (14147,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nPassagers d\'un train s\'installant dans leurs cabines avant le départ.\n<em>Berlin express</em> (1948), Jacques Tourneur.\n\n\n<b>Voix Off et In\n---</b>\n\nCompartment B, Lucienne Mirbeau, birthplace Lyon France, occupation secretary. Compartment C, Herr Otto Franzen, birthplace, Frankfurt, Germany. Once a German industrialist, now a dealer in scrap iron. Compartment D, unoccupied, but being held for a person of importance. Compartment E, James Sterling of Liverpool, former occupation, soldier, present occupation, school teacher. Lieutenant Maxim Kiroshilov, birthplace Moskow, defender of Stalingrad, now military aide, Russian occupation authorities. Compartment F, Hneu Perrault, Paris, once a member of the French Underground, now a man of commerce.\nCompartment G, Hans Schmidt, birthplace Munich, occupation\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','21’19','','inherit','closed','closed','','13374-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13374,'https://localhost/?p=14147',0,'revision','',0),
  7162. (14148,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','22’27','','inherit','closed','closed','','13375-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13375,'https://localhost/?p=14148',0,'revision','',0),
  7163. (14149,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nTrain à vapeur en approche traversant un bois sous la neige.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\nIl était environ neuf heures du matin\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','22’30','','inherit','closed','closed','','13376-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13376,'https://localhost/?p=14149',0,'revision','',0),
  7164. (14150,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nEn couleurs : gens poursuivant un train en partance.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\nc’était à la fin de novembre, par un temps de dégel. Le train de Varsovie filait à toute vapeur vers Petersburg.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','22’38','','inherit','closed','closed','','13377-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13377,'https://localhost/?p=14150',0,'revision','',0),
  7165. (14151,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nSuresposé et passé en noir et blanc : Femmes nues au sauna.\n<em>The edge</em> (2010), Alekseï Outchitel.\n\n\n<b>Voix Off et In\n---</b>\n\nL’humidité et la brume étaient telles que le jour avait peine à percer.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','22’42','','inherit','closed','closed','','13378-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13378,'https://localhost/?p=14151',0,'revision','',0),
  7166. (14152,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nDeux enfants devant un train en partance.\n<em>Paysage dans le brouillard</em> (1988), Theo Angelopoulos.\n\n\n<b>Voix Off et In\n---</b>\n\nÀ dix pas à droite et à gauche de la voie, on distinguait malaisément quoi que ce fût par les fenêtres du wagon. (Jean Luc Godard).\n<em>L’idiot</em> (1962), Fiodor Dostoïevski.\n\n\n<b>Bande Son\n---</b>\n\nId. puis trains et foule dans une gare.\n\n\n<b>Écrits\n---</b>\n\n','22’51','','inherit','closed','closed','','13379-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13379,'https://localhost/?p=14152',0,'revision','',0),
  7167. (14153,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nQuand un siècle \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’23','','inherit','closed','closed','','13380-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13380,'https://localhost/?p=14153',0,'revision','',0),
  7168. (14154,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nPhoto d\'une femme en robe rose. \n\n\n<b>Voix Off et In\n---</b>\n\nse dissout lentement dans le siècle suivant \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’28','','inherit','closed','closed','','13381-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13381,'https://localhost/?p=14154',0,'revision','',0),
  7169. (14155,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nEnfants photographiant un canard.\n<em>Histoires du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nquelques individus transforment les moyens de survie anciens en moyens nouveaux. Ce sont ces derniers que nous appelons arts.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','23’34','','inherit','closed','closed','','13382-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13382,'https://localhost/?p=14155',0,'revision','',0),
  7170. (14156,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nPhoto de Louis-Ferdinand Céline. \n\n\n<b>Voix Off et In\n---</b>\n\nLa seule chose qui survit à une époque \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’44','','inherit','closed','closed','','13383-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13383,'https://localhost/?p=14156',0,'revision','',0),
  7171. (14157,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nSurexposé : maisons blanches cubiques. \n\n\n<b>Voix Off et In\n---</b>\n\nc\'est la forme d\'art qu\'elle s\'est créée. Aucune activité ne deviendra un art \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’50','','inherit','closed','closed','','13384-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13384,'https://localhost/?p=14157',0,'revision','',0),
  7172. (14158,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nSaturé : personnes assises à des tables en terrasse d\'un bar. \n\n\n<b>Voix Off et In\n---</b>\n\navant que son époque ne soit terminée. Ensuite \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','23’56','','inherit','closed','closed','','13385-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13385,'https://localhost/?p=14158',0,'revision','',0),
  7173. (14159,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nFragment surexposé.\n<em>Louis IX, dit Saint Louis, Roi de France</em> (1844), Emile Signol.\n\n\n<b>Voix Off et In\n---</b>\n\ncet art disparaîtra. (Jean Luc Godard).\n<em>Pour une métahistoire du film</em> (printemps 1997), Hollis Frampton, « <em>Trafic</em> », n. 21.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nLe roi Saint Louis\n','24’00','','inherit','closed','closed','','13386-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13386,'https://localhost/?p=14159',0,'revision','',0),
  7174. (14160,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nFemme traversant un train bondé.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n- C’est pire que dans le métro.\n- Pardon, laissez passer.\n- Merde alors, vous pouvez pas rester à votre place non ?\n\n\n<b>Bande Son\n---</b>\n\n<em>Das Buch der Klange I - XII, V</em> (1999), Hans Otte.\n\n\n<b>Écrits\n---</b>\n\n','24’05','','inherit','closed','closed','','13387-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13387,'https://localhost/?p=14160',0,'revision','',0),
  7175. (14161,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nTrain prenant un virage. \n\n\n<b>Voix Off et In\n---</b>\n\n- Suivez - moi Monsieur. \n - Décidément vous dormez \n - Oui, oui je dors. C’est très curieux. \n - Enfin madame, mais expliquerez-vous ? \n \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','24’46','','inherit','closed','closed','','13388-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13388,'https://localhost/?p=14161',0,'revision','',0),
  7176. (14162,1,'2023-11-09 08:50:01','2023-11-09 07:50:01','<b>Images\n---</b>\n\nCadavres le long de voies ferrées.\n<em>Nuit et Brouillard</em> (1956), Alain Resnais.\n\n\n<b>Voix Off et In\n---</b>\n\n- Rien. Si vous dormez, si vous rêvez, acceptez vos rêves. C\'est le rôle du dormeur.\n<em>Orphée</em> (1950), Jean Cocteau.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','25’02','','inherit','closed','closed','','13389-revision-v1','','','2023-11-09 08:50:01','2023-11-09 07:50:01','',13389,'https://localhost/?p=14162',0,'revision','',0),
  7177. (14163,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nCouple dans un train regardant par la fenêtre.\n<em>Film socialisme</em> (2010), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nElle était devenue terrible, la langue de Goethe, quand on l\'entendait dans la nuit des petites gares russes. (Jean Luc Godard).\n<em>Vie et destin</em> (1930), Vasiliĭ Semenovich Grossman.\n\nFemme [traduction du dialecte tunisien]:\nOn la décrit toujours comme quelque chose de surnaturel. Mais c\'est quelque chose qui ne se ressent pas. Une fois, je me suis heurté à une voiture de police. Après une explosion. J\'ai couru, je suis tombée. J\'ai senti ma tête se cogner contre le sol. J\'ai eu un malaise. Je n\'ai pas pensé à la mort. Non. Moi. C\'est MOI qui est en train de mourir.\n\nHomme (traduction du dialecte tunisien):\nJe te souhaite la sûreté.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','25’08','','inherit','closed','closed','','13390-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13390,'https://localhost/?p=14163',0,'revision','',0),
  7178. (14164,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nFemme marchant et trébuchant parmi des soldats campant par terre après une catastrophe ferroviaire en Inde.\n<em>La Croisée des destins [Bhowani Junction]</em> (1956), George Cukor.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nNombreuses personnes parlant et criant.\n\n\n<b>Écrits\n---</b>\n\n','25’53','','inherit','closed','closed','','13391-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13391,'https://localhost/?p=14164',0,'revision','',0),
  7179. (14165,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nHomme aidant une femme à sortir par la fenêtre d\'un wagon de train.\n<em>Le Mécano de la General [The General]</em> (1927), Buster Keaton.\n\n\n<b>Voix Off et In\n---</b>\n\nNous voulons voyager, sans vapeur, et sans voile, faites, pour égayer l’ennui de nos prisons, passer sur nos esprits tendus comme une toile, vos souvenirs avec leur cadre d’horizon. (Julie Delpy).\n« Le voyage », <em>Les Fleurs du mal</em> (1857), Charles Baudelaire.\n<em>Histoires du cinéma 2a</em> (1989 - 1999), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Le Clavier bien tempéré 1, BWV 846 - 869</em> (1722), Johann Sebastian Bach.\n\n\n<b>Écrits\n---</b>\n\n','26’00','','inherit','closed','closed','','13392-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13392,'https://localhost/?p=14165',0,'revision','',0),
  7180. (14166,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nTrain en Afrique avec autour des femmes et hommes vendant des fruits et vêtements dans un marché. Enfants suivant un train qui s’éloigne.\n<em>Les routes de l’impossible</em> (2007), Tony Comiti, France 5.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nPersonnes parlant et criant. En arrière-plan sonore : tambours.\n\n\n<b>Écrits\n---</b>\n\n','26’30','','inherit','closed','closed','','13393-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13393,'https://localhost/?p=14166',0,'revision','',0),
  7181. (14167,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nHomme et femme mangeant assis sur les sièges d\'un train.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','26’46','','inherit','closed','closed','','13394-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13394,'https://localhost/?p=14167',0,'revision','',0),
  7182. (14168,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nPassagers dans un wagon.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAccordéon.\n\n\n<b>Écrits\n---</b>\n\n','26’48','','inherit','closed','closed','','13395-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13395,'https://localhost/?p=14168',0,'revision','',0),
  7183. (14169,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nHomme parlant de manière animée à une femme dans un train.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSifflement de la vapeur s\'échappant d\'un train.\n\n\n<b>Écrits\n---</b>\n\n','26’50','','inherit','closed','closed','','13396-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13396,'https://localhost/?p=14169',0,'revision','',0),
  7184. (14170,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nPassagers à l\'intérieur d\'une voiture.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAccordéon, voix de personnes qui discutent.\n\n\n<b>Écrits\n---</b>\n\n','26’53','','inherit','closed','closed','','13397-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13397,'https://localhost/?p=14170',0,'revision','',0),
  7185. (14171,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nGroupe de personnes à l\'intérieur d\'une voiture, jouant de l\'accordéon.\n<em>Manon</em> (1949), Henri-Georges Clouzot.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','26’55','','inherit','closed','closed','','13398-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13398,'https://localhost/?p=14171',0,'revision','',0),
  7186. (14172,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes voix de la séquence précédente continuent \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','26’56','','inherit','closed','closed','','13399-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13399,'https://localhost/?p=14172',0,'revision','',0),
  7187. (14173,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nTrain passant au ralenti avec un drapeau nazi. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et train passant. \n\n\n<b>Écrits\n---</b>\n\n\n\n','27’00','','inherit','closed','closed','','13400-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13400,'https://localhost/?p=14173',0,'revision','',0),
  7188. (14174,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nTrain traversant lentement un marché en Chine.\n<em>Shanghai Express</em> (1932), Josef von Sternberg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','27’05','','inherit','closed','closed','','13401-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13401,'https://localhost/?p=14174',0,'revision','',0),
  7189. (14175,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nSaturé : fleurs.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Rising Grace</em> (2016), Wolfgang Muthspiel.\n\n\n<b>Écrits\n---</b>\n\n','27’07','','inherit','closed','closed','','13402-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13402,'https://localhost/?p=14175',0,'revision','',0),
  7190. (14176,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\nSous les yeux de l’occident.\n<em>Under Western Eyes</em> (1911), Joseph Conrad.\n','27’17','','inherit','closed','closed','','13403-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13403,'https://localhost/?p=14176',0,'revision','',0),
  7191. (14177,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nPersonne en tuant une autre dans un train.\n<em>Shanghai Express</em> (1932), Josef von Sternberg.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVapeur s\'échappant d\'un train.\n\n\n<b>Écrits\n---</b>\n\n','27’19','','inherit','closed','closed','','13404-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13404,'https://localhost/?p=14177',0,'revision','',0),
  7192. (14178,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nSoldat tirant sur d\'autres soldats, au-delà d\'une barricade.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nTirs de pistolets et mitraillettes.\n\n\n<b>Écrits\n---</b>\n\n','27’23','','inherit','closed','closed','','13405-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13405,'https://localhost/?p=14178',0,'revision','',0),
  7193. (14179,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nAu ralenti : homme et femme passant dans le couloir d\'un train.\n\n<em>Terror by night</em> (1946), Roy William Neill.\n\n<b>Voix Off et In\n---</b>\n\nMais enfin dites-moi pourquoi vous avez fait de l’espionnage ?\n- J\'en sais rien.\n- Vous avez accepté ?\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','27’25','','inherit','closed','closed','','13406-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13406,'https://localhost/?p=14179',0,'revision','',0),
  7194. (14180,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n- D’entrer dans son organisation ? Non Michel.\nMais même chez les communistes l’agent compte plus que tout le reste.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','27’36','','inherit','closed','closed','','13407-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13407,'https://localhost/?p=14180',0,'revision','',0),
  7195. (14181,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nVapeur sortant d\'un train prenant un virage.\n<em>Terror by night</em> (1946), Roy William Neill.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSifflet, puis passage d\'un train.\n\n\n<b>Écrits\n---</b>\n\n','27’45','','inherit','closed','closed','','13408-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13408,'https://localhost/?p=14181',0,'revision','',0),
  7196. (14182,1,'2023-11-09 08:50:02','2023-11-09 07:50:02','<b>Images\n---</b>\n\nHomme regardant une femme boire, au restaurant d\'un train.\n<em>Terror by night</em> (1946), Roy William Neill.\n\n\n<b>Voix Off et In\n---</b>\n\nDeux discours prononcés par George Steiner et Cornelius Castoriadis se chevauchent :\nSteiner : Il fera exactement la même chose que les autres, ce que les autres lui ont appris.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','27’50','','inherit','closed','closed','','13409-revision-v1','','','2023-11-09 08:50:02','2023-11-09 07:50:02','',13409,'https://localhost/?p=14182',0,'revision','',0),
  7197. (14183,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nEnfant regardant par la fenêtre d\'un train des wagons militaires transportant des réservoirs.\n<em>Le silence</em> (1963), Ingmar Bergman.\n\n\n<b>Voix Off et In\n---</b>\n\nPour qu\'il y ait vraiment des individus, il faut que la collectivité bouge, et pour que la collectivité bouge il fera exactement la même chose que les autres, ce que les autres\nCastoriadis : Quelque chose a surgi de barbare. Quelque chose d’immense lumière qui a accentué les beaux mystères de la vie\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','27’54','','inherit','closed','closed','','13410-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13410,'https://localhost/?p=14183',0,'revision','',0),
  7198. (14184,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nAu ralenti : femme dans le vagons d’un train.\n<em>Terror by night</em> (1946), Roy William Neill.\n\n\n<b>Voix Off et In\n---</b>\n\n- Come va a New York ? Va bene ?\n- Non ci si arricchisce\n- Che importa questo ? Si può star bene senza arricchire\n\n\n<b>Bande Son\n---</b>\n\nTrain.\n\n\n<b>Écrits\n---</b>\n\n','28’11','','inherit','closed','closed','','13411-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13411,'https://localhost/?p=14184',0,'revision','',0),
  7199. (14185,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nHommes parlant en regardant par la fenêtre d\'un train.\n<em>Sicilia !</em> (1998), Jean-Marie Straub et Danièle Huillet.\n\n\n<b>Voix Off et In\n---</b>\n\n- Non avresti fatto che il tuo dovere.\n- Naturalmente !\n- I tipi così sono sempre da fermare.\n- Effettivamente, non si sa mai.\n- Ogni morto di fame è un uomo pericoloso.\n- Come no, capace di tutto.\n- Di rubare.\n- Questo va da sé.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','28’14','','inherit','closed','closed','','13412-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13412,'https://localhost/?p=14185',0,'revision','',0),
  7200. (14186,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nFemme entrant dans un wagon de train, hommes se retournant pour la regarder.\n<em>Johnny Guitar</em> (1954), Nicholas Ray.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Image The Fog Dirappearing</em> (2016), Tord Gustavsen.\n\n\n<b>Écrits\n---</b>\n\n','28’35','','inherit','closed','closed','','13413-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13413,'https://localhost/?p=14186',0,'revision','',0),
  7201. (14187,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’03','','inherit','closed','closed','','13414-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13414,'https://localhost/?p=14187',0,'revision','',0),
  7202. (14188,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nCheval et cavalier au galop, derrière un train.\n<em>Turksib</em> (1921), Viktor Alexandrovitch Turin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’07','','inherit','closed','closed','','13415-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13415,'https://localhost/?p=14188',0,'revision','',0),
  7203. (14189,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nHomme passant la main sur un vinyle et écoutant la musique qui s\'en dégage.\n<em>L’Atalante</em> (1934), Jean Vigo.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Concerto Grosso No. 4</em> (1988), Alfred Schnittke.\n\n\n<b>Écrits\n---</b>\n\n','29’10','','inherit','closed','closed','','13416-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13416,'https://localhost/?p=14189',0,'revision','',0),
  7204. (14190,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nCheval et cavalier au galop, le long d’un train.\n<em>Turksib</em> (1921), Viktor Alexandrovitch Turin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','29’16','','inherit','closed','closed','','13417-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13417,'https://localhost/?p=14190',0,'revision','',0),
  7205. (14191,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’22','','inherit','closed','closed','','13418-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13418,'https://localhost/?p=14191',0,'revision','',0),
  7206. (14192,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nChameau reniflant les rails d\'un train, train traversant une prairie déserte.\n<em>Turksib</em> (1921), Viktor Alexandrovitch Turin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>The Fog Disappearing</em> (2016), Tord Gustavsen.\n\n\n<b>Écrits\n---</b>\n\n','29’24','','inherit','closed','closed','','13419-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13419,'https://localhost/?p=14192',0,'revision','',0),
  7207. (14193,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nPaysage vu d\'un train. \n\n\n<b>Voix Off et In\n---</b>\n\nj\'avoue qu\'avant d\'embarquer à bord \n\n\n<b>Bande Son\n---</b>\n\nVoix masculine accompagnée au piano. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’31','','inherit','closed','closed','','13420-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13420,'https://localhost/?p=14193',0,'revision','',0),
  7208. (14194,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nSaturé et surexposé : train avançant. \n\n\n<b>Voix Off et In\n---</b>\n\nde ce vieux \n piano \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','29’36','','inherit','closed','closed','','13421-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13421,'https://localhost/?p=14194',0,'revision','',0),
  7209. (14195,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nMontage en superposition : rose.\n<em>Allemagne 90 neuf zéro</em> (1991), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nj\'ai scruté la météo\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’39','','inherit','closed','closed','','13422-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13422,'https://localhost/?p=14195',0,'revision','',0),
  7210. (14196,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nPassage du métro. Superposé : femme semblant avoir été heurtée par un train.\n<em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nj\'ai longtemps flâné\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','29’42','','inherit','closed','closed','','13423-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13423,'https://localhost/?p=14196',0,'revision','',0),
  7211. (14197,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nDessin : femme vue de dos.\n<em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','29’45','','inherit','closed','closed','','13424-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13424,'https://localhost/?p=14197',0,'revision','',0),
  7212. (14198,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nEux tous\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt.\n\n\n<b>Écrits\n---</b>\n\n','29’50','','inherit','closed','closed','','13425-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13425,'https://localhost/?p=14198',0,'revision','',0),
  7213. (14199,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nHommes saluant joyeusement des deux mains, depuis un train.\n<em>Les Deux Fedor</em> (1959), Marlen Khoutsiev.\n\n\n<b>Voix Off et In\n---</b>\n\nenfilés sur le fond\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’53','','inherit','closed','closed','','13426-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13426,'https://localhost/?p=14199',0,'revision','',0),
  7214. (14200,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nFemmes courant.\n<em>Les Deux Fedor</em> (1959), Marlen Khoutsiev.\n\n\n<b>Voix Off et In\n---</b>\n\nDu vert luxuriant.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','29’57','','inherit','closed','closed','','13427-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13427,'https://localhost/?p=14200',0,'revision','',0),
  7215. (14201,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nSaturé : paysage vu depuis la fenêtre d’un train. \n\n\n<b>Voix Off et In\n---</b>\n\nDe l’été. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’00','','inherit','closed','closed','','13428-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13428,'https://localhost/?p=14201',0,'revision','',0),
  7216. (14202,1,'2023-11-09 08:50:03','2023-11-09 07:50:03','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’03','','inherit','closed','closed','','13429-revision-v1','','','2023-11-09 08:50:03','2023-11-09 07:50:03','',13429,'https://localhost/?p=14202',0,'revision','',0),
  7217. (14203,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nHomme courant le long d\'un train.\n<em>Wild boys on the road</em> (1933), William A. Wellman. <em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nEt l’embrasement\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’04','','inherit','closed','closed','','13430-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13430,'https://localhost/?p=14203',0,'revision','',0),
  7218. (14204,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nAu ralenti : homme s\'approchant d\'une femme assise dans une grange devant un brasier.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’06','','inherit','closed','closed','','13431-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13431,'https://localhost/?p=14204',0,'revision','',0),
  7219. (14205,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nFoule d\'hommes se pressant pour monter dans un train.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\nRoyal\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’07','','inherit','closed','closed','','13432-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13432,'https://localhost/?p=14205',0,'revision','',0),
  7220. (14206,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nSaturé : trains miniatures passant sur une ligne de chemin de fer. <em>Toccata for Toy Trains</em> (1957), Charles and Ray Eames.\n\n\n<b>Voix Off et In\n---</b>\n\nde l\'automne.\n- Et la ruine de l’hiver\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’10','','inherit','closed','closed','','13433-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13433,'https://localhost/?p=14206',0,'revision','',0),
  7221. (14207,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\navant que ne fleurisse \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’15','','inherit','closed','closed','','13434-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13434,'https://localhost/?p=14207',0,'revision','',0),
  7222. (14208,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nFille faisant de l\'escrime devant un projecteur montrant une cathédrale gothique. En montage clignotant : cameraman sur un dolly. \n\n\n<b>Voix Off et In\n---</b>\n\nà nouveau \n le printemps, \n salit maintenant \n un peu noirci \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’19','','inherit','closed','closed','','13435-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13435,'https://localhost/?p=14208',0,'revision','',0),
  7223. (14209,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nHomme se traînant le long d\'une voie ferrée.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nTrain en approche.\n\n\n<b>Écrits\n---</b>\n\n','30’30','','inherit','closed','closed','','13436-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13436,'https://localhost/?p=14209',0,'revision','',0),
  7224. (14210,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','30’33','','inherit','closed','closed','','13437-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13437,'https://localhost/?p=14210',0,'revision','',0),
  7225. (14211,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nHomme se traînant le long d\'une voie ferrée, et essayant de ne pas être écrasé par un train en approche.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’36','','inherit','closed','closed','','13438-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13438,'https://localhost/?p=14211',0,'revision','',0),
  7226. (14212,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\npar le temps.\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt.\n\n\n<b>Écrits\n---</b>\n\n','30’39','','inherit','closed','closed','','13439-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13439,'https://localhost/?p=14212',0,'revision','',0),
  7227. (14213,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nHomme évanoui et écrasé par un train.\n<em>Wild boys on the road</em> (1933), William A. Wellman.\n\n\n<b>Voix Off et In\n---</b>\n\n\nToujours serein\n\n\n<b>Bande Son\n---</b>\n\nTrain en approche, cris.\n\n\n<b>Écrits\n---</b>\n\n','30’41','','inherit','closed','closed','','13440-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13440,'https://localhost/?p=14213',0,'revision','',0),
  7228. (14214,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','30’45','','inherit','closed','closed','','13441-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13441,'https://localhost/?p=14214',0,'revision','',0),
  7229. (14215,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nFemme arrachant ses boucles d\'oreilles en perle, horrifiée.\n<em>Au bord de la mer bleue</em> (1937), Boris Barnet.\n\n\n<b>Voix Off et In\n---</b>\n\n… des sentinelles. Non.\n- Comme s\'ils défendaient\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','30’47','','inherit','closed','closed','','13442-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13442,'https://localhost/?p=14215',0,'revision','',0),
  7230. (14216,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nPerles tombant.\n<em>Au bord de la mer bleue</em> (1937), Boris Barnet.\nEnchaînement avec un montage clignotant : cadavres le long d\'une voie ferrée.\n<em>Nuit et brouillard</em> (1956), Alain Resnais.\n\n\n<b>Voix Off et In\n---</b>\n\nde leurs énormes et monolithiques\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt.\n\n\n<b>Écrits\n---</b>\n\n','31’01','','inherit','closed','closed','','13443-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13443,'https://localhost/?p=14216',0,'revision','',0),
  7231. (14217,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nMontage clignotant : sous des cadavres longeant les rails d\'un train, folle dans une église du tableau.\n<em>L\'église Ludwigskirche à Munich</em> (1908), Wassily Kandinsky.\n\n\n<b>Voix Off et In\n---</b>\n\nLes vivants contre les morts.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','31’09','','inherit','closed','closed','','13444-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13444,'https://localhost/?p=14217',0,'revision','',0),
  7232. (14218,1,'2023-11-09 08:50:04','2023-11-09 07:50:04','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nTous. \n Les ossements. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','31’18','','inherit','closed','closed','','13445-revision-v1','','','2023-11-09 08:50:04','2023-11-09 07:50:04','',13445,'https://localhost/?p=14218',0,'revision','',0),
  7233. (14219,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nFemmes et hommes autour d\'une table, plaçant leurs mains en cercle lors d\'une séance de spiritisme. <em>Anna Karénine</em> (1948), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\nAvant que ne fleurissent\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','31’21','','inherit','closed','closed','','13446-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13446,'https://localhost/?p=14219',0,'revision','',0),
  7234. (14220,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nà nouveau le printemps \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','31’26','','inherit','closed','closed','','13447-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13447,'https://localhost/?p=14220',0,'revision','',0),
  7235. (14221,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nTrain passant dans le blizzard et personnes marchant sous la neige et dans le vent.\n<em>Anna Karénine</em> (1948), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et train passant.\n\n\n<b>Écrits\n---</b>\n\n','31’28','','inherit','closed','closed','','13448-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13448,'https://localhost/?p=14221',0,'revision','',0),
  7236. (14222,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nEn superposition, et en alternance : dessin d\'un mort.\n<em>Les désastres de la guerre</em> (1815 - 20), Francisco Goya.\n\nPuis montage clignotant : personne levant un fusil vers le ciel, femme juive.\n\n\n<b>Voix Off et In\n---</b>\n\nEux tous, profilés sur le fond du vert luxuriant de l’été, et l\'embrasement royal de l’automne, et la ruine de l’hiver,\n\n\n<b>Bande Son\n---</b>\n\n<em>Fratres pour 12 violoncelles</em> (1977), Arvo Pärt et silence.\n\n\n<b>Écrits\n---</b>\n\n','31’43','','inherit','closed','closed','','13449-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13449,'https://localhost/?p=14222',0,'revision','',0),
  7237. (14223,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nAu ralenti, saturé : voie ferrée parcourue par un train.\n<em>Après le feu</em> (2010), Jacques Perconte.\n\n\n<b>Voix Off et In\n---</b>\n\navant que ne fleurisse à nouveau le printemps. Eux tous.\n<em>Sépulture Sud</em>, in <em>Idylle au désert et autres nouvelles</em> (1985), William Faulkner. <em>Grandeur et décadence d\'un petit commerce de cinéma</em> (1986), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','32’09','','inherit','closed','closed','','13450-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13450,'https://localhost/?p=14223',0,'revision','',0),
  7238. (14224,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nHomme saluant une femme le regardant par la fenêtre d\'un train, et poursuivant le train qui s’éloigne.\n<em>Le plaisir</em> (1938), Max Ophüls.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence et <em>Das Buch der Klange I - XII, V</em> (1999), Hans Otte.\n\n\n<b>Écrits\n---</b>\n\n','32’23','','inherit','closed','closed','','13451-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13451,'https://localhost/?p=14224',0,'revision','',0),
  7239. (14225,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nPellicule passant dans un projecteur.\n<em>Deux fois cinquante ans de cinéma français</em> (1995), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','32’51','','inherit','closed','closed','','13452-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13452,'https://localhost/?p=14225',0,'revision','',0),
  7240. (14226,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n \n\n\n<b>Écrits\n---</b>\n\n\n\n','33’02','','inherit','closed','closed','','13453-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13453,'https://localhost/?p=14226',0,'revision','',0),
  7241. (14227,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n4 \n L’ESPRIT DES LOIS \n\n','33’05','','inherit','closed','closed','','13454-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13454,'https://localhost/?p=14227',0,'revision','',0),
  7242. (14228,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nActeurs incarnant au théâtre des soldats intimant à la population qui manifeste de se disperser. Soldats déposant les armes et s\'unissant au peuple. <em>La Commune (Paris, 1971)</em> (2000), Peter Watkins.\n\n\n<b>Voix Off et In\n---</b>\n\nÉcartez - vous. Première sommation, nous allons faire usage de la force. Deuxième et dernière sommation, nous allons faire usage de la force. Dispersez-vous.\n\n\n<b>Bande Son\n---</b>\n\nPersonnes protestant et criant.\n<em>Three Little Nocturnes, II Allegro appassionata</em> (2005), Hans Abrahamsen.\n\n\n<b>Écrits\n---</b>\n\n','33’08','','inherit','closed','closed','','13455-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13455,'https://localhost/?p=14228',0,'revision','',0),
  7243. (14229,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nHommes derrière une barricade attaqués par des soldats.\n<em>Vendémiaire</em> (1918), Louis Feuillade.\n<em>Histoire (s) du cinéma 3b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- La situation de tous, dans cette heure fatale et dans ce lieu inexorable, avait comme résultat et comme sommet. <em>Les Misérables</em> (1862), Victor Hugo.\n- Le drapeau\n\n\n<b>Bande Son\n---</b>\n\n<em>Breit-sehr frisch und straff</em> (1939), Paul Hindemith.\n\n\n<b>Écrits\n---</b>\n\n','34’08','','inherit','closed','closed','','13456-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13456,'https://localhost/?p=14229',0,'revision','',0),
  7244. (14230,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nPhotographie d’Arthur Rimbaud.\n\n\n<b>Voix Off et In\n---</b>\n\n- la mélancolie suprême d’Enjolras. <em>Les Misérables</em> (1862), Victor Hugo.\n- Le drapeau va au paysage infâme\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','34’20','','inherit','closed','closed','','13457-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13457,'https://localhost/?p=14230',0,'revision','',0),
  7245. (14231,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nFemme tout en blanc se dirigeant vers un écran puis reculant de peur, les mains en l\'air.\n<em>Le Mystère des roches de Kador</em> (1912), Léonce Perret. <em>Histoire (s) du cinéma 2a</em> (1988 - 89), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\net notre patois étouffe le\ntambour. Arthur Rimbaud,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','34’30','','inherit','closed','closed','','13458-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13458,'https://localhost/?p=14231',0,'revision','',0),
  7246. (14232,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\ndémocratie. (Jean Luc Godard). <em>Les Illuminations. Démocratie</em> (1854), Arthur Rimbaud.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nTERRORISM CONSIDERED\nas one of the\nFINE ARTS\n','34’36','','inherit','closed','closed','','13459-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13459,'https://localhost/?p=14232',0,'revision','',0),
  7247. (14233,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nDissonance Films \n\n','34’38','','inherit','closed','closed','','13460-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13460,'https://localhost/?p=14233',0,'revision','',0),
  7248. (14234,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nFemme supliant un homme jettant un bébé par la fenêtre.\n<em>Histoire (s) du cinéma</em>, (1988 - 89), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nAprès une révolution dans la révolution (Philippe Sollers).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nEnd Lo Sung\n','34’41','','inherit','closed','closed','','13461-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13461,'https://localhost/?p=14234',0,'revision','',0),
  7249. (14235,1,'2023-11-09 08:50:05','2023-11-09 07:50:05','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nAu violon \n\n\n<b>Écrits\n---</b>\n\n\n\n','34’44','','inherit','closed','closed','','13462-revision-v1','','','2023-11-09 08:50:05','2023-11-09 07:50:05','',13462,'https://localhost/?p=14235',0,'revision','',0),
  7250. (14236,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSaturé : torero transperçant un taureau à coups d’épée. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','34’48','','inherit','closed','closed','','13463-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13463,'https://localhost/?p=14236',0,'revision','',0),
  7251. (14237,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nAu ralenti : homme courant et criant en faisant claquer ses poignets ensemble.\n<em>La terre</em> (1930), Alexandre Dovjenko. <em>Histoire (s) du cinéma 2a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVoix masculine, accompagnée à la guitare : chant russe.\n<em>La chasse aux loups</em> (1977), Vladimir Vissotsky.\n\n\n<b>Écrits\n---</b>\n\n','34’49','','inherit','closed','closed','','13464-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13464,'https://localhost/?p=14237',0,'revision','',0),
  7252. (14238,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’12','','inherit','closed','closed','','13465-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13465,'https://localhost/?p=14238',0,'revision','',0),
  7253. (14239,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSurexposé : photographie d’un buste de Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\nSi je pouvais faire en sorte que ceux qui commandent augmentassent leur connaissances sur ce qu’ils doivent prescrire, et que ceux qui obéissent trouvassent un nouveau plaisir à obéir. <em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','35’14','','inherit','closed','closed','','13466-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13466,'https://localhost/?p=14239',0,'revision','',0),
  7254. (14240,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nEnfants en Asie faisant un exercice militaire. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoix d\'enfants chantant et criant ensemble. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’26','','inherit','closed','closed','','13467-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13467,'https://localhost/?p=14240',0,'revision','',0),
  7255. (14241,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSurexposé : personnes marchant courbées et vacillantes le long d\'un couloir.\n<em>Alphaville</em> (1965), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nJe me croirais le plus heureux des hommes.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','35’31','','inherit','closed','closed','','13468-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13468,'https://localhost/?p=14241',0,'revision','',0),
  7256. (14242,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nJe me croirais le plus heureux des mortels. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’37','','inherit','closed','closed','','13469-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13469,'https://localhost/?p=14242',0,'revision','',0),
  7257. (14243,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSaturé et surexposé : pellicule d’aspect usée et déchirée.\n<em>Notre caméra analytique</em> (2015), Yervant Gianikian et Angela Ricci Lucchi.\n\n\n<b>Voix Off et In\n---</b>\n\nJe me croirais le plus heureux des mortels, si je pouvais faire que les hommes\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’40','','inherit','closed','closed','','13470-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13470,'https://localhost/?p=14243',0,'revision','',0),
  7258. (14244,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nCouverture des volumes de <em>l\'Esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\npuissent se guérir de leurs préjugés.\n<em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’50','','inherit','closed','closed','','13471-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13471,'https://localhost/?p=14244',0,'revision','',0),
  7259. (14245,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSaturé : visage d’un homme de profil allumant une cigarette.\n<em>Détective</em> (1985), Jean-Luc Godard. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nJ\'appelle ici préjugés,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’54','','inherit','closed','closed','','13472-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13472,'https://localhost/?p=14245',0,'revision','',0),
  7260. (14246,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nMontage superposé : main tenant une bougie.\n<em>Ivan le terrible</em> (1944 - 46), Sergueï Eisenstein. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nnon pas\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','35’56','','inherit','closed','closed','','13473-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13473,'https://localhost/?p=14246',0,'revision','',0),
  7261. (14247,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nce qui fait qu\'on ignore de certaines choses, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’59','','inherit','closed','closed','','13474-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13474,'https://localhost/?p=14247',0,'revision','',0),
  7262. (14248,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSurexposé : buste de Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\nmais ce qui fait qu\'on s\'ignore soi-même. (Jean Luc Godard)\n<em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’00','','inherit','closed','closed','','13475-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13475,'https://localhost/?p=14248',0,'revision','',0),
  7263. (14249,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nCouteau planté sur une surface noire.\n<em>Au cœur de l\'orage</em> (1948), Jean-Paul Le Chanois.\n\n\n<b>Voix Off et In\n---</b>\n\nE arrivato Zampanò ! è arrivato Zampanò !\n\n\n<b>Bande Son\n---</b>\n\nTambours.\n\n\n<b>Écrits\n---</b>\n\n','36’02','','inherit','closed','closed','','13476-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13476,'https://localhost/?p=14249',0,'revision','',0),
  7264. (14250,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nAu ralenti : deux clowns parmi une foule de gens.\n<em>La Strada</em> (1954), Federico Fellini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','36’13','','inherit','closed','closed','','13477-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13477,'https://localhost/?p=14250',0,'revision','',0),
  7265. (14251,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nFemme au bord d\'une rivière.\n<em>Pastorales Tahitiennes</em> (1893), Paul Gauguin. Alternant, en montage clignotant : homme l’observant à travers une vitre.\n<em>Le Pré de Béjine</em> (1935 - 37), Sergueï Eisenstein. En alternance : femme en blanc des <em>Pastorales tahitiennes</em> (1892), Paul Gauguin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’18','','inherit','closed','closed','','13478-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13478,'https://localhost/?p=14251',0,'revision','',0),
  7266. (14252,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nSaturé : homme et femme marchant entre des voitures en feu.\n<em>Weekend</em> (1967), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est qu’il n’est pas\n\n\n<b>Bande Son\n---</b>\n\n<em>Choral pour orgue, BWV 721 (« Aie pitié de moi Seigneur »)</em> (1704), Johann Sebastian Bach.\n\n\n<b>Écrits\n---</b>\n\n','36’22','','inherit','closed','closed','','13479-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13479,'https://localhost/?p=14252',0,'revision','',0),
  7267. (14253,1,'2023-11-09 08:50:06','2023-11-09 07:50:06','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nplus permis à un gouvernement \n qu’à un individu d’être un assassin. C’est que l’Europe est solidaire \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','36’27','','inherit','closed','closed','','13480-revision-v1','','','2023-11-09 08:50:06','2023-11-09 07:50:06','',13480,'https://localhost/?p=14253',0,'revision','',0),
  7268. (14254,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nFemmes décapitant un homme.\n<em>Judith tranchant la tête d’Holopherne</em> (1620), Artemisia Gentileschi.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est que tout ce qui se fait en Europe\nest fait par l’Europe\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’32','','inherit','closed','closed','','13481-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13481,'https://localhost/?p=14254',0,'revision','',0),
  7269. (14255,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nHomme pillant un cadavre. \n\n\n<b>Voix Off et In\n---</b>\n\nc’est que \n s’il existe un gouvernement \n de bêtes fauves \n il doit être traité \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','35’34','','inherit','closed','closed','','13482-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13482,'https://localhost/?p=14255',0,'revision','',0),
  7270. (14256,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nHomme regardant à travers une caméra. En superposition : cadavre d’homme dans la rue. \n\n\n<b>Voix Off et In\n---</b>\n\nen bête fauve \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','36’41','','inherit','closed','closed','','13483-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13483,'https://localhost/?p=14256',0,'revision','',0),
  7271. (14257,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nHomme conduisant une voiture à toute vitesse.\n<em>Dr. Mabuse, le joueur</em> (1922), Fritz Lang.\n\nEn superposition : dessin d\'homme. <em>Combats</em> (1915), Ernst Ludwig Kirchner. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est qu’à l’heure qu’il est, tout près de nous là, sous nos yeux on massacre\non incendie\non pille\non extermine\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’44','','inherit','closed','closed','','13484-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13484,'https://localhost/?p=14257',0,'revision','',0),
  7272. (14258,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\non égorge les pères et les mères \n on vend les petites filles et les petits garçons \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','36’49','','inherit','closed','closed','','13485-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13485,'https://localhost/?p=14258',0,'revision','',0),
  7273. (14259,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nFemme avec une tache rouge à la place de son sexe se trouvant situé à la hauteur de la bouche d’un Saturne dont le croquis se superpose au dessin en clignotement léger comme une flamme qui va s’éteindre, avec une femme portant une torche et au bras levé.\n<em>Lady Macbeth somnambule</em> (1781 - 84), Johann Heinrich Füssli. <em>Histoire (s) du cinéma 3a</em>, Jean-Luc Godard (1889 - 99)\n\n\n<b>Voix Off et In\n---</b>\n\non vend les petites filles et les petits garçons\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’52','','inherit','closed','closed','','13486-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13486,'https://localhost/?p=14259',0,'revision','',0),
  7274. (14260,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nLady Macbeth id. clignotement id. avec deux corps pendus à un arbre, des taches rouges à la place du sexe et l’un en morceaux accrochés à l’arbre : des bras tranchés et attachés d’une corde à une branche, le corps pendu par les jambes et la tête plantée dans une branche.\n<em>Bel exploit, avec des morts</em> (dans la série des <em>Désastres de la guerre, n. 39</em> (1810 - 1815), Francisco de Goya. <em>Histoire (s) du cinéma 3a</em> (1889 - 99), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est que les enfants trop petits\npour être vendus\non les fend d’un coup de sabre\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’55','','inherit','closed','closed','','13487-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13487,'https://localhost/?p=14260',0,'revision','',0),
  7275. (14261,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nGoya id. Clignotant : enfant errant dans une ville.\n<em>Allemagne année zéro</em> (1948), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est qu’on brûle les familles dans les maisons\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','36’58','','inherit','closed','closed','','13488-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13488,'https://localhost/?p=14261',0,'revision','',0),
  7276. (14262,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nEnfant errant dans une ville.\n<em>Allemagne année zéro</em> (1948), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','37’03','','inherit','closed','closed','','13489-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13489,'https://localhost/?p=14262',0,'revision','',0),
  7277. (14263,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nId.. Rossellini. En surimpression : homme avec une tête au bout d’un pique.\nGravure des <em>Disparates</em> (1821 - 24), Francisco de Goya. <em>Histoire (s) du cinéma 3a</em> (1889 - 99), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nde sorte qu’aux vivants qui leur ont envoyé le carnage\nles morts envoient la peste, ce qui est bien fait\nnous apprenons aux gouvernements d’Europe\nceci :\nc’est qu’on ouvre les femmes grosses\npour leur tuer les enfants dans les entrailles\n\n\n<b>Bande Son\n---</b>\n\n<em>Choral pour orgue, BWV 721 (« Aie pitié de moi Seigneur »)</em> (1704), Johann Sebastian Bach.\n\n\n<b>Écrits\n---</b>\n\nLes signes parmi nous.\n','37’09','','inherit','closed','closed','','13490-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13490,'https://localhost/?p=14263',0,'revision','',0),
  7278. (14264,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nc’est qu’il y a dans les places publiques\ndes tas de squelettes. (Jean-Luc Godard)\n<em>Pour la Serbie</em> (1876), Victor Hugo.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’25','','inherit','closed','closed','','13491-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13491,'https://localhost/?p=14264',0,'revision','',0),
  7279. (14265,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nChat noir descendant les escaliers au ralenti.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nLe sort de la France\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','37’27','','inherit','closed','closed','','13492-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13492,'https://localhost/?p=14265',0,'revision','',0),
  7280. (14266,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nSurexposé : homme se traînant péniblement vers une chaise.\n<em>Docteur Jerry et Mister Love</em> (1963), Jerry Lewis.\n\n\n<b>Voix Off et In\n---</b>\n\nSuivait celui de l’Amérique. Comme dans les contes romantiques allemandes, le chat\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’29','','inherit','closed','closed','','13493-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13493,'https://localhost/?p=14266',0,'revision','',0),
  7281. (14267,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nqui éprouve à son tour les amours \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','37’37','','inherit','closed','closed','','13494-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13494,'https://localhost/?p=14267',0,'revision','',0),
  7282. (14268,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nPieds marchant au milieu de l\'eau.\n<em>La couleur de la grenade</em> (1968), Sergei Parajanov.\n\n\n<b>Voix Off et In\n---</b>\n\net les ambitions de son maître et les rend dérisoires.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’42','','inherit','closed','closed','','13495-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13495,'https://localhost/?p=14268',0,'revision','',0),
  7283. (14269,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nPieds marchant dans la rue.\n<em>Les Olvidados</em> (1950), Luis Buñuel.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCloche d’enterrement.\n\n\n<b>Écrits\n---</b>\n\n','37’44','','inherit','closed','closed','','13496-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13496,'https://localhost/?p=14269',0,'revision','',0),
  7284. (14270,1,'2023-11-09 08:50:07','2023-11-09 07:50:07','<b>Images\n---</b>\n\nPhotographie de Marilyn Monroe.\n<em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','37’46','','inherit','closed','closed','','13497-revision-v1','','','2023-11-09 08:50:07','2023-11-09 07:50:07','',13497,'https://localhost/?p=14270',0,'revision','',0),
  7285. (14271,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nHomme et jeune femme sous la pluie.\n<em>Le premier maître</em> (1965), Andreï Kontchalovski. <em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’47','','inherit','closed','closed','','13498-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13498,'https://localhost/?p=14271',0,'revision','',0),
  7286. (14272,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nVisage de femme aux mains jointes dans un geste de prière. En tons rouges :\ndétail de la fresque de la coupole <em>San Antonio de la Florida</em> (1798), Francisco Goya. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','37’50','','inherit','closed','closed','','13499-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13499,'https://localhost/?p=14272',0,'revision','',0),
  7287. (14273,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nJean-Luc Godard posant les mains sur un exemplaire de <em>De la certitude</em> (1951), Ludwig Wittgenstein, puis les retirant. En dessous, un autre livre de la Pléiade. Sur un bureau, clés et marqueurs. À côté, <em>JLG / JLG</em> (1995), Jean-Luc Godard. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','37’51','','inherit','closed','closed','','13500-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13500,'https://localhost/?p=14273',0,'revision','',0),
  7288. (14274,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nIris : détail, un visage.\n<em>Judith et Holopherne</em> (1820 - 23), Francisco de Goya. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Pourquoi Sarajevo ?\n- On dit deux cents villages brûlés\nil n’y en a que quatre vingt dix neuf\nce que vous appelez la peste\nn’est que le typhus\ntoutes les femmes n’ont pas été violées\n\n\n<b>Bande Son\n---</b>\n\nCloche d’enterrement et silence.\n\n\n<b>Écrits\n---</b>\n\nDes ténèbres\n','37’59','','inherit','closed','closed','','13501-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13501,'https://localhost/?p=14274',0,'revision','',0),
  7289. (14275,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\ntoutes les filles n’ont pas été vendues \n quelques-unes ont échappé \n on a châtré les prisonniers \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','38’10','','inherit','closed','closed','','13502-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13502,'https://localhost/?p=14275',0,'revision','',0),
  7290. (14276,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nDétail du visage d\'une femme.\n<em>Balcon</em> (1868), Edouard Manet. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nmais on leur a aussi coupé la tête…\n- Parce que la Palestine\n-... à la pointe d’une baïonnette. (Jean-Luc Godard)\n<em>Pour la Serbie</em> (1876), Victor Hugo.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nJe sais à quoi tu penses\n','38’15','','inherit','closed','closed','','13503-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13503,'https://localhost/?p=14276',0,'revision','',0),
  7291. (14277,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt cetera, et cetera. (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','38’27','','inherit','closed','closed','','13504-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13504,'https://localhost/?p=14277',0,'revision','',0),
  7292. (14278,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nQuatrièmes de couverture des exemplaires des volumes de <em>l\'Esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\nC\'est en cherchant à instruire les hommes, que l\'on peut pratiquer cette vertu générale qui comprend l\'amour de tous. L\'homme …\nque l\'on peut pratiquer cette vertu générale qui comprend l\'amour de tous.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','38’31','','inherit','closed','closed','','13505-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13505,'https://localhost/?p=14278',0,'revision','',0),
  7293. (14279,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nHommes encagoulés de blanc sur le toit d\'une voiture avec une croix en bois sur le coffre. \n\n\n<b>Voix Off et In\n---</b>\n\nL\'homme, l’homme \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','38’58','','inherit','closed','closed','','13506-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13506,'https://localhost/?p=14279',0,'revision','',0),
  7294. (14280,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nAu ralenti : homme ouvrant un canif avec sa main.\n<em>M le maudit</em> (1931), Fritz Lang. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\ncet être flexible, se pliant dans la société\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’00','','inherit','closed','closed','','13507-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13507,'https://localhost/?p=14280',0,'revision','',0),
  7295. (14281,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nHomme tenant un appareil photo. \n\n\n<b>Voix Off et In\n---</b>\n\naux pensées \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','39’07','','inherit','closed','closed','','13508-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13508,'https://localhost/?p=14281',0,'revision','',0),
  7296. (14282,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nFemme mourant dans les bras d\'un homme et s\'effondrant sur le sol.\n\n\n<b>Voix Off et In\n---</b>\n\net aux impressions des autres, est également capable de comprendre sa propre nature. lorsqu\'on la lui montre, et d\'en perdre jusqu\'au sentiment lorsqu\'on la lui dérobe. (Jean-Luc Godard).\n<em>L’esprit des lois</em> (1748), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’09','','inherit','closed','closed','','13509-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13509,'https://localhost/?p=14282',0,'revision','',0),
  7297. (14283,1,'2023-11-09 08:50:08','2023-11-09 07:50:08','<b>Images\n---</b>\n\nHomme poussant un autre homme au sol.\n<em>Francesco, giullare di dio</em> (1950), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’30','','inherit','closed','closed','','13510-revision-v1','','','2023-11-09 08:50:08','2023-11-09 07:50:08','',13510,'https://localhost/?p=14283',0,'revision','',0),
  7298. (14284,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nPhotographie d\'un réalisateur regardant à travers une caméra \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','39’39','','inherit','closed','closed','','13511-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13511,'https://localhost/?p=14284',0,'revision','',0),
  7299. (14285,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nSaturé et ouverture iris entourée de noir : mains d\'une femme avec des ciseaux coupant une pellicule. \n\n\n<b>Voix Off et In\n---</b>\n\n- Books ? \n - Yeah, in the last barrel \n - Books \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','39’46','','inherit','closed','closed','','13512-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13512,'https://localhost/?p=14285',0,'revision','',0),
  7300. (14286,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nHomme trouvant un livre et le lisant, pendant que d\'autres enfants et adultes l\'entourent avec intérêt.\n<em>Vers sa destinée</em> (1939), John Ford.\n\n\n<b>Voix Off et In\n---</b>\n\n- That\'s law.\n- Law, I know that book was about somethin’.\n- Hardly a thumb mark on it either.\n- No sir. We took mighty good care of it. Reckon you can read it, sir ?\n- I expect I could make heads or tails out of it, if I set my mind to it.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','39’48','','inherit','closed','closed','','13513-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13513,'https://localhost/?p=14286',0,'revision','',0),
  7301. (14287,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','40’07','','inherit','closed','closed','','13514-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13514,'https://localhost/?p=14287',0,'revision','',0),
  7302. (14288,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nHomme allongé, les jambes contre un arbre, un livre à la main.\n<em>Vers sa destinée</em> (1939), John Ford.\n\n\n<b>Voix Off et In\n---</b>\n\nA bas le roi !\nIl a dix femmes dans son lit pour y passer de folles nuits. A Bas le roi !\nVive la loi ! Vive la loi !\nVive le roi ! Peut contenter d’une traite. A bas la loi !\n<em>Chanson paillarde républicaine.</em>\n\n<b>Bande Son\n---</b>\n\nAccordéon, voix féminine.\n\n\n<b>Écrits\n---</b>\n\n','40’10','','inherit','closed','closed','','13515-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13515,'https://localhost/?p=14288',0,'revision','',0),
  7303. (14289,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nHomme en menaçant et poussant un autre dans des escaliers.\n<em>Le Chaos</em> (2007), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','40’32','','inherit','closed','closed','','13516-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13516,'https://localhost/?p=14289',0,'revision','',0),
  7304. (14290,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','40’36','','inherit','closed','closed','','13517-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13517,'https://localhost/?p=14290',0,'revision','',0),
  7305. (14291,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nAu ralenti : homme souriant, les dents découvertes.\n<em>Freaks</em> (1939), Tod Browning. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','40’39','','inherit','closed','closed','','13518-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13518,'https://localhost/?p=14291',0,'revision','',0),
  7306. (14292,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nFemme nue, homme lui léchant l’anus.\nExtrait d’un film pornographique.\n<em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','40’44','','inherit','closed','closed','','13519-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13519,'https://localhost/?p=14292',0,'revision','',0),
  7307. (14293,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nHomme riant, et se couvrant la bouche avec la main.\n<em>Freaks</em> (1939), Tod Browning. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et <em>Arcadiana, Op. 12 : IV. Et … (tango mortale)</em> (1994), Thomas Adès.\n\n\n<b>Écrits\n---</b>\n\n','40’51','','inherit','closed','closed','','13520-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13520,'https://localhost/?p=14293',0,'revision','',0),
  7308. (14294,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : François Truffaut.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Arcadiana, Op. 12 : IV. Et … (tango mortale)</em> (1994), Thomas Adès.\n\n<b>Écrits\n---</b>\n\n','40’57','','inherit','closed','closed','','13521-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13521,'https://localhost/?p=14294',0,'revision','',0),
  7309. (14295,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : Jacques Rivette. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’00','','inherit','closed','closed','','13522-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13522,'https://localhost/?p=14295',0,'revision','',0),
  7310. (14296,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : Eric Rohmer. \n\n\n<b>Voix Off et In\n---</b>\n\nOn sent que l’on tombera. Doit tomber. \n Va tomber. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’04','','inherit','closed','closed','','13523-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13523,'https://localhost/?p=14296',0,'revision','',0),
  7311. (14297,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nle secret et la loi \n\n','41’08','','inherit','closed','closed','','13524-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13524,'https://localhost/?p=14297',0,'revision','',0),
  7312. (14298,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nSaturé : femme attachée à un poteau, et brûlée vive.\n<em>Jeanne au bûcher</em> (1954) Roberto Rossellini. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’16','','inherit','closed','closed','','13525-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13525,'https://localhost/?p=14298',0,'revision','',0),
  7313. (14299,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’30','','inherit','closed','closed','','13526-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13526,'https://localhost/?p=14299',0,'revision','',0),
  7314. (14300,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nHomme marchant sous un arbre.\n\n\n<b>Voix Off et In\n---</b>\n\nQu’est-ce que cela fait ? Tout est grâce. Je crois qu’il est mort presque aussitôt. (Jean-Luc Godard).\n<em>Journal d\'un curé de campagne</em> (1951), Robert Bresson.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’32','','inherit','closed','closed','','13527-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13527,'https://localhost/?p=14300',0,'revision','',0),
  7315. (14301,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nChars traversant une forêt. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’37','','inherit','closed','closed','','13528-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13528,'https://localhost/?p=14301',0,'revision','',0),
  7316. (14302,1,'2023-11-09 08:50:09','2023-11-09 07:50:09','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’41','','inherit','closed','closed','','13529-revision-v1','','','2023-11-09 08:50:09','2023-11-09 07:50:09','',13529,'https://localhost/?p=14302',0,'revision','',0),
  7317. (14303,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nHommes courbés à genoux ponçant un parquet.\n<em>Les Raboteurs de parquet</em> (1875), Gustave Caillebotte.\n\n\n<b>Voix Off et In\n---</b>\n\nUn homme que la justice a retranché du nombre des vivants\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’43','','inherit','closed','closed','','13530-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13530,'https://localhost/?p=14303',0,'revision','',0),
  7318. (14304,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nHomme marchant derrière les barreaux d\'une prison.\n<em>La faux coupable</em> (1956), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\nappartient au Parquet. Le Parquet est souverain @\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','41’47','','inherit','closed','closed','','13531-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13531,'https://localhost/?p=14304',0,'revision','',0),
  7319. (14305,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nil ne dépend de personne, il ne relève que de sa conscience. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','41’54','','inherit','closed','closed','','13532-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13532,'https://localhost/?p=14305',0,'revision','',0),
  7320. (14306,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nHomme serrant les poings.\n<em>Le faux coupable</em> (1956), Alfred Hitchcock.\n\n\n<b>Voix Off et In\n---</b>\n\nLa prison appartient au Parquet\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’00','','inherit','closed','closed','','13533-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13533,'https://localhost/?p=14306',0,'revision','',0),
  7321. (14307,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nil en est \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','42’03','','inherit','closed','closed','','13534-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13534,'https://localhost/?p=14307',0,'revision','',0),
  7322. (14308,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nJuge enjoinant à une femme de garder le silence.\n<em>Jour de colère</em> (1943), Carl Theodor Dreyer.\n\n\n<b>Voix Off et In\n---</b>\n\nle maître absolu. (Jean-Luc Godard)\n<em>Scènes de la vie parisienne</em> (1820), Honoré Balzac.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’06','','inherit','closed','closed','','13535-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13535,'https://localhost/?p=14308',0,'revision','',0),
  7323. (14309,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nHomme marchant dans un long couloir obscure.\n<em>La dame de Shanghai</em> (1948), Orson Welles. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Ils ont vite été relâchés dans la nature.\n- Les Clanton et les Mclaury ont payé leur caution. C’est la loi. C’est la même pour eux que pour toi ou moi.\n- Alors il y a quelque chose qui cloche dans la loi.\n<em>Wyatt Earp</em> (1994), Lawrence Kasdan.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n- Tais toi !\n','42’10','','inherit','closed','closed','','13536-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13536,'https://localhost/?p=14309',0,'revision','',0),
  7324. (14310,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Insight</em> (2002), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\n','42’22','','inherit','closed','closed','','13537-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13537,'https://localhost/?p=14310',0,'revision','',0),
  7325. (14311,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nSaturé : hommes marchant en rang, les mains au-dessus de la tête. En arrière-plan : fumée d’incendie.\nTout va bien (1972), Jean Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’23','','inherit','closed','closed','','13538-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13538,'https://localhost/?p=14311',0,'revision','',0),
  7326. (14312,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nAu ralenti : homme désignant de la main un point hors-champ.\n<em>Alexandre Nevski</em> (1938), Sergueï Eisenstein et Dmitri Vassiliev.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’32','','inherit','closed','closed','','13539-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13539,'https://localhost/?p=14312',0,'revision','',0),
  7327. (14313,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','42’39','','inherit','closed','closed','','13540-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13540,'https://localhost/?p=14313',0,'revision','',0),
  7328. (14314,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nPrisonnier nu, assis et recroquevillé.\n<em>Eau argentée, Syrie autoportrait</em> (2014), Ossama Mohammad et Wiam Simav Bedirxan.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’44','','inherit','closed','closed','','13541-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13541,'https://localhost/?p=14314',0,'revision','',0),
  7329. (14315,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nFemme avec un foulard autour de la bouche et du nez regardant à travers les barreaux.\n<em>Tout va bien</em> (1972), Jean Luc Godard. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’52','','inherit','closed','closed','','13542-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13542,'https://localhost/?p=14315',0,'revision','',0),
  7330. (14316,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nPrisonnier d\'un camp de concentration regardant à travers la fenêtre d’un train.\n<em>Nuit et brouillard</em> (1956), Alain Resnais. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','42’57','','inherit','closed','closed','','13543-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13543,'https://localhost/?p=14316',0,'revision','',0),
  7331. (14317,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nSoldats. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','42’59','','inherit','closed','closed','','13544-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13544,'https://localhost/?p=14317',0,'revision','',0),
  7332. (14318,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nManifestation appelant à la grève générale diffusée par la programme télévisé français <em>C\'est dans l\'air</em>.\n\n<b>Voix Off et In\n---</b>\n\nGrève générale,\nJusqu’au retrait total. (2x)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’00','','inherit','closed','closed','','13545-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13545,'https://localhost/?p=14318',0,'revision','',0),
  7333. (14319,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nHomme dans l\'obscurité, le menton appuyé sur la paume de la main.\n<em>Fantômas</em> (1913), Louis Feuillade. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Et toujours le même slogan, et la même connerie.\n\nTous ensemble, tous ensemble !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’04','','inherit','closed','closed','','13546-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13546,'https://localhost/?p=14319',0,'revision','',0),
  7334. (14320,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nBlanc\n\n\n<b>Voix Off et In\n---</b>\n\nGrève générale !\nTous ensemble, tous ensemble !\nIl faut que ça continue, il faut que ça continue pour faire céder ce gouvernement. (Discours de François Ruffin)\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nla société\nest fondée\nsur un crime\nen commun\n<em>La violence et le sacré</em> (1972), René Girard.\n','43’13','','inherit','closed','closed','','13547-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13547,'https://localhost/?p=14320',0,'revision','',0),
  7335. (14321,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nHomme recourbé, la tête posée sur un bloc de bois, condamné à mort, puis décapité. <em>Le procès de Charles I</em> (1963), Guy Lessertisseur.\n\n\n<b>Voix Off et In\n---</b>\n\nSouvenez-vous ! (Sigmund Freud)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’20','','inherit','closed','closed','','13548-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13548,'https://localhost/?p=14321',0,'revision','',0),
  7336. (14322,1,'2023-11-09 08:50:10','2023-11-09 07:50:10','<b>Images\n---</b>\n\nAu ralenti : personnes dans le procès de Nuremberg (1945 - 46). \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','43’35','','inherit','closed','closed','','13549-revision-v1','','','2023-11-09 08:50:10','2023-11-09 07:50:10','',13549,'https://localhost/?p=14322',0,'revision','',0),
  7337. (14323,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Insight</em> (2002), Dobrinka Tabakova.\n\n\n<b>Écrits\n---</b>\n\n','43’46','','inherit','closed','closed','','13550-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13550,'https://localhost/?p=14323',0,'revision','',0),
  7338. (14324,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nSaturé et surexposé : femme et fleurs géantes.\n<em>La Fée Libellule</em> (1908), Georges Méliès. <em>Histoire (s) du cinéma 2a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','43’50','','inherit','closed','closed','','13551-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13551,'https://localhost/?p=14324',0,'revision','',0),
  7339. (14325,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nPhotographie de Marilyne Monroe. Iris et clignotant : corbeaux s’envolant. <em>Les Oiseaux</em> (1963), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nDevenue adulte, la jeune femme se méfiant de la liberté exagérée, dont le mot souvent répété pourrait faire craindre les excès, tout comme elle sera hostile à la république\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','44’04','','inherit','closed','closed','','13552-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13552,'https://localhost/?p=14325',0,'revision','',0),
  7340. (14326,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','44’12','','inherit','closed','closed','','13553-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13553,'https://localhost/?p=14326',0,'revision','',0),
  7341. (14327,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nBanc de montage. Puis en surimpression : détail de <em>Gabrielle d\'Estrées et une de ses sœurs</em> (1594), Anonyme, École Française.\n\nLa bobine est aussi grande que le buste de la femme et sa pointe ressemble presque à celle du sein de la femme. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nnon par principe, mais parce que l\'Europe\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','44’13','','inherit','closed','closed','','13554-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13554,'https://localhost/?p=14327',0,'revision','',0),
  7342. (14328,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nHommes prononçant un discours devant une foule, à la fin du XVII siècle.\n\n\n<b>Voix Off et In\n---</b>\n\nn\'a pas les vertus nécessaires. (Jean-Luc Godard).\n<em>Mémoire de la reine Hortense</em> (1831), Hortense de Beauharnais.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','44’16','','inherit','closed','closed','','13555-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13555,'https://localhost/?p=14328',0,'revision','',0),
  7343. (14329,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nPlusieurs personnes dansant dans une salle. <em>This Country\'s Going to War, Duck soup</em> (1933), Leo McCarey.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>This Country\'s Going to War, Duck soup</em> (1933), Leo McCarey. Et voix qui chantent.\n\n\n<b>Écrits\n---</b>\n\n','44’21','','inherit','closed','closed','','13556-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13556,'https://localhost/?p=14329',0,'revision','',0),
  7344. (14330,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes rebels, c’est vous ? Vous vous insurgez contre l’ordre \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nt \n\n','44’24','','inherit','closed','closed','','13557-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13557,'https://localhost/?p=14330',0,'revision','',0),
  7345. (14331,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nChat se retournant, l’air terrifié. Cartoon de Tex Avery. En surimpression : texte.\n<em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Non, contre les privilèges !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nmontage\ninter\ndit /\npar\nandré\nbazin\n','44’28','','inherit','closed','closed','','13558-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13558,'https://localhost/?p=14331',0,'revision','',0),
  7346. (14332,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nAdolescent parlant à une caméra, habillé en soldat avec un foulard sur la tête.\n\n\n<b>Voix Off et In\n---</b>\n\nDevant nous de la République\nL\'étendard …\n(réécriture de <em>La Marseillaise</em>, paroles de l’Abbé René Charles de Lusson)\n\n\n<b>Bande Son\n---</b>\n\nVoix masculine chantant <em>La Marseillaise</em>.\n\n\n<b>Écrits\n---</b>\n\nEt je vous invite à égorger les mécréants\n','44’34','','inherit','closed','closed','','13559-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13559,'https://localhost/?p=14332',0,'revision','',0),
  7347. (14333,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nAdolescent tirant avec une arme à feu sur un autre dans les couloirs d\'une école.\n<em>Elephant</em> (2003), Gus Van Sant.\n\n\n<b>Voix Off et In\n---</b>\n\nla sensation mentale qu’il éprouvait depuis quelques temps, se transforma en un tourbillon de ténèbres\n\n\n<b>Bande Son\n---</b>\n\nCoup de mitraillette.\n\n\n<b>Écrits\n---</b>\n\n','44’37','','inherit','closed','closed','','13560-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13560,'https://localhost/?p=14333',0,'revision','',0),
  7348. (14334,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes pauvres gens, ceux pour qui j’avais \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','44’41','','inherit','closed','closed','','13561-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13561,'https://localhost/?p=14334',0,'revision','',0),
  7349. (14335,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nAu ralenti : femme grimpant dans un wagon de marchandises d\'un train du documentaire <em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n<b>Voix Off et In\n---</b>\n\nJe les préfère [les pauvres]\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','44’44','','inherit','closed','closed','','13562-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13562,'https://localhost/?p=14335',0,'revision','',0),
  7350. (14336,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nDessin : femme, homme et deux enfants manipulant une lanterne magique.\n<em>Histoire (s) du cinéma 3b</em> (1988 - 98), Jean-Luc Godard.\n\n<b>Voix Off et In\n---</b>\n\nmais uniquement parce qu\'ils sont les vaincus. (Jean-Luc Godard)\n<em>Les Conquérants</em> (1928), André Malraux.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','44’50','','inherit','closed','closed','','13563-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13563,'https://localhost/?p=14336',0,'revision','',0),
  7351. (14337,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nGris \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','44’55','','inherit','closed','closed','','13564-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13564,'https://localhost/?p=14337',0,'revision','',0),
  7352. (14338,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nHomme avec un chapeau mexicain et une moustache, l\'air en colère.\n<em>Viva Villa !</em> (1934), Jack Conway.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n<b>Écrits\n---</b>\n\n','44’56','','inherit','closed','closed','','13565-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13565,'https://localhost/?p=14338',0,'revision','',0),
  7353. (14339,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nAu ralenti : Cavaliers passant au-dessus d’un jeune homme enterré jusqu’aux épaules.\n<em>Que Viva Mexico !</em> (1931 - 1979), Sergueï Eisenstein.\n\n\n<b>Voix Off et In\n---</b>\n\n[Bruit d\'une voiture qui freine et accélère]\nEt bien des fois abandonné cet ouvrage\n\n\n<b>Bande Son\n---</b>\n\nFreinage et accélération de la voiture.\n\n\n<b>Écrits\n---</b>\n\n','44’58','','inherit','closed','closed','','13566-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13566,'https://localhost/?p=14339',0,'revision','',0),
  7354. (14340,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nHomme passant la main à travers le feu d’une cheminée.\n<em>Les visiteurs du soir</em> (1942), Marcel Carné.\n\n\n<b>Voix Off et In\n---</b>\n\nJe suivais mon objet sans former de dessein @ je ne connaissais ni les règles\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','45’06','','inherit','closed','closed','','13567-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13567,'https://localhost/?p=14340',0,'revision','',0),
  7355. (14341,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nni les exceptions. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','45’15','','inherit','closed','closed','','13568-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13568,'https://localhost/?p=14341',0,'revision','',0),
  7356. (14342,1,'2023-11-09 08:50:11','2023-11-09 07:50:11','<b>Images\n---</b>\n\nPaysage de jour, paisible.\n<em>JLG / JLG</em> (1995), Jean-Luc Godard.\n\nEn alternance : homme à cheval semblant mort, battu par le vent.\n<em>Nan of the Music Mountain</em> (1917), G. H. Melford. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nJe ne trouvais la vérité que pour la perdre. (Jean-Luc Godard).\n<em>L’Esprit des lois</em> (1887), Montesquieu.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’16','','inherit','closed','closed','','13569-revision-v1','','','2023-11-09 08:50:11','2023-11-09 07:50:11','',13569,'https://localhost/?p=14342',0,'revision','',0),
  7357. (14343,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nIl n’y a que de traits noir. <em>Histoire de l’art, « L’art moderne », I</em>, (1921), Elie Faure,.\n<em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’19','','inherit','closed','closed','','13570-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13570,'https://localhost/?p=14343',0,'revision','',0),
  7358. (14344,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nSaturé et surexposé en tons rouges : flammes et fumée s\'élevant à l\'horizon. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nViolons. Sergei Sergeyevich Prokofiev. \n\n\n<b>Écrits\n---</b>\n\n\n\n','45’21','','inherit','closed','closed','','13571-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13571,'https://localhost/?p=14344',0,'revision','',0),
  7359. (14345,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','45’28','','inherit','closed','closed','','13572-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13572,'https://localhost/?p=14345',0,'revision','',0),
  7360. (14346,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nCouverture du livre de science-fiction.\n<em>La fin du A</em> (1984), A. E. Van Vogt.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’30','','inherit','closed','closed','','13573-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13573,'https://localhost/?p=14346',0,'revision','',0),
  7361. (14347,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nÉcoliers aux bras croisés, l\'air sérieux.\nLuis Buñuel (1932), <em>Las Hurdes. Liberté et Patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\n- Vous êtes un drôle de pistolet, c\'est ça que vous vouliez dire à la tribune, pourquoi vous ne l’avez pas dit ?\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’37','','inherit','closed','closed','','13574-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13574,'https://localhost/?p=14347',0,'revision','',0),
  7362. (14348,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nFragment de texte.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je l\'ai dit mais je n\'ai pas su me faire entendre.\n\nEn même temps : Ce qui joue ici, ce n\'est pas seulement cette vision rétrospective des choses qui considère tout le passé comme préparant le fait accompli.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\nplus la pein la la\ndans la boue j\nplus soif la lang\nse referme elle\ndroite à présent c’\nl’image\n\n[je souris encore ce n\'est plus la peine depuis longtemps ce n\'est plus la peine la langue ressort va dans la boue je reste comme ça plus soif la langue rentre la bouche se referme elle doit faire une ligne droite à présent c\'est fait j\'ai fait l\'image], <em>Image</em> (1950), Samuel Beckett. <em>Histoire (s) du cinéma 1a</em> (1988 - 98), Jean-Luc Godard.\n','45’46','','inherit','closed','closed','','13575-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13575,'https://localhost/?p=14348',0,'revision','',0),
  7363. (14349,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nAu ralenti : foule se pressant et tendant les mains.\n<em>Metropolis</em> (1927), Fritz Lang. <em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est également une certaine interférence des événements qui embrouille tout. (Jean-Luc Godard).\n<em>Guerre et Paix</em> (1867), Léon Tolstoï.\n\nLes phares, éteignez les phares !\n<em>Nuit du carrefour</em> (1932), Jean Renoir.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','45’51','','inherit','closed','closed','','13576-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13576,'https://localhost/?p=14349',0,'revision','',0),
  7364. (14350,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','46’00','','inherit','closed','closed','','13577-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13577,'https://localhost/?p=14350',0,'revision','',0),
  7365. (14351,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nFemme au nez en sang se faisant pousser par des policiers et juge parlant animeusement.\n<em>Vladimir et Rosa</em> (1971), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nPolitique, ça veut dire quoi politique ?!\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','46’02','','inherit','closed','closed','','13578-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13578,'https://localhost/?p=14351',0,'revision','',0),
  7366. (14352,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nJuge parlant animeusement.\n<em>Vent d’est</em> (1969), Jean-Luc Godard et Jean-Pierre Gorin.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','46’03','','inherit','closed','closed','','13579-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13579,'https://localhost/?p=14352',0,'revision','',0),
  7367. (14353,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nJuge en hauteur, derrière le banc, dans une salle d\'audience.\n<em>La terreur et la vertu</em> (1964), Stellio Lorenzi.\n\n\n<b>Voix Off et In\n---</b>\n\nDeux discours solennels prononcés par un homme se chevauchent.\n\nLe dieu des prêtres est différent de l’être suprême. Le véritable prêtre de l’être suprême c’est la nature, son temple, l’univers, son culte, la vertu, ses fêtes, la joie d’un grand peuple rassemblé sous ses yeux pour resserrer les doux nœuds de la fraternité universelle et pour lui présenter l’hommage des cœurs sensibles et pures. <em>Sur le rapport des idées religieuses et morales avec les principes républicains et sur les fêtes nationales</em> (1866), Maximilien de Robespierre.\n\n- Vous devez savoir, si le ressort du gouvernement populaire dans la paix est la vertu. En temps de guerre, le ressort du gouvernement populaire est par nécessité la terreur, mais toujours la vertu,\ncar la vertu sans la terreur est impuissante, mais la terreur sans la vertue est funeste. <em>Sur les principes de morale politique qui doivent guider la Convention nationale dans l’administration intérieure de la République</em> (1794), Maximilien de Robespierre.\n- Tout cela est bel et bon\n\n\n<b>Bande Son\n---</b>\n\nApplaudissements.\n\n\n<b>Écrits\n---</b>\n\n','46’06','','inherit','closed','closed','','13580-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13580,'https://localhost/?p=14353',0,'revision','',0),
  7368. (14354,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nCouverture d’un exemplaire de <em>De l’Esprit des Lois</em> (1748), Montesquieu.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nApplaudissements.\n\n\n<b>Écrits\n---</b>\n\n','46’24','','inherit','closed','closed','','13581-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13581,'https://localhost/?p=14354',0,'revision','',0),
  7369. (14355,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nSurexposé et saturé en tons rouge : photographie des manifestations en Grèce (2015), <em>Alkis Konstantinidis</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','46’27','','inherit','closed','closed','','13582-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13582,'https://localhost/?p=14355',0,'revision','',0),
  7370. (14356,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nSurexposée et saturé en tons rouges et jaunes : presque illisible. \n\n\n<b>Voix Off et In\n---</b>\n\n- Qu’est-ce qu’elle dit ? J’entends rien ! \n \n\n\n<b>Bande Son\n---</b>\n\nId. et vagues \n\n\n<b>Écrits\n---</b>\n\n\n\n','46’42','','inherit','closed','closed','','13583-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13583,'https://localhost/?p=14356',0,'revision','',0),
  7371. (14357,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nEn surimpression : défilement d’une pellicule dans un iris. Couple au projecteur.\n<em>La Prison</em> (1949), Ingmar Bergman. <em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Elle dit que les pauvres sauveront le monde\n<em>Notre Musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','46’52','','inherit','closed','closed','','13584-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13584,'https://localhost/?p=14357',0,'revision','',0),
  7372. (14358,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','46’59','','inherit','closed','closed','','13585-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13585,'https://localhost/?p=14358',0,'revision','',0),
  7373. (14359,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nFemme mourant dans les bras d\'une autre femme essayant de parler à un homme devant elle répétant à haute voix ce qu\'il entend.\n<em>Notre Musique</em> (2004), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIls ne demanderont rien en échange. Ils ne savent pas le prix du service rendu. Ils feront cette colossale affaire.\n\n\n<b>Bande Son\n---</b>\n\nBrusquement : silence.\n\n\n<b>Écrits\n---</b>\n\n','47’01','','inherit','closed','closed','','13586-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13586,'https://localhost/?p=14359',0,'revision','',0),
  7374. (14360,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt … \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','47’46','','inherit','closed','closed','','13587-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13587,'https://localhost/?p=14360',0,'revision','',0),
  7375. (14361,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nFemme effrayée à la vue d\'un monstre, puis s’évanouissant.\n<em>La belle et la bête</em> (1946), Jean Cocteau. <em>Histoire (s) du cinéma 2b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nOù allez-vous ?\n\n\n<b>Bande Son\n---</b>\n\nBande son du film <em>La belle et la bête</em> (1946), Jean Cocteau.\n\n\n<b>Écrits\n---</b>\n\n','47’50','','inherit','closed','closed','','13588-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13588,'https://localhost/?p=14361',0,'revision','',0),
  7376. (14362,1,'2023-11-09 08:50:12','2023-11-09 07:50:12','<b>Images\n---</b>\n\nFemme avec bâton à la main et policier avec un chapeau saluant le publique.\n<em>Un drame chez les fantoches</em> (1908), Emile Cohl.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','47’58','','inherit','closed','closed','','13589-revision-v1','','','2023-11-09 08:50:12','2023-11-09 07:50:12','',13589,'https://localhost/?p=14362',0,'revision','',0),
  7377. (14363,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','48’00','','inherit','closed','closed','','13590-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13590,'https://localhost/?p=14363',0,'revision','',0),
  7378. (14364,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n5 \n LA RÉGION CENTRALE \n (Michael Snow, 1971) \n\n','48’02','','inherit','closed','closed','','13591-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13591,'https://localhost/?p=14364',0,'revision','',0),
  7379. (14365,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nSaturé et au ralenti : chemin avec des pierres.\n<em>La Région Centrale</em> (1971), Michael Snow.\n\n\n<b>Voix Off et In\n---</b>\n\nC’est une brève histoire, que celle de l’extinction en masse des espèces.\nEn bref, le plus gros des dégradations environnementales d’aujourd’hui est le fait de deux groupes. Le milliard le plus riche et le milliard le plus pauvre. Les plus riches détruisent l’environnement global par leur surconsommation rapide des ressources et leur production de déchets. Tandis que les plus pauvres détruisent leurs ressources par nécessité et par absence de choix.\n<em>Une brève histoire de l\'extinction en masse des espèces</em> (2010), Franz J.\nBroswimmer.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','48’16','','inherit','closed','closed','','13592-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13592,'https://localhost/?p=14365',0,'revision','',0),
  7380. (14366,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nSaturé et surexposé en tons rouges et jaunes : homme assis. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','48’58','','inherit','closed','closed','','13593-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13593,'https://localhost/?p=14366',0,'revision','',0),
  7381. (14367,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nSaturé et surexposé en tons bleus : presque illisible.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','49’00','','inherit','closed','closed','','13594-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13594,'https://localhost/?p=14367',0,'revision','',0),
  7382. (14368,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nHomme portant un chapeau haut de forme et tenant une loupe devant son œil.\n<em>Dossier Secret [Mr Arkadin]</em> (1955), Orson Welles.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nBande son de <em>Dossier Secret [Mr Arkadin]</em> (1955), Orson Welles.\n\n\n<b>Écrits\n---</b>\n\n','49’03','','inherit','closed','closed','','13595-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13595,'https://localhost/?p=14368',0,'revision','',0),
  7383. (14369,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nHommage\nA la Catalogne\n','49’15','','inherit','closed','closed','','13596-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13596,'https://localhost/?p=14369',0,'revision','',0),
  7384. (14370,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','49’18','','inherit','closed','closed','','13597-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13597,'https://localhost/?p=14370',0,'revision','',0),
  7385. (14371,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nHomme tenant d\'une main le revers de sa veste, remonté jusqu\'au cou.\n<em>La terre</em> (1930), Alexandre Dovjenko.\n<em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nEt pourtant aimer ceux qui sont capable de faire cela. Etre aimé d\'eux peut-être. Qu\'attendre de plus de l\'amour ? Quelle rage de leur demander encore des comptes. Mais lui aussi parlait lentement. Cet amour ne t\'empêchait pas de coucher avec ce type, alors que tu pensais si nous étions vivants.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','49’24','','inherit','closed','closed','','13598-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13598,'https://localhost/?p=14371',0,'revision','',0),
  7386. (14372,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nFemme se tenant la main devant la bouche, l\'air perdu et pensif.\n<em>La terre</em> (1930), Alexandre Dovjenko. <em>Liberté et patrie</em> (2002), Jean-Luc Godard et Anne-Marie Miéville.\n\n\n<b>Voix Off et In\n---</b>\n\nMais nous sommes vivants ! – Vous m\'interrogez avec quelque chose qui n\'est pas vivant en vous et qui cherche en moi quelque chose qui ne peux pas vivre. Cela c’est une souffrance, c\'est l\'angoisse, c\'est l\'attente, lorsque le temps est toujours de trop et que toutefois le temps manque au temps... Dans l’attente le temps qui permet d’attendre se perd pour mieux répondre à l’attente. Et l’attente qui a lieu dans le temps ouvre le temps à l’absence de temps où il n’y a pas lieu d’attendre. (Jean-Luc Godard).\n<em>L’attente, l’oubli</em> (1962), Maurice Blanchot.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','50’03','','inherit','closed','closed','','13599-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13599,'https://localhost/?p=14372',0,'revision','',0),
  7387. (14373,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nHe oui Ninon, c’est une fille \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','50’58','','inherit','closed','closed','','13600-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13600,'https://localhost/?p=14373',0,'revision','',0),
  7388. (14374,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nMains d\'un vieil homme tournées vers le haut.\n<em>Histoire (s) du cinéma 1b / 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl y a les cinq doigts. On accomplirait l’acte rédempteur.\nLa main. (Jean-Luc Godard).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’00','','inherit','closed','closed','','13601-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13601,'https://localhost/?p=14374',0,'revision','',0),
  7389. (14375,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nDessin de main tournée vers le bas.\n<em>Liberté et patrie</em>, Jean-Luc Godard et Anne-Marie Miéville (2002).\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’09','','inherit','closed','closed','','13602-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13602,'https://localhost/?p=14375',0,'revision','',0),
  7390. (14376,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nMain d\'homme reposant sur une main de femme. La main de femme repose sur une épaule. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’12','','inherit','closed','closed','','13603-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13603,'https://localhost/?p=14376',0,'revision','',0),
  7391. (14377,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt un long moment après \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’16','','inherit','closed','closed','','13604-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13604,'https://localhost/?p=14377',0,'revision','',0),
  7392. (14378,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nDessin de Bécassine. Caumery et Pinchon. \n\n\n<b>Voix Off et In\n---</b>\n\nParce que les histoires que l\'on raconte vont moins vite que les actions \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’20','','inherit','closed','closed','','13605-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13605,'https://localhost/?p=14378',0,'revision','',0),
  7393. (14379,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nne s\'accomplissent (Jean-Luc Godard). \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','51’29','','inherit','closed','closed','','13606-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13606,'https://localhost/?p=14379',0,'revision','',0),
  7394. (14380,1,'2023-11-09 08:50:13','2023-11-09 07:50:13','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','51’32','','inherit','closed','closed','','13607-revision-v1','','','2023-11-09 08:50:13','2023-11-09 07:50:13','',13607,'https://localhost/?p=14380',0,'revision','',0),
  7395. (14381,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nFemme tenant un trousseau de clés à la main et touchant une clé sur laquelle est écrit « unica ».\n<em>Les Enchaînés, [Notorious]</em> (1946), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’35','','inherit','closed','closed','','13608-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13608,'https://localhost/?p=14381',0,'revision','',0),
  7396. (14382,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nLa femme serrant dans ses bras un homme et, derrière sa tête, dérobant une clé d’un trousseau.\n<em>Les Enchaînés, [Notorious]</em> (1946), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','51’51','','inherit','closed','closed','','13609-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13609,'https://localhost/?p=14382',0,'revision','',0),
  7397. (14383,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nSOUS LES YEUX \n DE L’OCCIDENT \n\n','51’57','','inherit','closed','closed','','13610-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13610,'https://localhost/?p=14383',0,'revision','',0),
  7398. (14384,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nHomme poussé les mains derrière le dos par d\'autres hommes. Images retransmises dans le documentaire\n<em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nCris\n\n\n<b>Écrits\n---</b>\n\n','51’59','','inherit','closed','closed','','13611-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13611,'https://localhost/?p=14384',0,'revision','',0),
  7399. (14385,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nPetite fille portant un nourrisson sur l\'épaule et, à côté d\'elle, trois autres enfants, habillés de haillons.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','52’01','','inherit','closed','closed','','13612-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13612,'https://localhost/?p=14385',0,'revision','',0),
  7400. (14386,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’06','','inherit','closed','closed','','13613-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13613,'https://localhost/?p=14386',0,'revision','',0),
  7401. (14387,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nDans un roman,\n\n\n<b>Bande Son\n---</b>\n\nArpèges à la guitare. <em>Raf Raf</em> (1991), Anouar Brahem.\n\n\n<b>Écrits\n---</b>\n\nHEUREUSE ARABIE\n<em>L\'Arabie heureuse : souvenirs de voyages en Afrique et en Asie</em> (1860), Alexandre Dumas.\n','52’08','','inherit','closed','closed','','13614-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13614,'https://localhost/?p=14387',0,'revision','',0),
  7402. (14388,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nSaturé : enfant sur le toit d\'une maison, vu de dos, regardant le reste de la ville.\n\n\n<b>Voix Off et In\n---</b>\n\nDans un roman l\'intérêt, dans le pire des cas, vient du fait que\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','52’10','','inherit','closed','closed','','13615-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13615,'https://localhost/?p=14388',0,'revision','',0),
  7403. (14389,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\ntrès souvent les situations quelconques \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’21','','inherit','closed','closed','','13616-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13616,'https://localhost/?p=14389',0,'revision','',0),
  7404. (14390,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nFemme tenant à la main une clé.\n<em>Meshes of afternoon</em> (1943), Maya Deren, Alexandr Hackenschmied.\n\n\n<b>Voix Off et In\n---</b>\n\nont un comportement assez\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','52’23','','inherit','closed','closed','','13617-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13617,'https://localhost/?p=14390',0,'revision','',0),
  7405. (14391,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nproche du pire des cas. \n (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nLES \n PARADIS \n PERDUS \n\n','52’26','','inherit','closed','closed','','13618-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13618,'https://localhost/?p=14391',0,'revision','',0),
  7406. (14392,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nDessin de soldat avec une épée et un bouclier orné d\'un croissant et d’une étoile. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoix féminine chantant en arabe. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’33','','inherit','closed','closed','','13619-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13619,'https://localhost/?p=14392',0,'revision','',0),
  7407. (14393,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nArmée avec des lances, des épées et des boucliers en marche.\n<em>Constantinople</em>, Faruk Aksoy, (2012).\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Taabani Nibniou</em>, Hedi Jouini (1993).\n\n\n<b>Écrits\n---</b>\n\n','52’35','','inherit','closed','closed','','13620-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13620,'https://localhost/?p=14393',0,'revision','',0),
  7408. (14394,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nSaturé en tons rouge : homme agenouillé avec un drapeau à la main.\n<em>Le visage de Dieu</em> (2014), Bahram Aloui.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','52’41','','inherit','closed','closed','','13621-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13621,'https://localhost/?p=14394',0,'revision','',0),
  7409. (14395,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nTourné en noir et blanc et surexposé : photographie de Hosni Moubarak, ancien Président de la République arabe d\'Égypte. \n\n\n<b>Voix Off et In\n---</b>\n\nJe peux mourir tranquille \n (Albert Cossery) \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’45','','inherit','closed','closed','','13622-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13622,'https://localhost/?p=14395',0,'revision','',0),
  7410. (14396,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nHomme parlant à une femme vêtue d\'une tenue traditionnelle arabe.\n<em>La bandera</em> (1935), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\nTe souviens-tu encore comment nous entraînions autrefois notre pensée. Le plus souvent nous partions d\'un rêve. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','52’47','','inherit','closed','closed','','13623-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13623,'https://localhost/?p=14396',0,'revision','',0),
  7411. (14397,1,'2023-11-09 08:50:14','2023-11-09 07:50:14','<b>Images\n---</b>\n\nJeune homme dormant avec un keffieh. En surimpression : femmes agées dansant et jouant cérémonieusement de la musique autour d\'une jeune femme à la poitrine nue. \n\n\n<b>Voix Off et In\n---</b>\n\nJe me sens toujours très bien les mains dans les poches même si j’ai pas un sou. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’54','','inherit','closed','closed','','13624-revision-v1','','','2023-11-09 08:50:14','2023-11-09 07:50:14','',13624,'https://localhost/?p=14397',0,'revision','',0),
  7412. (14398,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nPhotographie en noir et blanc d’un homme âgé assis avec à côté de lui un âne portant une télévision sur son dos. \n\n\n<b>Voix Off et In\n---</b>\n\nJe me suis toujours senti un fils de roi. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','52’58','','inherit','closed','closed','','13625-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13625,'https://localhost/?p=14398',0,'revision','',0),
  7413. (14399,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nHomme âgé assis avec à côté de lui un âne portant une télévision sur son dos. \n\n\n<b>Voix Off et In\n---</b>\n\nMais tous les égyptiens se sentent un peu fils de roi. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','53’01','','inherit','closed','closed','','13626-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13626,'https://localhost/?p=14399',0,'revision','',0),
  7414. (14400,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nSaturé en tous rouge : désert.\n<em>The Thief of Baghdad</em> (1978), Cline Donner.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nAu violon : musique traditionnelle arabe. Personnes discutant.\n\n\n<b>Écrits\n---</b>\n\n','53’04','','inherit','closed','closed','','13627-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13627,'https://localhost/?p=14400',0,'revision','',0),
  7415. (14401,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nSaturé en tons rouge : homme portant de l’encens fumant.\n<em>Aladdin\'s magic lamp</em> (1967), Boris Rytsarev.\n\n\n<b>Voix Off et In\n---</b>\n\nL’orient est plus philosophe que l’occident,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’07','','inherit','closed','closed','','13628-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13628,'https://localhost/?p=14401',0,'revision','',0),
  7416. (14402,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nJeune homme et jeune femme ayant des rapports sexuels la nuit dans une chambre.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\net le moindre vanupieds vous dira de choses extraordinaires\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’15','','inherit','closed','closed','','13629-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13629,'https://localhost/?p=14402',0,'revision','',0),
  7417. (14403,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSur la vie, sur le monde. Et vous entendez chacun est philosophe \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','53’18','','inherit','closed','closed','','13630-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13630,'https://localhost/?p=14403',0,'revision','',0),
  7418. (14404,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nTrois personnes sur un tapis volant.\n<em>Le voleur de Bagdad</em> (1924), Raoul Walsh.\n\n\n<b>Voix Off et In\n---</b>\n\nParce que il a le temps de réfléchir, de penser, de voir le monde passer\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’26','','inherit','closed','closed','','13631-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13631,'https://localhost/?p=14404',0,'revision','',0),
  7419. (14405,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nArmée romaine devant les murs d\'une ville du Moyen-Orient.\n<em>Il Messia</em> (1975), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nEn occident\n(Albert Cossery)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','53’29','','inherit','closed','closed','','13632-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13632,'https://localhost/?p=14405',0,'revision','',0),
  7420. (14406,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nCroisés à cheval avec des armures et des drapeaux passant sous les acclamations de la foule.\n<em>The Crusades</em> (1935), Cecil B DeMille.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis cris d’acclamation.\n\n\n<b>Écrits\n---</b>\n\n','53’33','','inherit','closed','closed','','13633-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13633,'https://localhost/?p=14406',0,'revision','',0),
  7421. (14407,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','53’38','','inherit','closed','closed','','13634-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13634,'https://localhost/?p=14407',0,'revision','',0),
  7422. (14408,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nSaturé : soldats en guerre.\n<em>Adieu Bonaparte</em> (1985), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\nArrêtez ! Oh le con.\n- Vous ne savez pas qui vous êtes, vous voyez bien. Le christianisme, c’est le refus de se connaître, c’est la mort du langage.\n<em>Détective</em> (1985), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nTirs au pistolet, puis klaxon.\n\n\n<b>Écrits\n---</b>\n\n','53’41','','inherit','closed','closed','','13635-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13635,'https://localhost/?p=14408',0,'revision','',0),
  7423. (14409,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nInscriptions en arabe sur fond noir du film <em>Socialisme</em> (2010), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nSilence je vous ai dit.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','53’57','','inherit','closed','closed','','13636-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13636,'https://localhost/?p=14409',0,'revision','',0),
  7424. (14410,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nAu ralenti : femme se précipitant pour ramasser un tissu et s’en couvrant jusqu\'au nez. \n\n\n<b>Voix Off et In\n---</b>\n\nTout à coup, il aperçut à l’horizon derrière Tunis, comme des brouillards légers, qui se traînaient contre le sol @ \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','54’03','','inherit','closed','closed','','13637-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13637,'https://localhost/?p=14410',0,'revision','',0),
  7425. (14411,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nSaturé et surexposé : personnages presque invisibles. \n\n\n<b>Voix Off et In\n---</b>\n\npuis ce fut un grand rideau de poudre grise perpendiculairement étalé, et, dans les tourbillons \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','54’15','','inherit','closed','closed','','13638-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13638,'https://localhost/?p=14411',0,'revision','',0),
  7426. (14412,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nSurexposé, et saturé en tons bleu clair, rouges et verts : navire voguant dans la mer et drapeaux qui flottent dans le vent.\n\n\n<b>Voix Off et In\n---</b>\n\nde cette masse nombreuse,\ndes têtes de dromadaires, des lances,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','54’24','','inherit','closed','closed','','13639-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13639,'https://localhost/?p=14412',0,'revision','',0),
  7427. (14413,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : mer avec de la vapeur flottant au loin dans l’air. \n\n\n<b>Voix Off et In\n---</b>\n\ndes boucliers parurent. C’était l’armée des Barbares qui s’avançait sur Carthage. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','54’30','','inherit','closed','closed','','13640-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13640,'https://localhost/?p=14413',0,'revision','',0),
  7428. (14414,1,'2023-11-09 08:50:15','2023-11-09 07:50:15','<b>Images\n---</b>\n\nCaravane dans le désert.\n<em>Il Messia</em> (1975), Roberto Rossellini.\n\n\n<b>Voix Off et In\n---</b>\n\nOh Salammbô.(Jean-Luc Godard).\n<em>Salammbô</em> (1862), Gustave Flaubert.\n\n\n<b>Bande Son\n---</b>\n\n<em>Aube rouge à Grozny</em> (2000), Anouar Trio Brahem.\n\n\n<b>Écrits\n---</b>\n\n','54’37','','inherit','closed','closed','','13641-revision-v1','','','2023-11-09 08:50:15','2023-11-09 07:50:15','',13641,'https://localhost/?p=14414',0,'revision','',0),
  7429. (14415,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','55’07','','inherit','closed','closed','','13642-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13642,'https://localhost/?p=14415',0,'revision','',0),
  7430. (14416,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nSaturé, au ralenti : deux mains déboutonnant une robe bleue.\n<em>Méditerranée</em> (1963), Jean Daniel Pollet.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','55’11','','inherit','closed','closed','','13643-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13643,'https://localhost/?p=14416',0,'revision','',0),
  7431. (14417,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nDans l’ombre de l’Occident. \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nCES FLEURS \n PERDUES \n DANS LE VENT \n\n','55’33','','inherit','closed','closed','','13644-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13644,'https://localhost/?p=14417',0,'revision','',0),
  7432. (14418,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nSaturé en tons jaunes et rouges : hommes creusant avec des pelles dans le désert. Groupe d\'arabophones essayant d\'embarquer sur un bateau en plein désert.\n<em>Les Baliseurs du désert</em> (1984), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nIl est certain que la représentation, plus particulièrement l’acte de représenter (et donc de réduire) implique presque toujours\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','55’35','','inherit','closed','closed','','13645-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13645,'https://localhost/?p=14418',0,'revision','',0),
  7433. (14419,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nFemme nue dans dans une réplique miniature de ville du Moyen-Orient, puis capturée par un homme à cheval déguisé en soldat croisé.\n<em>Passion</em> (1982), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nimplique presque toujours une violence envers le sujet de la représentation. (Jean-Luc Godard). <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','55’59','','inherit','closed','closed','','13646-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13646,'https://localhost/?p=14419',0,'revision','',0),
  7434. (14420,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nAu ralenti, saturé de bleu : croisé levant l’épée pour frapper.\n<em>Passion</em> (1982), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl y a\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','56’02','','inherit','closed','closed','','13647-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13647,'https://localhost/?p=14420',0,'revision','',0),
  7435. (14421,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nun réel contraste entre la violence de l’acte de représenter et le calme intérieur de la représentation elle-même. (Jean-Luc Godard). <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','56’10','','inherit','closed','closed','','13648-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13648,'https://localhost/?p=14421',0,'revision','',0),
  7436. (14422,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nSaturé : film en couleur pris avec une petite caméra numérique en 2016 d’une ville de bord de mer avec un homme à vélo. Au ralenti : deux enfants cherchant quelque chose entre les rochers, les pieds dans la mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, et vagues. \n\n\n<b>Écrits\n---</b>\n\n\n\n','56’22','','inherit','closed','closed','','13649-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13649,'https://localhost/?p=14422',0,'revision','',0),
  7437. (14423,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nFoule de personnes se bousculant dans la rue.\n<em>De l’origine du XX siècle</em> (2000), Jean. Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIls sont pris entre “ salamalecs ” et “ charabia ”, et les Arabes n\'intéressent pas “ le monde ”. Les musulmans non plus. Si l\'islam retient politiquement l\'attention, le “ monde arabe ” est d’abord décor et paysage.\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','56’40','','inherit','closed','closed','','13650-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13650,'https://localhost/?p=14423',0,'revision','',0),
  7438. (14424,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nDeux soldats intimant à une personne de lever les mains et de faire face au mur. \n\n\n<b>Voix Off et In\n---</b>\n\nLe monde arabe s\'il existe en tant que monde n\'est jamais regardé en tant que tel. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','57’09','','inherit','closed','closed','','13651-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13651,'https://localhost/?p=14424',0,'revision','',0),
  7439. (14425,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nDe nouveau, petite fille portant un bébé sur les épaules, trois autres enfants habillés de haillons à ses côtés.\n<em>De l’origine du XXI siècle</em> (2000), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nIl est toujours examiné comme un ensemble relativement à un pays du moyen-orient. <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’17','','inherit','closed','closed','','13652-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13652,'https://localhost/?p=14425',0,'revision','',0),
  7440. (14426,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','57’19','','inherit','closed','closed','','13653-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13653,'https://localhost/?p=14426',0,'revision','',0),
  7441. (14427,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nJeune femme ramant sur un lac, aidée par un jeune homme assis derrière elle.\n<em>Les Dernières vacances</em>, (1947), Roger Leenhardt. <em>Histoire (s) du cinéma 4b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nCes citoyens, ces amants de la patrie, dans l’excès de leur passion, auraient voulu mourir pour elle\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’23','','inherit','closed','closed','','13654-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13654,'https://localhost/?p=14427',0,'revision','',0),
  7442. (14428,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nSaturé en tons bleus : homme à cheval au milieu d\'un paysage vallonné.\n<em>Paysage et cavalier</em>, aquarelle réalisée au cours du trajet Tanger-Meknès (1832), Eugène Delacroix.\n\n\n<b>Voix Off et In\n---</b>\n\net ils allaient la tuer.\n<em>Histoire de la Révolution française</em> (1847 - 1853), Jules Michelet.\n\nLes défauts\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’33','','inherit','closed','closed','','13655-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13655,'https://localhost/?p=14428',0,'revision','',0),
  7443. (14429,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nSurexposé : autre aquarelle d’homme au turban à cheval de Eugène Delacroix. \n\n\n<b>Voix Off et In\n---</b>\n\nEt les enjeux \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','57’39','','inherit','closed','closed','','13656-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13656,'https://localhost/?p=14429',0,'revision','',0),
  7444. (14430,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nFemme étendant du linge, autre femme se lavant au bord d\'un ruisseau.\n<em>Femme qui se lave et sa servante Maures</em> (1854), Eugene Delacroix\nPeinture.\n\n\n<b>Voix Off et In\n---</b>\n\nLes arabes, les arabes peuvent-ils parler. (Jean-Luc Godard). <em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’42','','inherit','closed','closed','','13657-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13657,'https://localhost/?p=14430',0,'revision','',0),
  7445. (14431,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nFemme interpellée bruyamment alors qu\'elle traverse une rue dans une ville du Moyen-Orient, puis se retournant.\n<em>Djamila</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\nDjamila, Djamila !\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’52','','inherit','closed','closed','','13658-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13658,'https://localhost/?p=14431',0,'revision','',0),
  7446. (14432,1,'2023-11-09 08:50:16','2023-11-09 07:50:16','<b>Images\n---</b>\n\nJeune homme levant les mains et montrant les paumes, puis plaçant d’un geste lent la main droite sur la paume gauche.\n<em>Les Baliseurs du désert</em>, Nacer Khémir (1984), cité dans <em>Voyage à Tunis</em> (2007), Bruno Moll.\n\n\n<b>Voix Off et In\n---</b>\n\nLes arabes peuvent-ils parler. (Jean-Luc Godard).\n<em>Dans l\'ombre de l\'Occident @ les Arabes peuvent-ils parler ?</em> (2014), Edward W. Saïd et Seloua Luste Boulbina.\n\nÀ demi-voix, d’une voix douce et faible disant de grandes choses : d’importantes, d’étonnantes, de profondes et justes choses,\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','57’58','','inherit','closed','closed','','13659-revision-v1','','','2023-11-09 08:50:16','2023-11-09 07:50:16','',13659,'https://localhost/?p=14432',0,'revision','',0),
  7447. (14433,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nHomme attrapant une colombe et la sortant de sa petite maison accrochée au mur.\n<em>Le collier perdu de la colombe</em> (1991), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nd’une voix douce et faible. La menace du tonnerre, la présence d’absolus dans une voix de rougegorge\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','58’16','','inherit','closed','closed','','13660-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13660,'https://localhost/?p=14433',0,'revision','',0),
  7448. (14434,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nSaturé : homme et enfant marchant dans le désert.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir, cité dans <em>Voyage à Tunis</em> (2007), Bruno Moll.\n\n\n<b>Voix Off et In\n---</b>\n\ndans le détail fin d’une flûte, et la délicatesse du son pur. Tout le soleil suggérait, au moyen d’un demi-sourire demie voix...\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','58’27','','inherit','closed','closed','','13661-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13661,'https://localhost/?p=14434',0,'revision','',0),
  7449. (14435,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nHomme se jetant sur une robe posée sur le toit d\'une maison de terre cuite dans une ville du Moyen-Orient.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','58’36','','inherit','closed','closed','','13662-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13662,'https://localhost/?p=14435',0,'revision','',0),
  7450. (14436,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nSaturé : maisons se reflétant dans l\'eau. \n\n\n<b>Voix Off et In\n---</b>\n\nEt d’une sorte de murmure en français infiniment pur. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','58’44','','inherit','closed','closed','','13663-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13663,'https://localhost/?p=14436',0,'revision','',0),
  7451. (14437,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nAu ralenti : enfant poussant une roue de voiture.\n\n\n<b>Voix Off et In\n---</b>\n\nQui n’eût saisi les mots, qui l’eût ouï à quelque distance, aurait cru qu’il disait des riens. Et c’étaient des riens pour l’oreille, rassurée. (Julie Delpy).\n<em>À propos de Stéphane Mallarmé. À demi-voix</em> (1939), Paul Valery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','58’55','','inherit','closed','closed','','13664-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13664,'https://localhost/?p=14437',0,'revision','',0),
  7452. (14438,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nTremblant de droite à gauche : ville en ruines avec des soldats cachés, armes à la main.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\n','59’04','','inherit','closed','closed','','13665-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13665,'https://localhost/?p=14438',0,'revision','',0),
  7453. (14439,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nSurexposé : pinceau projetant de l\'aquarelle sur une feuille de papier. \n\n\n<b>Voix Off et In\n---</b>\n\nMais ce contraste et cette musique cette voix ridant l’air à peine cette puissance chuchotée ces perspectives, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','59’10','','inherit','closed','closed','','13666-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13666,'https://localhost/?p=14439',0,'revision','',0),
  7454. (14440,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nEnfants jouant dans la rue, autres enfants avec un scooter et un chat.\n\n\n<b>Voix Off et In\n---</b>\n\nces découvertes, ces abîmes et ces manœuvres devinées ce sourire congédiant l’univers. <em>Psaume sur une voix, Autres Rhumbs</em> (1927), Paul Valéry. <em>Histoires du cinéma 4a</em> (1989 - 99), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nVoix d’enfants.\n\n\n<b>Écrits\n---</b>\n\n','59’22','','inherit','closed','closed','','13667-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13667,'https://localhost/?p=14440',0,'revision','',0),
  7455. (14441,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nJeune femme parlant au téléphone en arabe, observée par un homme au chapeau de prière musulman situé derrière la vitre d’une cabine téléphonique.\n<em>Gare Centrale</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\nJeune femme [traduction du dialecte égyptien]:\nIl faut que je vois. Il faut que je te vois, tu as été absent pendant quatre ans. Je m\'en fiche. Dis leur n\'importe quoi. Je t\'attendrai à la gare. Mon chéri...\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','59’36','','inherit','closed','closed','','13668-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13668,'https://localhost/?p=14441',0,'revision','',0),
  7456. (14442,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nVoix d\'un enfant criant [traduction du dialecte palestinien]:\nMonsieur le juge, la guerre a brûlé mes livres !\n<em>Histoires du cinéma 4b</em> (1989 - 99), Jean-Luc Godard.\n\nVoix d’homme récitant un poème du poète palestinien Mahmoud Darwich en arabe [traduction de l’arabe classique]:\nJe t\'ai donné un instant. Et j\'ai passé un moment. Mais ton visage n\'est pas... et ton kohl un maquillage similaire au mascara] est devenu ciment. Et les fusils. J\'ai eu peur de la mort mais j\'ai souris. J\'ai porté la blessure des blessés pour un instant. Oh mon dieu... Je t\'ai cherché sous le palmier. On l\'a traîné...\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','59’57','','inherit','closed','closed','','13669-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13669,'https://localhost/?p=14442',0,'revision','',0),
  7457. (14443,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nPeut-être \n Que \n Dans \n Mille et un \n Jours \n \n Racontera \n cela \n\n','1h00’03','','inherit','closed','closed','','13670-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13670,'https://localhost/?p=14443',0,'revision','',0),
  7458. (14444,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nClignotant : deux nouveaux mots s’ajoutent au texte précédemment affiché.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nPeut-être\nQue\nDans\nMille et un\nJours\nScheherazade\nRacontera\nCela\nautrement\n','1h00’04','','inherit','closed','closed','','13671-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13671,'https://localhost/?p=14444',0,'revision','',0),
  7459. (14445,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nPhotographie d\'une personne morte et défigurée, au crâne fendu.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h00’09','','inherit','closed','closed','','13672-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13672,'https://localhost/?p=14445',0,'revision','',0),
  7460. (14446,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nFemme parlant devant un brasier. Main d\'une autre personne s\'approchant et posant l\'index sur sa lèvre inférieure.\n<em>Les silences du passé</em> (1994), Moufida Tlatli.\n\n\n<b>Voix Off et In\n---</b>\n\nVoix d\'un homme parlant en arabe. <em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Bande Son\n---</b>\n\nCoups de mitraillette. <em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Écrits\n---</b>\n\n','1h00’13','','inherit','closed','closed','','13673-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13673,'https://localhost/?p=14446',0,'revision','',0),
  7461. (14447,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nDe nouveau, personne morte et défigurée au crâne fendu.\n<em>Ici et ailleurs</em> (1976), Jean-Luc Godard / Groupe Dziga Vertov.\n\n\n<b>Voix Off et In\n---</b>\n\nId.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h00’22','','inherit','closed','closed','','13674-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13674,'https://localhost/?p=14447',0,'revision','',0),
  7462. (14448,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nSaturé : cadavres dans un paysage désertique. \n\n\n<b>Voix Off et In\n---</b>\n\nId. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h00’31','','inherit','closed','closed','','13675-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13675,'https://localhost/?p=14448',0,'revision','',0),
  7463. (14449,1,'2023-11-09 08:50:17','2023-11-09 07:50:17','<b>Images\n---</b>\n\nSaturé en tons bleus : personne nageant dans l\'eau. \n\n\n<b>Voix Off et In\n---</b>\n\nId. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h00’41','','inherit','closed','closed','','13676-revision-v1','','','2023-11-09 08:50:17','2023-11-09 07:50:17','',13676,'https://localhost/?p=14449',0,'revision','',0),
  7464. (14450,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nSaturée en tons verts et rouges : femmes habillées plongeant dans un fleuve.\n<em>La saison des hommes</em> (2002), Moufida Tlatli.\n\n\n<b>Voix Off et In\n---</b>\n\nId.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h00’47','','inherit','closed','closed','','13677-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13677,'https://localhost/?p=14450',0,'revision','',0),
  7465. (14451,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nLivre feuilleté\n<em>L\'Arabie heureuse. Souvenirs de voyages en Afrique et en Asie</em> (1860), Hadji-Abd-El-Hamid Bey, publié par Alexandre Dumas.\n\n\n<b>Voix Off et In\n---</b>\n\nQue n’a-t-on pas écrit la nuit ? pourtant de ce qui fut écrit à partir de ces visions par Holderlin, Rimbaud.\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','1h00’54','','inherit','closed','closed','','13678-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13678,'https://localhost/?p=14451',0,'revision','',0),
  7466. (14452,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nNous parlions de ce qu’on voit dans un rêve\nNous nous demandions comment, dans l’obscurité totale peuvent surgir parmi nous\n\n\n<b>Bande Son\n---</b>\n\nVoix masculine d’un muezzin, en arabe.\nPuis, après à la guitare. <em>Thimar, 6. Uns</em> (1998), Anouar Brahem, John Surman, Dave Holland.\n\n\n<b>Écrits\n---</b>\n\n','1h01’06','','inherit','closed','closed','','13679-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13679,'https://localhost/?p=14452',0,'revision','',0),
  7467. (14453,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nSaturé : aquarelle représentant un homme marchant entre des maisons.\n<em>Vue dans une ruelle</em> (1914), August Macke.\n\n\n<b>Voix Off et In\n---</b>\n\nde couleurs de telle intensité\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’18','','inherit','closed','closed','','13680-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13680,'https://localhost/?p=14453',0,'revision','',0),
  7468. (14454,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nMains de Godard feuilletant des images, dont un dessin stylisé d’une femme en robe bleue.\n<em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nElles sont le produit de notre savoir\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’20','','inherit','closed','closed','','13681-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13681,'https://localhost/?p=14454',0,'revision','',0),
  7469. (14455,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nAquarelle de femme en robe.\n<em>Histoire (s) du cinéma 1b</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nconcernant la lumière\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’23','','inherit','closed','closed','','13682-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13682,'https://localhost/?p=14455',0,'revision','',0),
  7470. (14456,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nHomme allongé sur un lit regardant au plafond où des images semblent être projetées.\n\n\n<b>Voix Off et In\n---</b>\n\nLe savoir voit !\n\nLe contrepoint est une discipline de la superposition des lignes mélodiques.\n\n\n<b>Bande Son\n---</b>\n\n<em>Concerto pour violon no 2 en mi mineur, Op. 64 (MWV O 14)</em> (1844), Félix Mendelssohn.\n\n\n<b>Écrits\n---</b>\n\nPASSEPORT\nVERS\nLE RÉEL\n','1h01’25','','inherit','closed','closed','','13683-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13683,'https://localhost/?p=14456',0,'revision','',0),
  7471. (14457,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLes mélodies n’ont pas besoin d’être identiques \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h01’35','','inherit','closed','closed','','13684-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13684,'https://localhost/?p=14457',0,'revision','',0),
  7472. (14458,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nAquarelle d\'un âne au milieu des maisons.\n<em>Vue sur une mosquée</em> (1914), August Macke.\n\n\n<b>Voix Off et In\n---</b>\n\nnon plus que parentes, étrangères l\'une à l\'autre. Elles ne font pas obstacle à la composition\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h01’44','','inherit','closed','closed','','13685-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13685,'https://localhost/?p=14458',0,'revision','',0),
  7473. (14459,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nmais il faut les tenir \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h01’49','','inherit','closed','closed','','13686-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13686,'https://localhost/?p=14459',0,'revision','',0),
  7474. (14460,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nPhotographie d\'un pinceau posé sur une feuille peinte. \n\n\n<b>Voix Off et In\n---</b>\n\ntoutes les deux ensemble et en même temps. Dans l\'harmonie les accords produisent les mélodies. \n\n\n<b>Bande Son\n---</b>\n\nId. et silence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h01’53','','inherit','closed','closed','','13687-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13687,'https://localhost/?p=14460',0,'revision','',0),
  7475. (14461,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nSurexposé et en tons jaunes : trois femmes faisant la vaisselle dans des bacs de fer posés à même le sol.\n<em>Tamaout</em> (1970), Marc’o.\n\n\n<b>Voix Off et In\n---</b>\n\nDans le contrepoint ce sont des mélodies elles-mêmes dont dont à l\'inverse résultent les accords. (Jean-Luc Godard).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h02’07','','inherit','closed','closed','','13688-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13688,'https://localhost/?p=14461',0,'revision','',0),
  7476. (14462,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','1h02’16','','inherit','closed','closed','','13689-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13689,'https://localhost/?p=14462',0,'revision','',0),
  7477. (14463,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nTrois filles et un garçon jouant dans une piscine.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h02’21','','inherit','closed','closed','','13690-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13690,'https://localhost/?p=14463',0,'revision','',0),
  7478. (14464,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nSaturé : soleil couchant sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h02’39','','inherit','closed','closed','','13691-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13691,'https://localhost/?p=14464',0,'revision','',0),
  7479. (14465,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Piano Quintet, Op. 18 - 4. Largo</em> (1944), Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\nHEUREUSE\nARABIE\n\n<em>Hasards de l\'Arabie heureuse</em> (2005), Frederic Prokosch.\n','1h02’48','','inherit','closed','closed','','13692-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13692,'https://localhost/?p=14465',0,'revision','',0),
  7480. (14466,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nSaturé et surexposé : bateau au milieu de la mer et pêcheurs. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h02’55','','inherit','closed','closed','','13693-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13693,'https://localhost/?p=14466',0,'revision','',0),
  7481. (14467,1,'2023-11-09 08:50:18','2023-11-09 07:50:18','<b>Images\n---</b>\n\nFemme se peingnant les mains de symboles géométriques. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’08','','inherit','closed','closed','','13694-revision-v1','','','2023-11-09 08:50:18','2023-11-09 07:50:18','',13694,'https://localhost/?p=14467',0,'revision','',0),
  7482. (14468,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nSaturé : mer ondulante vue d\'un golfe. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence, puis vagues. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’09','','inherit','closed','closed','','13695-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13695,'https://localhost/?p=14468',0,'revision','',0),
  7483. (14469,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. et silence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’41','','inherit','closed','closed','','13696-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13696,'https://localhost/?p=14469',0,'revision','',0),
  7484. (14470,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nJeune femme pleurant sur une plage, hommes chantant en arabe en arrière-plan. <em>La fièvre</em> (2014), Safia Benhaïm.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nVoix masculines accompagnées d’instruments à percussions.\n\n\n<b>Écrits\n---</b>\n\n','1h03’47','','inherit','closed','closed','','13697-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13697,'https://localhost/?p=14470',0,'revision','',0),
  7485. (14471,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h03’57','','inherit','closed','closed','','13698-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13698,'https://localhost/?p=14471',0,'revision','',0),
  7486. (14472,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nEn noir et blanc : bris de vitres de voitures.\n<em>Djamila</em> (1958), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nExplosion et vitres cassées.\n\n\n<b>Écrits\n---</b>\n\n','1h03’58','','inherit','closed','closed','','13699-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13699,'https://localhost/?p=14472',0,'revision','',0),
  7487. (14473,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nFemme nue s’alongeant sur un homme nu sur un lit.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h04’00','','inherit','closed','closed','','13700-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13700,'https://localhost/?p=14473',0,'revision','',0),
  7488. (14474,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nFemme embrassant les pieds d\'un homme. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’05','','inherit','closed','closed','','13701-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13701,'https://localhost/?p=14474',0,'revision','',0),
  7489. (14475,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nHomme marchant sur des toits de maisons au moyen-orient.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\nTrès loin, très bas, l’océan … cent millions de vagues.\nElles rampaient vers les côtes invisibles de Dofa,\n\n\n<b>Bande Son\n---</b>\n\nId. puis coups de mitraillette.\n\n\n<b>Écrits\n---</b>\n\n','1h04’07','','inherit','closed','closed','','13702-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13702,'https://localhost/?p=14475',0,'revision','',0),
  7490. (14476,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nLac et ciel entourés de montagnes. \n\n\n<b>Voix Off et In\n---</b>\n\nsi lentes que, vues d’en haut, d’en plein ciel en ciel, elles ne donnaient qu’à peine l’impression de bouger \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’24','','inherit','closed','closed','','13703-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13703,'https://localhost/?p=14476',0,'revision','',0),
  7491. (14477,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nSaturé : hommes et femmes sur une plage, bateau. \n\n\n<b>Voix Off et In\n---</b>\n\nElles glissaient sur la mer avec l’indolente précision d\'un dessin de Damas \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’35','','inherit','closed','closed','','13704-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13704,'https://localhost/?p=14477',0,'revision','',0),
  7492. (14478,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nqui semble comme un grand réseau blanc sur une feuille\n\n\n<b>Bande Son\n---</b>\n\nArpèges à la guitare. <em>Raf Raf</em> (1991), Anouar Brahem.\n\n\n<b>Écrits\n---</b>\n\nARCHÉOLOGIE\nET PIRATES\n','1h04’42','','inherit','closed','closed','','13705-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13705,'https://localhost/?p=14478',0,'revision','',0),
  7493. (14479,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nSurexposé et saturé : quatre enfants au milieu de la mer. \n\n\n<b>Voix Off et In\n---</b>\n\nde verre bleu. De place en place, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’45','','inherit','closed','closed','','13706-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13706,'https://localhost/?p=14479',0,'revision','',0),
  7494. (14480,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nPhoto d\'un coucher de soleil sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\ndans cette transparence, la forme d\'un poisson frémissait puis s\'éclipsait, raie géant peut-être, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h04’52','','inherit','closed','closed','','13707-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13707,'https://localhost/?p=14480',0,'revision','',0),
  7495. (14481,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nCoucher de soleil sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\noù requin sur la voie d\'eau plus froide. Vers le nord. S’aplatissait un archipel \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’00','','inherit','closed','closed','','13708-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13708,'https://localhost/?p=14481',0,'revision','',0),
  7496. (14482,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nZoomé : coucher de soleil sur la mer. \n\n\n<b>Voix Off et In\n---</b>\n\ncortège de crocodiles, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’09','','inherit','closed','closed','','13709-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13709,'https://localhost/?p=14482',0,'revision','',0),
  7497. (14483,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nSurexposé : hommes dans un bateau. \n\n\n<b>Voix Off et In\n---</b>\n\nvers les jardins du sud, vers le nord. Les pirogues s\'aplatissaient. Un archipel posé sur la plaque de verre comme \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’16','','inherit','closed','closed','','13710-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13710,'https://localhost/?p=14483',0,'revision','',0),
  7498. (14484,1,'2023-11-09 08:50:19','2023-11-09 07:50:19','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\ndes moustiques.\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h05’26','','inherit','closed','closed','','13711-revision-v1','','','2023-11-09 08:50:19','2023-11-09 07:50:19','',13711,'https://localhost/?p=14484',0,'revision','',0),
  7499. (14485,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nSaturé en tons rouge : désert, dunes. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’27','','inherit','closed','closed','','13712-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13712,'https://localhost/?p=14485',0,'revision','',0),
  7500. (14486,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nVieil homme soufflant sur des braises placées sur une brique, et posant une cafetière dessus. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’30','','inherit','closed','closed','','13713-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13713,'https://localhost/?p=14486',0,'revision','',0),
  7501. (14487,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nPalmiers secoués par un vent fort. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVent \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’36','','inherit','closed','closed','','13714-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13714,'https://localhost/?p=14487',0,'revision','',0),
  7502. (14488,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nRue bruyante d\'une ville du Moyen Orient vue d’un balcon. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nChanson en arabe provenant d’une radio résonnant dans la ville. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h05’41','','inherit','closed','closed','','13715-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13715,'https://localhost/?p=14488',0,'revision','',0),
  7503. (14489,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nSurexposé et déformé : masque d’aigle sur un homme dont on voit les mains au bas du cadre.\n<em>Judex</em> (1964), Georges Franju.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h05’45','','inherit','closed','closed','','13716-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13716,'https://localhost/?p=14489',0,'revision','',0),
  7504. (14490,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nAu ralenti : femme au balcon vue de dos, se retournant.\n<em>La mome vert de gris</em> (1953), Bernard borderie.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h05’52','','inherit','closed','closed','','13717-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13717,'https://localhost/?p=14490',0,'revision','',0),
  7505. (14491,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nFemme dansant en regardant la caméra.\n<em>La bandera</em> (1935), Julien Duvivier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h05’55','','inherit','closed','closed','','13718-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13718,'https://localhost/?p=14491',0,'revision','',0),
  7506. (14492,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nPhoto d\'une rue d’une ville prise avec un téléphone portable depuis un balcon. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nExplosions et cris. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’00','','inherit','closed','closed','','13719-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13719,'https://localhost/?p=14492',0,'revision','',0),
  7507. (14493,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nAu ralenti : homme enflammé courant. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’06','','inherit','closed','closed','','13720-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13720,'https://localhost/?p=14493',0,'revision','',0),
  7508. (14494,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nDeux hommes lisant le Coran et priant. \n\n\n<b>Voix Off et In\n---</b>\n\nLe livre. Les religions du livre ont forgé nos sociétés \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’12','','inherit','closed','closed','','13721-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13721,'https://localhost/?p=14494',0,'revision','',0),
  7509. (14495,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nHomme sortant d\'une maison en pierre et en saluant d’autres en leur tendant la main.\n<em>Il fiore delle mille e una notte</em> (1974), Pier Paolo Pasolini.\n\n\n<b>Voix Off et In\n---</b>\n\net nous avons sacralisé les textes.\nTables de la lois, dix commencements, rouleaux de la Torah, Bible, Coran etc.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h06’19','','inherit','closed','closed','','13722-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13722,'https://localhost/?p=14495',0,'revision','',0),
  7510. (14496,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nIl fallait (Jean-Luc Godard) \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’36','','inherit','closed','closed','','13723-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13723,'https://localhost/?p=14496',0,'revision','',0),
  7511. (14497,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nPeinte à la main sur un fond noir : « Le Livre d’\' » écrit en rouge et « Image » écrit en blanc. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’38','','inherit','closed','closed','','13724-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13724,'https://localhost/?p=14497',0,'revision','',0),
  7512. (14498,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nSaturé : vidéo prise du sommet d\'une montagne, montrant la mer. Le bruit du vent perturbe le microphone. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVent. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h06’41','','inherit','closed','closed','','13725-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13725,'https://localhost/?p=14498',0,'revision','',0),
  7513. (14499,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nEn noir et blanc : femme dansant tandis que des hommes et des femmes assis à table la regardent.\n<em>La mome vert de gris</em> (1953), Bernard borderie.\n\n\n<b>Voix Off et In\n---</b>\n\nIci, à Dofa, la capitale de l\'Émirat, il était inconcevable qu’un mouvement subversif se soit constitué\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h06’50','','inherit','closed','closed','','13726-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13726,'https://localhost/?p=14499',0,'revision','',0),
  7514. (14500,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nHomme et enfant entrant dans une pièce remplie de fumée de cigarette, où de nombreux hommes sont assis à table tout en regardant un écran, se plaignant de la main, et à haute-voix. Ils s’asseyent à table et commandent de la nourriture à un serveur.\n\n\n<b>Voix Off et In\n---</b>\n\nVous êtes conscients je suppose que toutes les histoires racontées se montrent parties.\n\nquelque rumeur autre que les explosions\n\n\n<b>Bande Son\n---</b>\n\nId. puis voix humaines.\n\n\n<b>Écrits\n---</b>\n\n','1h06’55','','inherit','closed','closed','','13727-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13727,'https://localhost/?p=14500',0,'revision','',0),
  7515. (14501,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nSaturé en tons jaunes et rouges, et sous-exposé : puit de pétrole en flammes. \n\n\n<b>Voix Off et In\n---</b>\n\nEn effet la grande puissance impérialiste qui étendait son emprise politique sur tous les États du Golfe ne s’intéressait plus à Dofa depuis qu’il était clair que son sous-sol ne renfermait pas de pétrole. \n \n En superposition la voix de Jean-Luc Godard : un gouvernement assez puissant pour donner aux gens tout ce qu\'ils veulent, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h07’28','','inherit','closed','closed','','13728-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13728,'https://localhost/?p=14501',0,'revision','',0),
  7516. (14502,1,'2023-11-09 08:50:20','2023-11-09 07:50:20','<b>Images\n---</b>\n\nHomme tirant de nuit sur des fêtards réunis autour d\'un feu. Fêtards s\'enfuyant à la vue de l\'homme. \n\n\n<b>Voix Off et In\n---</b>\n\nassez puissant pour leur prendre tout ce qu’ils ont. \n \n Les frondeurs irréductibles de l’ordre établi avaient depuis longtemps renoncé à toute action brutale \n\n\n<b>Bande Son\n---</b>\n\nId. puis chants, coups de fusil et cris. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h07’50','','inherit','closed','closed','','13729-revision-v1','','','2023-11-09 08:50:20','2023-11-09 07:50:20','',13729,'https://localhost/?p=14502',0,'revision','',0),
  7517. (14503,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nSous-exposé, en noir et blanc : personnes autour d\'un feu.\n\n\n<b>Voix Off et In\n---</b>\n\nla considérant comme inadéquate dans cet oasis misérable\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h08’13','','inherit','closed','closed','','13730-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13730,'https://localhost/?p=14503',0,'revision','',0),
  7518. (14504,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nmais où régnait une paix souveraine \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’21','','inherit','closed','closed','','13731-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13731,'https://localhost/?p=14504',0,'revision','',0),
  7519. (14505,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nPaysage semi désert, vu d\'une route.\n\n\n<b>Voix Off et In\n---</b>\n\ncar, là où il n\'y a rien, même les scélérats se résignent à l\'indigence. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h08’24','','inherit','closed','closed','','13732-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13732,'https://localhost/?p=14505',0,'revision','',0),
  7520. (14506,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’32','','inherit','closed','closed','','13733-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13733,'https://localhost/?p=14506',0,'revision','',0),
  7521. (14507,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nHaut et bas de l’écran noircis pour imiter la vision d’une personne portant une burqa. Au milieu de l’écran, à travers la fente : femmes marchant couvertes d’une burqa.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nÀ la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h08’36','','inherit','closed','closed','','13734-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13734,'https://localhost/?p=14507',0,'revision','',0),
  7522. (14508,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’52','','inherit','closed','closed','','13735-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13735,'https://localhost/?p=14508',0,'revision','',0),
  7523. (14509,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nVisage d\'une femme chantant en arabe. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoix féminine, en arabe. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’55','','inherit','closed','closed','','13736-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13736,'https://localhost/?p=14509',0,'revision','',0),
  7524. (14510,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nSaturé en tons oranges et jaunes : match de football à la télévision aaccompagné des mots d’un commentateur sportif et photographie en couleur seppia de deux footballers. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h08’59','','inherit','closed','closed','','13737-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13737,'https://localhost/?p=14510',0,'revision','',0),
  7525. (14511,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’11','','inherit','closed','closed','','13738-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13738,'https://localhost/?p=14511',0,'revision','',0),
  7526. (14512,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nHomme et femme regardant la télévision. \n\n\n<b>Voix Off et In\n---</b>\n\nOn ne pouvait cependant oublier leur aptitude à se surpasser dans l\'abjection \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’12','','inherit','closed','closed','','13739-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13739,'https://localhost/?p=14512',0,'revision','',0),
  7527. (14513,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nMains d\'un homme enchaîné.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\nlorsqu\'ils sont soutenus\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h09’23','','inherit','closed','closed','','13740-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13740,'https://localhost/?p=14513',0,'revision','',0),
  7528. (14514,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nPetit enfant marchant dans une rue à la lumière du soleil sur laquelle se découpent les ombres des pales d\'un moulin.\nÀ côté de lui, homme enchaîné et gardé par trois autres hommes.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\net conseillés par des criminels d\'une plus grande envergure venus de l\'extérieur.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h09’26','','inherit','closed','closed','','13741-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13741,'https://localhost/?p=14514',0,'revision','',0),
  7529. (14515,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSamantar \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’38','','inherit','closed','closed','','13742-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13742,'https://localhost/?p=14515',0,'revision','',0),
  7530. (14516,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nVisage d\'un jeune homme appuyant sur une vitre reflétant son image. \n\n\n<b>Voix Off et In\n---</b>\n\nétait convaincu que la pauvreté d’un pays était sa seule sauvegarde contre les rapaces armés ou non. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’44','','inherit','closed','closed','','13743-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13743,'https://localhost/?p=14516',0,'revision','',0),
  7531. (14517,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nDeux petites filles au foulard sur la tête. Mains de personnes applaudissant. \n\n\n<b>Voix Off et In\n---</b>\n\nqui n\'attendaient qu\'une promesse de profit pour venir le conquérir, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h09’58','','inherit','closed','closed','','13744-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13744,'https://localhost/?p=14517',0,'revision','',0),
  7532. (14518,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nSurexposé et saturé : chameaux et hommes marchant en file dans le désert. \n\n\n<b>Voix Off et In\n---</b>\n\nle détruire et le pourrir \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’01','','inherit','closed','closed','','13745-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13745,'https://localhost/?p=14518',0,'revision','',0),
  7533. (14519,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nFemme vue de dos, regardant un âne. \n\n\n<b>Voix Off et In\n---</b>\n\nEt Samantar remerciait le ciel d\'être né sur cette \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’05','','inherit','closed','closed','','13746-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13746,'https://localhost/?p=14519',0,'revision','',0),
  7534. (14520,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nAu ralenti, en noir et blanc : homme marchant dans une rue, une arme à la main. \n\n\n<b>Voix Off et In\n---</b>\n\nterre désertique démunie de toute matière première et assez ingrate pour décourager les marchés. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’14','','inherit','closed','closed','','13747-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13747,'https://localhost/?p=14520',0,'revision','',0),
  7535. (14521,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLe plus stupéfiant dans cette affaire \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h10’26','','inherit','closed','closed','','13748-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13748,'https://localhost/?p=14521',0,'revision','',0),
  7536. (14522,1,'2023-11-09 08:50:21','2023-11-09 07:50:21','<b>Images\n---</b>\n\nRue et marché en plein air dans une ville du Moyen-Orient.\n<em>La fièvre</em> (2014), Safia Benhaïm.\n\n\n<b>Voix Off et In\n---</b>\n\nétait que les attentats étaient revendiqués par une soi-disant\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h10’31','','inherit','closed','closed','','13749-revision-v1','','','2023-11-09 08:50:21','2023-11-09 07:50:21','',13749,'https://localhost/?p=14522',0,'revision','',0),
  7537. (14523,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSaturé : trois personnes sur une plage rocheuse au bord d\'une mer.\n\n\n<b>Voix Off et In\n---</b>\n\nforce de libération du golfe totalement inconnue et dont les tracts mal imprimés se targuaient d\'un vocabulaire révolutionnaire depuis longtemps dépassé. (Jean-Luc Godard). <em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId. puis vent.\n\n\n<b>Écrits\n---</b>\n\n','1h10’38','','inherit','closed','closed','','13750-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13750,'https://localhost/?p=14523',0,'revision','',0),
  7538. (14524,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h11’30','','inherit','closed','closed','','13751-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13751,'https://localhost/?p=14524',0,'revision','',0),
  7539. (14525,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSurexposé et saturé : deux hommes debout dans une voiture au toit ouvert, et criant des phrases en arabe.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\n[traduction de l’arabe] : Le volontariat dans la brigade de... La vie est une posture...\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h11’32','','inherit','closed','closed','','13752-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13752,'https://localhost/?p=14525',0,'revision','',0),
  7540. (14526,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nNi l\'importance du territoire de Dofa … \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h11’35','','inherit','closed','closed','','13753-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13753,'https://localhost/?p=14526',0,'revision','',0),
  7541. (14527,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSous-exposée : homme se déplaçant dans l\'ombre.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h11’40','','inherit','closed','closed','','13754-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13754,'https://localhost/?p=14527',0,'revision','',0),
  7542. (14528,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nRalenti et sous exposé : main glissant trois doigts dans l’ouverture d\'une porte, pour l\'ouvrir.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n<b>Voix Off et In\n---</b>\n\nJournal télévisé [traduction de l’arabe standard] :\nNous ne savons pas jusqu\'à présent jusqu\'où pourra aller la riposte russe mais le climat ambiant laisse à penser que l\'attaque ne...\n\nVoix d’homme :\nni la conjoncture politique dans la région n\'avaient\n\nresté jusqu\'ici en dehors de l\'éclatante prospérité\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h11’46','','inherit','closed','closed','','13755-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13755,'https://localhost/?p=14528',0,'revision','',0),
  7543. (14529,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSurexposé et saturé, au ralenti : rangée de personnes vêtues de blanc se tenant les mains, et les déplaçant vers l\'arrière. Puis pieds en tongs dansant. \n\n\n<b>Voix Off et In\n---</b>\n\ndes émirats voisins pouvait d\'un jour à l\'autre devenir un enfer. \n\n\n<b>Bande Son\n---</b>\n\nVoix masculines chantant un chant soufi (mystique) d\'Afrique du Nord (Hadhra en Tunisie ou Aissaoua en Algérie), accompagné de percussions. (Chant d\'invocation où l’on dit que il n\'y a de dieu que Dieu et que Mohamed est son prophète. Éloges de Dieu et du prophète Mohamed. Éloges d\'un saint patron qui est censé nous protéger). \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’00','','inherit','closed','closed','','13756-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13756,'https://localhost/?p=14529',0,'revision','',0),
  7544. (14530,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’24','','inherit','closed','closed','','13757-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13757,'https://localhost/?p=14530',0,'revision','',0),
  7545. (14531,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nDe nouveau, groupe d\'hommes courant dans la rue et se pressant contre la porte d\'un appartement. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’28','','inherit','closed','closed','','13758-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13758,'https://localhost/?p=14531',0,'revision','',0),
  7546. (14532,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSaturé : hommes en tenue militaire officielle, et commandants.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\nCe qui tourmentait le Cheick El Kadem, le premier ministre du royaume, c\'était une vue de l\'esprit\n\n\n<b>Bande Son\n---</b>\n\nTrompettes de fanfare militaire.\n\n\n<b>Écrits\n---</b>\n\n','1h12’34','','inherit','closed','closed','','13759-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13759,'https://localhost/?p=14532',0,'revision','',0),
  7547. (14533,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSaturé, sortant à droite et réapparaissant à gauche de l\'écran comme s\'il était projeté sur l\'écran d\'une télévision cassée : libellé du film « Le Livre d\'Image ». \n\n\n<b>Voix Off et In\n---</b>\n\ncar il rêvait de soumettre à sa domination, l\'ensemble des pays du golfe. \n\n\n<b>Bande Son\n---</b>\n\nId. et puis silence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’47','','inherit','closed','closed','','13760-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13760,'https://localhost/?p=14533',0,'revision','',0),
  7548. (14534,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSaturé : maison en ruine sur une plage de roche en bord de mer. \n\n\n<b>Voix Off et In\n---</b>\n\nIl était vrai que sur cette bande de terre aride, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h12’57','','inherit','closed','closed','','13761-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13761,'https://localhost/?p=14534',0,'revision','',0),
  7549. (14535,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nManifestation avec de nombreuses personnes dans la rue portant des pancartes écrites en arabe.\n<em>Shoah, les oubliés de l’histoire</em> (2014), Véronique Lagoarde-Ségot, par la chaîne de télévision <em>Histoire</em>.\n\n\n<b>Voix Off et In\n---</b>\n\nIl était le maître incontesté\n\n\n<b>Bande Son\n---</b>\n\nÀ la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h13’08','','inherit','closed','closed','','13762-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13762,'https://localhost/?p=14535',0,'revision','',0),
  7550. (14536,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nSurexposé : sultan avec une femme à ses côtés.\n<em>The Thief of Baghdad</em> (1978), Cline Donner.\n\n<b>Voix Off et In\n---</b>\n\npuisque le vieil émir régnant, croupissant dans son harem, ne prenait plus la peine de lui donner des ordres.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h13’15','','inherit','closed','closed','','13763-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13763,'https://localhost/?p=14536',0,'revision','',0),
  7551. (14537,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nEt la passion \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h13’21','','inherit','closed','closed','','13764-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13764,'https://localhost/?p=14537',0,'revision','',0),
  7552. (14538,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nHomme au fez rouge sortant d\'une voiture dont le conducteur ouvre la porte.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\npour le pouvoir, Ben Kadem l\'avait ressentie depuis son enfance et maintenant à 42 ans elle le dévorait avec encore plus de densité.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h13’24','','inherit','closed','closed','','13765-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13765,'https://localhost/?p=14538',0,'revision','',0),
  7553. (14539,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nGroupe de personnes marchant de nuit dans les dunes d\'un désert.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nMais malheureusement le monde n\'était pas aussi simple que son rêve d\'enfant. L\'irruption du pétrole dans la péninsule sauf ici à Dofa avait détruit l\'espoir de réaliser ses ambitions.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h13’37','','inherit','closed','closed','','13766-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13766,'https://localhost/?p=14539',0,'revision','',0),
  7554. (14540,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nPalmier enflammé dans le désert de nuit.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nÀ la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h14’00','','inherit','closed','closed','','13767-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13767,'https://localhost/?p=14540',0,'revision','',0),
  7555. (14541,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nFemmes riant dans un harem.\n<em>Arabian nights</em> (1942), John Rawlins.\n\n\n<b>Voix Off et In\n---</b>\n\nChose étrange,\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h14’11','','inherit','closed','closed','','13768-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13768,'https://localhost/?p=14541',0,'revision','',0),
  7556. (14542,1,'2023-11-09 08:50:22','2023-11-09 07:50:22','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nle seul homme avec lequel Ben Kadem pouvait parler franchement de son ambition \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h14’16','','inherit','closed','closed','','13769-revision-v1','','','2023-11-09 08:50:22','2023-11-09 07:50:22','',13769,'https://localhost/?p=14542',0,'revision','',0),
  7557. (14543,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nPalmiers secoués par un vent fort. \n\n\n<b>Voix Off et In\n---</b>\n\nc’était celui là même qui trouvait cette ambition dérisoire : son jeune cousin Samantar. \n\n\n<b>Bande Son\n---</b>\n\nVent. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h14’24','','inherit','closed','closed','','13770-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13770,'https://localhost/?p=14543',0,'revision','',0),
  7558. (14544,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h14’33','','inherit','closed','closed','','13771-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13771,'https://localhost/?p=14544',0,'revision','',0),
  7559. (14545,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nDéplacement de gauche à droite : photo d\'un restaurant appelé « Les coquillages » et d’une rue d’une ville de bord de mer.\n\n\n<b>Voix Off et In\n---</b>\n\nn’avait pas uniquement pour objet d’approfondir sa vision sur le jeu sanglant des grandes puissances. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nExplosions.\n\n\n<b>Écrits\n---</b>\n\n','1h14’36','','inherit','closed','closed','','13772-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13772,'https://localhost/?p=14545',0,'revision','',0),
  7560. (14546,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nPhoto de Barack Obama aux côtés de l\'émir du Koweït Cheikh Sabah al-Ahmad al-Jaber al-Sabah.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h14’53','','inherit','closed','closed','','13773-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13773,'https://localhost/?p=14546',0,'revision','',0),
  7561. (14547,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nHomme au fez s\'approchant d\'une grille d\'entrée et frappant avec son bâton contre la grille.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\nIl était d\'une importance capitale de savoir l\'opinion de Samantar sur les derniers événements survenus.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h14’57','','inherit','closed','closed','','13774-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13774,'https://localhost/?p=14547',0,'revision','',0),
  7562. (14548,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLe début d’une ère révolutionnaire à Dofa \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h15’07','','inherit','closed','closed','','13775-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13775,'https://localhost/?p=14548',0,'revision','',0),
  7563. (14549,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nVisage d\'un homme plongé dans l\'obscurité, puis émergeant à la lumière éclairant ses lèvres et son nez.\n\n\n<b>Voix Off et In\n---</b>\n\nétait une négation totale de la possible d’une action armée dans la péninsule. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h15’12','','inherit','closed','closed','','13776-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13776,'https://localhost/?p=14549',0,'revision','',0),
  7564. (14550,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nSaturé en tons bleus et rouges : personnes ballottées par une mer agitée. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVagues. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h15’24','','inherit','closed','closed','','13777-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13777,'https://localhost/?p=14550',0,'revision','',0),
  7565. (14551,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nPersonne au foulard palestinien nué autour de la tête, se traînant avec un bras sur le sable, tenant de l’autre un fusil.\n<em>Ici et ailleurs</em> (1975), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n- Tu es seul ?\n- Oui je suis seul.\n- Je ne te dérange pas ?\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h15’28','','inherit','closed','closed','','13778-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13778,'https://localhost/?p=14551',0,'revision','',0),
  7566. (14552,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nAu ralenti, saturé en tons bleus : foule de personnes manifestant.\n<em>Sexe, salafistes, printemps arabe</em> (2012), Paul Moreira.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je suis toujours ravi de te voir.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h15’36','','inherit','closed','closed','','13779-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13779,'https://localhost/?p=14552',0,'revision','',0),
  7567. (14553,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nSous-exposé et tourné en noir et blanc : personnes dansant au milieu de la fumée.\n<em>Silence ! On tourne</em> (2001), Youssef Chahine.\n\n\n<b>Voix Off et In\n---</b>\n\n- Un tel bonheur m\'est rarement accordé, excellence. - Tu te détaches de moi.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h15’43','','inherit','closed','closed','','13780-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13780,'https://localhost/?p=14553',0,'revision','',0),
  7568. (14554,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nFemme portant une écharpe à pois rouges et blancs et courant les mains en l\'air.\n<em>À propos d\'Elly</em> (2009), Asghar Farhadi.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je vois que tu n\'es toujours pas prêt à ce sacrifice.\n\n\n<b>Bande Son\n---</b>\n\nA la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h15’51','','inherit','closed','closed','','13781-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13781,'https://localhost/?p=14554',0,'revision','',0),
  7569. (14555,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nSaturé : groupe d\'hommes armés sur le toit d\'une voiture, observés par un homme vu de dos se cachant derrière un mur. Au ralenti : hommes descendant de la voiture.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\n- C\'est l\'excuse de toute ambition politique que de prétendre se sacrifier pour le bonheur du peuple. Mais le peuple ne t\'a rien demandé, il veut simplement vivre en paix.\n\n\n<b>Bande Son\n---</b>\n\nId. et silence.\n\n\n<b>Écrits\n---</b>\n\n','1h15’57','','inherit','closed','closed','','13782-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13782,'https://localhost/?p=14555',0,'revision','',0),
  7570. (14556,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nEn noir et blanc, basculé de 180° : visage d\'un homme la tête en bas, plongé dans l\'obscurité.\n\n\n<b>Voix Off et In\n---</b>\n\n- Pendant que nous vivons en paix, le monde bouge. (Avec écho)\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h16’15','','inherit','closed','closed','','13783-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13783,'https://localhost/?p=14556',0,'revision','',0),
  7571. (14557,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nTremblements, et déplacement de droite à gauche : enfant écrivant sur une feuille de papier, observée de dos par un autre enfant. \n\n\n<b>Voix Off et In\n---</b>\n\n- Que nous importe ce monde qui bouge. (Avec écho) \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’23','','inherit','closed','closed','','13784-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13784,'https://localhost/?p=14557',0,'revision','',0),
  7572. (14558,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nSaturé en tons rouges : visage de femme aux mains jointes en prière. Détail de la fresque de la coupole.\n<em>San Antonio de la Florida</em> (1798), Francisco Goya. <em>Histoire (s) du cinéma 3a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nCe sont tous des canailles, tous complices de l’imposture universelle.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h16’25','','inherit','closed','closed','','13785-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13785,'https://localhost/?p=14558',0,'revision','',0),
  7573. (14559,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n- La révolution a commencé dans le royaume mais tu le sais déjà sans doute. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’33','','inherit','closed','closed','','13786-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13786,'https://localhost/?p=14559',0,'revision','',0),
  7574. (14560,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nEn noir et blanc, basculé de 180° : visage courroucé d\'un homme plongé dans l\'obscurité.\n\n\n<b>Voix Off et In\n---</b>\n\n- Je le reconnaîtrais volontiers s’il s’agissait d’une vraie révolution, mais j’en doute.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h16’40','','inherit','closed','closed','','13787-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13787,'https://localhost/?p=14560',0,'revision','',0),
  7575. (14561,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nSaturé : tissu rouge traîné sur la plage par le vent.\n<em>Fissures</em> (2009), Hicham Ayouch.\n\n\n<b>Voix Off et In\n---</b>\n\nOn a arrêté quelque type\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h16’49','','inherit','closed','closed','','13788-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13788,'https://localhost/?p=14561',0,'revision','',0),
  7576. (14562,1,'2023-11-09 08:50:23','2023-11-09 07:50:23','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nconnu de nos services \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’51','','inherit','closed','closed','','13789-revision-v1','','','2023-11-09 08:50:23','2023-11-09 07:50:23','',13789,'https://localhost/?p=14562',0,'revision','',0),
  7577. (14563,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSaturé : enfants jouant avec une femme portant une burka. \n\n\n<b>Voix Off et In\n---</b>\n\nmais ils prétendent ne rien savoir. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’54','','inherit','closed','closed','','13790-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13790,'https://localhost/?p=14563',0,'revision','',0),
  7578. (14564,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nIls demandent même de quelle bombe il s’agit car \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h16’55','','inherit','closed','closed','','13791-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13791,'https://localhost/?p=14564',0,'revision','',0),
  7579. (14565,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nFemme et homme vus à contre jour, se faisant face dans un couloir.\n\n\n<b>Voix Off et In\n---</b>\n\nils n’ont rien entendu. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nDe nouveau, à la guitare : arpèges.\n\n\n<b>Écrits\n---</b>\n\n','1h16’56','','inherit','closed','closed','','13792-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13792,'https://localhost/?p=14565',0,'revision','',0),
  7580. (14566,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSaturé : homme portant un voile et homme marchant dans une rue. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nVoitures, et personnes marchant et parlant. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h17’02','','inherit','closed','closed','','13793-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13793,'https://localhost/?p=14566',0,'revision','',0),
  7581. (14567,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nRue de nuit, éclairée par des lampadaires, avec des gens parlant et faisant du bruit. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h17’07','','inherit','closed','closed','','13794-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13794,'https://localhost/?p=14567',0,'revision','',0),
  7582. (14568,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nFemmes voilées et hommes marchant dans la rue.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId. et en arrière-plan, annonces de service d\'une gare.\n\n\n<b>Écrits\n---</b>\n\n','1h17’25','','inherit','closed','closed','','13795-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13795,'https://localhost/?p=14568',0,'revision','',0),
  7583. (14569,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nCôte montagneuse surplombant la mer. Groupe de personnes marchant sur la plage. \n\n\n<b>Voix Off et In\n---</b>\n\nIci, à Dofa, que des gens \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h17’31','','inherit','closed','closed','','13796-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13796,'https://localhost/?p=14569',0,'revision','',0),
  7584. (14570,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nlancent des bombes un peu partout cela me parait normal \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nHICHAM \n People throwing bombs \n\n','1h17’40','','inherit','closed','closed','','13797-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13797,'https://localhost/?p=14570',0,'revision','',0),
  7585. (14571,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nHomme touareg vêtu de blanc, assis au pied d\'un palmier dans le désert, caressant une antilope.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em>, Nacer Khémir (2005).\n\n\n<b>Voix Off et In\n---</b>\n\nque pourraient-ils faire d\'autre ? C\'est leur seule manière d\'exprimer leur révolte devant la férocité des moyens employés par le gouvernement. Quelle autre attitude serait valable ? Pour ma part, je serai toujours du côté des bombes.\n\n\n<b>Bande Son\n---</b>\n\nDe nouveau, à la guitare : arpèges. Silence.\n\n\n<b>Écrits\n---</b>\n\n','1h17’44','','inherit','closed','closed','','13798-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13798,'https://localhost/?p=14571',0,'revision','',0),
  7586. (14572,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nLa révolution, \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nTAREK \n\n','1h18’13','','inherit','closed','closed','','13799-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13799,'https://localhost/?p=14572',0,'revision','',0),
  7587. (14573,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : hommes touareg sous des palmiers avec des ânes à leurs côtés. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’18','','inherit','closed','closed','','13800-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13800,'https://localhost/?p=14573',0,'revision','',0),
  7588. (14574,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSaturé en tons rouges : explosion et flammes. \n\n\n<b>Voix Off et In\n---</b>\n\ncela ne me paraît pas vital dans cette région. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’21','','inherit','closed','closed','','13801-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13801,'https://localhost/?p=14574',0,'revision','',0),
  7589. (14575,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nHomme courant. \n\n\n<b>Voix Off et In\n---</b>\n\nIl est vrai qu\'à notre époque \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’26','','inherit','closed','closed','','13802-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13802,'https://localhost/?p=14575',0,'revision','',0),
  7590. (14576,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSaturé : enfants et personnes courant en tous sens et semblant regarder quelque chose hors champ.\n<em>Les Baliseurs du désert</em>, Nacer Khémir (1984), cité dans <em>Voyage à Tunis</em> (2007), Bruno Moll.\n\n\n<b>Voix Off et In\n---</b>\n\ntout est possible\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’32','','inherit','closed','closed','','13803-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13803,'https://localhost/?p=14576',0,'revision','',0),
  7591. (14577,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSaturé : missile tiré sur une voiture explosant.\n<em>13 hours. The Secret Soldiers of Benghazi</em>, (2016), Michael Bay.\n\n\n<b>Voix Off et In\n---</b>\n\ncrois-tu que les hommes\n\n\n<b>Bande Son\n---</b>\n\nExplosions et cris.\n\n\n<b>Écrits\n---</b>\n\n','1h18’37','','inherit','closed','closed','','13804-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13804,'https://localhost/?p=14577',0,'revision','',0),
  7592. (14578,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’40','','inherit','closed','closed','','13805-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13805,'https://localhost/?p=14578',0,'revision','',0),
  7593. (14579,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nSaturé et sous-exposé : explosion, avec un hélicoptère en feu à l\'arrière-plan. Homme tombant au sol en gémissant après avoir été touché par un missile.\n<em>13 hours. The Secret Soldiers of Benghazi</em>, (2016), Michael Bay.\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’41','','inherit','closed','closed','','13806-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13806,'https://localhost/?p=14579',0,'revision','',0),
  7594. (14580,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\ncrois-tu que les hommes au pouvoir aujourd\'hui\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h18’43','','inherit','closed','closed','','13807-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13807,'https://localhost/?p=14580',0,'revision','',0),
  7595. (14581,1,'2023-11-09 08:50:24','2023-11-09 07:50:24','<b>Images\n---</b>\n\nHommes vêtus de manière formelle, avec un fez sur la tête, parlant entre eux.\n<em>Al-lail</em> (1992), Mohamed Malas.\n\n\n<b>Voix Off et In\n---</b>\n\ndans le monde soient autre chose\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’47','','inherit','closed','closed','','13808-revision-v1','','','2023-11-09 08:50:24','2023-11-09 07:50:24','',13808,'https://localhost/?p=14581',0,'revision','',0),
  7596. (14582,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nSaturé et au ralenti : homme courant dans une rue, avec à ses côtés une explosion.\n<em>Karbala, 4 jour en enfer</em> (2015), Krzysztof Łukaszewicz.\n\n\n<b>Voix Off et In\n---</b>\n\nque des débiles sanguinaires ?\n(Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’53','','inherit','closed','closed','','13809-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13809,'https://localhost/?p=14582',0,'revision','',0),
  7597. (14583,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nC’était peu de rêver d’être roi \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h18’55','','inherit','closed','closed','','13810-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13810,'https://localhost/?p=14583',0,'revision','',0),
  7598. (14584,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nSous-exposé et saturé et puis surexposé : Homme visant avec un bazooka à l’épaule.\n<em>Karbala, 4 jour en enfer</em> (2015), Krzysztof Łukaszewicz.\n\n\n<b>Voix Off et In\n---</b>\n\nquand on pouvait rêver d\'être Faust.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h18’57','','inherit','closed','closed','','13811-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13811,'https://localhost/?p=14584',0,'revision','',0),
  7599. (14585,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nMais nul, mais nul, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’00','','inherit','closed','closed','','13812-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13812,'https://localhost/?p=14585',0,'revision','',0),
  7600. (14586,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nPersonne morte gisant sur le sol.\n<em>Karbala, 4 jour en enfer</em> (2015), Krzysztof Łukaszewicz.\n\n\n<b>Voix Off et In\n---</b>\n\nne rêvait plus d\'être Faust\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h19’03','','inherit','closed','closed','','13813-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13813,'https://localhost/?p=14586',0,'revision','',0),
  7601. (14587,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\net chacun rêvait d\'être roi. (Jean-Luc Godard).\n<em>Air de Méphistophélès, Damnation de Faust</em> (1846), Hector Berlioz.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h19’05','','inherit','closed','closed','','13814-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13814,'https://localhost/?p=14587',0,'revision','',0),
  7602. (14588,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nEnfant jetant des pierres sur un chien dans une rue. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’10','','inherit','closed','closed','','13815-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13815,'https://localhost/?p=14588',0,'revision','',0),
  7603. (14589,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nPersonne écrivant en arabe sur une feuille de papier.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Cloud</em> (2017), Tomasz Stanko New York Quartet.\n\n\n<b>Écrits\n---</b>\n\n','1h19’16','','inherit','closed','closed','','13816-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13816,'https://localhost/?p=14589',0,'revision','',0),
  7604. (14590,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nAquarelle d\'un homme vêtu de blanc assis sur le sol. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’20','','inherit','closed','closed','','13817-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13817,'https://localhost/?p=14590',0,'revision','',0),
  7605. (14591,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nSaturé en tons bleus : lac entouré d\'arbres.\n\n\n<b>Voix Off et In\n---</b>\n\nÀ Dofa, le rêve de Cheikh ben Kadem fit naufrage. La mort de son jeune amant dissipa l’ambition de soumettre à sa domination l\'ensemble\n\n\n<b>Bande Son\n---</b>\n\nSilence.\n\n\n<b>Écrits\n---</b>\n\n','1h19’28','','inherit','closed','closed','','13818-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13818,'https://localhost/?p=14591',0,'revision','',0),
  7606. (14592,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nVoiture longeant une route suivie de personnes marchant derrière elle.\n<em>Les terrasses</em> (2013), Merzak Allouache.\n\n\n<b>Voix Off et In\n---</b>\n\ndes pays du golfe. Ben Kadem s\'en vint alors confesser ses erreurs politiques\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h19’43','','inherit','closed','closed','','13819-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13819,'https://localhost/?p=14592',0,'revision','',0),
  7607. (14593,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nDe nouveau, photo en noir et blanc d\'un homme au visage courroucé. \n\n\n<b>Voix Off et In\n---</b>\n\nà Samantar et puis il s\'enfuit et se refugia. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’51','','inherit','closed','closed','','13820-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13820,'https://localhost/?p=14593',0,'revision','',0),
  7608. (14594,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSamantar heureux et tranquillisé \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h19’58','','inherit','closed','closed','','13821-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13821,'https://localhost/?p=14594',0,'revision','',0),
  7609. (14595,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nSaturé : maison en ruine entourée d\'antennes de télévision et d\'internet. \n\n\n<b>Voix Off et In\n---</b>\n\npar ce dénouement, sortit de sa misérable cahute. \n \n\n\n<b>Bande Son\n---</b>\n\nDe nouveau, à la guitare : arpèges. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’01','','inherit','closed','closed','','13822-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13822,'https://localhost/?p=14595',0,'revision','',0),
  7610. (14596,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nHomme souriant.\n<em>Les terrasses</em> (2013), Merzak Allouache.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h20’07','','inherit','closed','closed','','13823-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13823,'https://localhost/?p=14596',0,'revision','',0),
  7611. (14597,1,'2023-11-09 08:50:25','2023-11-09 07:50:25','<b>Images\n---</b>\n\nSurexposé : Photographie d\'une file d\'hommes vêtus de jeans et de lunettes de soleil marchant. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’11','','inherit','closed','closed','','13824-revision-v1','','','2023-11-09 08:50:25','2023-11-09 07:50:25','',13824,'https://localhost/?p=14597',0,'revision','',0),
  7612. (14598,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’18','','inherit','closed','closed','','13825-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13825,'https://localhost/?p=14598',0,'revision','',0),
  7613. (14599,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSaturé : cheval tirant une calèche passant dans une rue. \n\n\n<b>Voix Off et In\n---</b>\n\nCe n\'est que quelques mois plus tard que Samantar rencontra Tarek le long de la mer \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h20’20','','inherit','closed','closed','','13826-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13826,'https://localhost/?p=14599',0,'revision','',0),
  7614. (14600,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nJeune homme au turban accompagnant un homme âgé dans une prairie près d\'un ruisseau et s’asseyant sur un rocher.\n\n\n<b>Voix Off et In\n---</b>\n\net apprit la vérité de la fausse révolution fomentée par l\'ancien premier ministre. (Jean-Luc Godard).\n<em>Une ambition dans le désert</em> (1984), Albert Cossery.\n\nCe que je fais avec les enfants dit le fou c\'est une sorte de contre-révolution.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h20’27','','inherit','closed','closed','','13827-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13827,'https://localhost/?p=14600',0,'revision','',0),
  7615. (14601,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSurexposé : groupe d\'enfants jouant et courant.\n<em>Les mille mois</em> (2003), Faouzi Bensaïdi.\n\n\n<b>Voix Off et In\n---</b>\n\nUn fou peut aller partout, il a une liberté totale de mouvement, et de parole. Avec l\'aide des enfants j\'ai fait sauter la banque et l\'agence d\'import export\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h20’43','','inherit','closed','closed','','13828-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13828,'https://localhost/?p=14601',0,'revision','',0),
  7616. (14602,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nHomme écrivant sur une feuille de papier, et enfant regardant ce qu\'il écrit, debout devant lui, dans une maison du Moyen Orient avec des tapis, des coussins et des rideaux devant les fenêtres. \n\n\n<b>Voix Off et In\n---</b>\n\nles deux signes de l\'ignominie capitaliste. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’01','','inherit','closed','closed','','13829-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13829,'https://localhost/?p=14602',0,'revision','',0),
  7617. (14603,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSaturé en tons rouges et bleus, et basculé de 90 degrés : coucher du soleil et puits de pétrole. \n\n\n<b>Voix Off et In\n---</b>\n\nMais comment as-tu pu te procurer les explosifs ? Ils ont été repérés \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’02','','inherit','closed','closed','','13830-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13830,'https://localhost/?p=14603',0,'revision','',0),
  7618. (14604,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nEnfants courant derrière la caméra. Enfant portant une chemise blanche trop longue et marchant en trébuchant sur le tissu. \n\n\n<b>Voix Off et In\n---</b>\n\npar les enfants dans un vieux derrick abandonné par les étrangers quand ils cherchaient en vain du pétrole. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’09','','inherit','closed','closed','','13831-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13831,'https://localhost/?p=14604',0,'revision','',0),
  7619. (14605,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nEnfant sur une route faisant tourner de la main une bobine rouge en s’aidant d’une pellicule. <em>Reel-Unreel</em> (2011), Francis Alÿs.\n\n\n<b>Voix Off et In\n---</b>\n\nJe te remercie. Discuter avec un fou est un privilège\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h21’18','','inherit','closed','closed','','13832-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13832,'https://localhost/?p=14605',0,'revision','',0),
  7620. (14606,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nCouverture d’un exemplaire <em>d’Images en parole</em> (2003), Anne-Marie Miéville. L’exemplaire est feuilleté.\n\n\n<b>Voix Off et In\n---</b>\n\ninestimable, crois moi. (Jean-Luc Godard).\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h21’25','','inherit','closed','closed','','13833-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13833,'https://localhost/?p=14606',0,'revision','',0),
  7621. (14607,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nGros plan de la face de Bécassine.\nDerrière : id. en dimensions réduites.\n\n\n<b>Voix Off et In\n---</b>\n\nCrois-moi. On n\'est jamais suffisamment triste. (Anne-Marie Miéville).\n<em>Le territoire de l’homme</em> (1978), Elias Canetti.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h21’32','','inherit','closed','closed','','13834-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13834,'https://localhost/?p=14607',0,'revision','',0),
  7622. (14608,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSaturé : pinceau et livre ouvert. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’38','','inherit','closed','closed','','13835-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13835,'https://localhost/?p=14608',0,'revision','',0),
  7623. (14609,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSaturé : photographie d\'un grand pinceau et d\'un crayon. \n\n\n<b>Voix Off et In\n---</b>\n\nOn n\'est jamais suffisamment triste pour que le monde soit meilleur. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’41','','inherit','closed','closed','','13836-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13836,'https://localhost/?p=14609',0,'revision','',0),
  7624. (14610,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSaturé : de nouveau, plage de roche en bord de mer, enfants y jouant au football. \n\n\n<b>Voix Off et In\n---</b>\n\nla terre abandonnée, la terre abandonnée, surchargée de lettres de l\'alphabet, étouffée sous les connaissances et \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h21’53','','inherit','closed','closed','','13837-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13837,'https://localhost/?p=14610',0,'revision','',0),
  7625. (14611,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nplus guère d\'oreilles qui soient à l\'écoute. (Anne-Marie Miéville).\n<em>Le territoire de l’homme</em> (1978), Elias Canetti.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h22’10','','inherit','closed','closed','','13838-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13838,'https://localhost/?p=14611',0,'revision','',0),
  7626. (14612,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nSurexposé et en négatif : de nouveau, petite fille aux yeux fermés, le visage levé vers le ciel et les mains tendues devant elle.\n<em>Miracle en Alabama</em> (1962), Arthur Penn. <em>Histoire (s) du cinéma 4a</em>, (1988 - 98) Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Klavierquintett, Op. 18, Moderato con moto</em> (1946) Mieczysław Weinberg.\n\n\n<b>Écrits\n---</b>\n\n','1h22’14','','inherit','closed','closed','','13839-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13839,'https://localhost/?p=14612',0,'revision','',0),
  7627. (14613,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nDétail de son visage et de sa main gauche. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h22’20','','inherit','closed','closed','','13840-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13840,'https://localhost/?p=14613',0,'revision','',0),
  7628. (14614,1,'2023-11-09 08:50:26','2023-11-09 07:50:26','<b>Images\n---</b>\n\nEn tons bleus : détail de son visage. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h22’26','','inherit','closed','closed','','13841-revision-v1','','','2023-11-09 08:50:26','2023-11-09 07:50:26','',13841,'https://localhost/?p=14614',0,'revision','',0),
  7629. (14615,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nDétail de sa main.\n\n\n<b>Voix Off et In\n---</b>\n\nVoici les roses de cette nuit écloses.\n<em>La Damnation de Faust</em> (1946), Berlioz Hector.\n\n\n<b>Bande Son\n---</b>\n\n<em>La Damnation de Faust</em> (1946), Berlioz Hector.\n\n\n<b>Écrits\n---</b>\n\n','1h22’32','','inherit','closed','closed','','13842-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13842,'https://localhost/?p=14615',0,'revision','',0),
  7630. (14616,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nEn blanc sur fond noir : inscription manuscrites. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nGodard \n Battaggia \n Aragno \n Brenez \n\n','1h22’43','','inherit','closed','closed','','13843-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13843,'https://localhost/?p=14616',0,'revision','',0),
  7631. (14617,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h22’49','','inherit','closed','closed','','13844-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13844,'https://localhost/?p=14617',0,'revision','',0),
  7632. (14618,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSilenzio, si gira. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nDe Vinci, Bernanos, King Lear, Closed vision, Weinberg, Giacometti, Jeanne d\'arc, Chahine, Chien andalou, Histoire (s) du cinéma, Derain, Caméra analytique, S. Walker, Artaud, Murnau, Ramuz, Hamlet, Gaumont, Miracle en Alabama, J Michelet, Histoire, Kiss me Deadly, V. Grossman \n\n','1h22’54','','inherit','closed','closed','','13845-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13845,'https://localhost/?p=14618',0,'revision','',0),
  7633. (14619,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nSilenzio. Camera, moteur, motore \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nD. Guyotat, Allemagne année neuf zéro, Le dernier des hommes, J. Gozland, Johny Guitar, petit soldat, M Leroux, Liban Guerres et hommes, Salo, A Sokourov, Timbuktu, Vrai faux passeport, chute faucon noir, les carabiniers, hommes du dimanche, Blue jean, guerre de chine, les dents de la mer, Le sang des bêtes, R. Girard, V Illitch, La grève, Païsa \n\n','1h22’58','','inherit','closed','closed','','13846-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13846,'https://localhost/?p=14619',0,'revision','',0),
  7634. (14620,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\npartito, ciak, Odissea 14702 prima.\n<em>Le Mépris</em> (1963), Jean-Luc Godard.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\nVertigo, femme au corbeau, l\'Atalante, au bord de la mer bleue, hélas pour moi, Ruby gentry, planète, 8 mai 1945, les enfants jouent à la Russie, Delacroix, Angèle, Zylberman, JLG JLG, Guerre et paix, Péguy, Les enfants de la guerre, Stalingrad, l\'espoir, Inessa Armand, le silence de la mer\n','1h23’03','','inherit','closed','closed','','13847-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13847,'https://localhost/?p=14620',0,'revision','',0),
  7635. (14621,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nGong profond et inquiétant. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h23’08','','inherit','closed','closed','','13848-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13848,'https://localhost/?p=14621',0,'revision','',0),
  7636. (14622,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « TEXTES ». \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n TEXTES \n\n','1h23’10','','inherit','closed','closed','','13849-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13849,'https://localhost/?p=14622',0,'revision','',0),
  7637. (14623,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nGoogle, Al razutis, RM Rilke, Berlin express, l\'affrontement, paysage dans le brouillard, Dostoïevski, Hollis Frampton, L. F. Céline, P de Villiers, Hans Otte, Manon, Orphée, croisée des destins, mécano de la générale, route de l\'impossible, Baudelaire, Hegel, D. Vertov, terror by night, G Steiner, castoriadis, le silence \n\n','1h23’14','','inherit','closed','closed','','13850-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13850,'https://localhost/?p=14623',0,'revision','',0),
  7638. (14624,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nShanghai express, A Brehem, E Vittorini T Gustavsen, Turksib, A. Schnittke, Trigon films, Liberté et patrie, P. Val, W. Faulkner, grandeur et décadence, les 2 Fédor, Wild boys on the road, Toccata for toy trains, Arvo part, Au bord de la mer bleue, Anna Karenine, Medvedkine, Après le feu, le plaisir, deux fois cinquante ans, la commune, Arditti quartet, ECM records, V. Hugo, vendémiaire \n\n','1h23’19','','inherit','closed','closed','','13851-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13851,'https://localhost/?p=14624',0,'revision','',0),
  7639. (14625,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « FILMS ». \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\nMais la langue ne sera jamais \n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nFILMS \n\n','1h23’20','','inherit','closed','closed','','13852-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13852,'https://localhost/?p=14625',0,'revision','',0),
  7640. (14626,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\nle langage \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nA. Rimbaud, terrorism considered, Sollers, V. Vysotsky, Montesquieu, le faux coupable, Grèce 2013, Au cœur de l\'orage, La Strada, J.- S. Bach, Les chouans, Mister love, Sayat nova, Los Olvidados, Marilyn, Le premier maître, les onze fioretti, Young Mister Lincoln, Monsieur de Charette, Le chaos, Freaks, Porno, danish string quartet, For ever Mozart \n\n','1h23’25','','inherit','closed','closed','','13853-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13853,'https://localhost/?p=14626',0,'revision','',0),
  7641. (14627,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nCaillebotte, Balzac, Jacques rivette, Dies irae, Wyatt Earp, Tout va bien, Alexandre Nevski, Eau argentée, C dans l\'air, Fantômas, Freud, procès de Charles 1er, Nuremberg, Méliès, Hortense de Beauharnais, école de Fontainebleau, Duck soup, René Charles de Lusson, Elephant, Week-end, Viva Villa, Que viva mexico, les visiteurs du soir, Elie Faure, S. Prokofiev, La fin du A \n\n','1h23’30','','inherit','closed','closed','','13854-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13854,'https://localhost/?p=14627',0,'revision','',0),
  7642. (14628,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « TABLEAUX ». \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nCoq chantant. \n\n\n<b>Écrits\n---</b>\n\nTABLEAUX \n\n','1h23’31','','inherit','closed','closed','','13855-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13855,'https://localhost/?p=14628',0,'revision','',0),
  7643. (14629,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Vom Winde Beweint - 1 Largo Molto</em> (1990), Giya Kancheli.\n\n\n<b>Écrits\n---</b>\n\nlas Hurdes, Beckett, metropolis, Nuit du carrefour, M. Blanchot, Vladimir et Rosa, terreur et vertu, l\'esprit des lois, La dame de Shanghai, Un feu, la belle et la Bête, Emile Cohl, la région centrale, Photo Libération, Bécassine, Broswimmer, Notorius, Moubarak, Origine du XXIe siècle, A. Cossery, le visage de Dieu, Meshes of afternoon, Les 1001 nuits, Constantinople, Détective, Film socialisme, Voleur de Bagdad (R. Walsh)\n','1h23’35','','inherit','closed','closed','','13856-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13856,'https://localhost/?p=14629',0,'revision','',0),
  7644. (14630,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nAladin magic lamp, le Messie, The crusades, Bonaparte, frères de guerre, Salammbô, Méditerranée, E. Saïd, S. Luste Boulbina, M. Koldenitzky, Nous, les dernières vacances, Djamila, Voyage à Tunis, Collier perdu de la colombe, Kanchelli, Khalled abou Khalled, gare centrale, Ici et ailleurs, la saison des hommes, Alexandre Dumas, Muezzin, P Mizraki, Mendelssohn, A. Macke, Tamaout, Détention secrète \n\n','1h23’40','','inherit','closed','closed','','13857-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13857,'https://localhost/?p=14630',0,'revision','',0),
  7645. (14631,1,'2023-11-09 08:50:27','2023-11-09 07:50:27','<b>Images\n---</b>\n\nEn gras, s’ajoutant à la liste précédente : « MUSIQUE » \n La liste disparaît. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nMUSIQUE \n\n','1h23’41','','inherit','closed','closed','','13858-revision-v1','','','2023-11-09 08:50:27','2023-11-09 07:50:27','',13858,'https://localhost/?p=14631',0,'revision','',0),
  7646. (14632,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n F. Prokosch, Judex, la Bandera, Syriana, D. Sibony, La môme vert de gris, Mille mois, Premiers chanteurs des Bilad Al Sham, les silences du palais, Al leil, La fièvre, About Elly, Tunisie, Voleur de Bagdad (C. Donner), Bab\' Aziz\', Arabian nights, Fissures, Salafistes sexe, Maghreb, 13 hours, kerbala, Tomasz Stanko, les terrasses, 2 films inconnus, Reel unreel, La recupart, Elias Canetti, P. Weiss \n\n','1h23’45','','inherit','closed','closed','','13859-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13859,'https://localhost/?p=14632',0,'revision','',0),
  7647. (14633,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nEUX TOUS \n\n','1h23’49','','inherit','closed','closed','','13860-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13860,'https://localhost/?p=14633',0,'revision','',0),
  7648. (14634,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : photo d\'un enfant mangeant assis. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h23’51','','inherit','closed','closed','','13861-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13861,'https://localhost/?p=14634',0,'revision','',0),
  7649. (14635,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nNoir. Lettres latines rouges s’y superposant à des lettres arabes blanches. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nHAMIDREZA \n PEJMAN \n\n','1h23’54','','inherit','closed','closed','','13862-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13862,'https://localhost/?p=14635',0,'revision','',0),
  7650. (14636,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nNoir. Lettres latines rouges s’y superposant à des lettres arabes blanches. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\nGEORGES \n SCHOUCAIR \n\n','1h23’56','','inherit','closed','closed','','13863-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13863,'https://localhost/?p=14636',0,'revision','',0),
  7651. (14637,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\nNADER \n MOBARGHA \n\n','1h23’59','','inherit','closed','closed','','13864-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13864,'https://localhost/?p=14637',0,'revision','',0),
  7652. (14638,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nEn noir et blanc : grillage avec une pancarte indiquant : « NO TRESPASSING ». \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’00','','inherit','closed','closed','','13865-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13865,'https://localhost/?p=14638',0,'revision','',0),
  7653. (14639,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nEn couleur : photo d’un grillage avec une pancarte indiquant : « DÉFENSE D’ENTRER \n PROPRIÉTÉ DE L’ETAT ». \n\n\n<b>Voix Off et In\n---</b>\n\nEn réalité, disait Brecht, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’04','','inherit','closed','closed','','13866-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13866,'https://localhost/?p=14639',0,'revision','',0),
  7654. (14640,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nInscription manuscrite : \n « Film immatriculé \n Au Registre public de la \n Cinématographie \n et visé à la censure \n sous N932 15 / 2 / 46 ». \n\n\n<b>Voix Off et In\n---</b>\n\nseul le fragment \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’09','','inherit','closed','closed','','13867-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13867,'https://localhost/?p=14640',0,'revision','',0),
  7655. (14641,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nAu ralenti et en noir et blanc : jeunes esclaves vénérant un roi sur un trône. \n\n\n<b>Voix Off et In\n---</b>\n\nporte la marque de l\'authenticité parce qu’il est le plus proche de la fonction la plus intérieure de l’acte de production. De production qui correspond à la respiration, au simple fait d’exister tout juste vécu par la conscience. (Jean-Luc Godard). \n \n Deux voix de Godard continuent de parler en se chevauchant : \n \n Marx et Engels. A leurs yeux \n Eugène Sue était un aveugle, \n un solitaire, pour qui la vie pleine de vie était une abstraction. Ils admirent, il vrai, que la représentation d’une civilisation tombée dans la dépravation d’un état où les droits civils n’étaient pas respectés, où l’inégalité régnait, contenait … critique. \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’14','','inherit','closed','closed','','13868-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13868,'https://localhost/?p=14641',0,'revision','',0),
  7656. (14642,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nEn noir et blanc : détail de la main du <em>San Giovanni Battista</em> (1508 - 1513), Leonardo da Vinci.\n\n\n<b>Voix Off et In\n---</b>\n\nMais\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’41','','inherit','closed','closed','','13869-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13869,'https://localhost/?p=14642',0,'revision','',0),
  7657. (14643,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nSurexposé et saturé : pellicule tirée d\'une bobine en rotation. \n\n\n<b>Voix Off et In\n---</b>\n\nau contraire de Balzac, \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’44','','inherit','closed','closed','','13870-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13870,'https://localhost/?p=14643',0,'revision','',0),
  7658. (14644,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nSurexposé, en noir et blanc : de nouveau, photographie d\'un enfant mangeant assis. \n\n\n<b>Voix Off et In\n---</b>\n\nil ne faisait que satisfaire son penchant effréné pour l’homme \n \n \n \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’45','','inherit','closed','closed','','13871-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13871,'https://localhost/?p=14644',0,'revision','',0),
  7659. (14645,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nSoldats courants à travers des explosions.\n\n\n<b>Voix Off et In\n---</b>\n\ns’humiliant lui-même.\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’48','','inherit','closed','closed','','13872-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13872,'https://localhost/?p=14645',0,'revision','',0),
  7660. (14646,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nPhotographie de Louis-Ferdinand Céline.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’50','','inherit','closed','closed','','13873-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13873,'https://localhost/?p=14646',0,'revision','',0),
  7661. (14647,1,'2023-11-09 08:50:28','2023-11-09 07:50:28','<b>Images\n---</b>\n\nDe nouveau, femme s’évanouissant avec les mains en l\'air devant un écran. <em>Deux fois cinquante ans de cinéma français</em> (1995), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\nQu’il n’utilisait le remords et l’expiation\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’51','','inherit','closed','closed','','13874-revision-v1','','','2023-11-09 08:50:28','2023-11-09 07:50:28','',13874,'https://localhost/?p=14647',0,'revision','',0),
  7662. (14648,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, femme au micro parlant lors d\'une manifestation. \n\n\n<b>Voix Off et In\n---</b>\n\nd’actes d’une brutalité inouïe \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h24’53','','inherit','closed','closed','','13875-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13875,'https://localhost/?p=14648',0,'revision','',0),
  7663. (14649,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nEn négatif : de nouveau, homme caché dans l\'ombre, le menton posé sur la main gauche.\n<em>Fantômas</em> (1913), Louis Feuillade. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’54','','inherit','closed','closed','','13876-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13876,'https://localhost/?p=14649',0,'revision','',0),
  7664. (14650,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, photographie de Marilyne Monroe. Iris et clignotement : corbeaux s’envolant.\n<em>Les Oiseaux</em> (1963), Alfred Hitchcock. <em>Histoire (s) du cinéma 4a</em> (1988 - 98), Jean-Luc Godard.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h24’56','','inherit','closed','closed','','13877-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13877,'https://localhost/?p=14650',0,'revision','',0),
  7665. (14651,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, Bécassine avec l\'index de la main gauche levé. \n\n\n<b>Voix Off et In\n---</b>\n\nque pour faire miroiter le lieu \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’00','','inherit','closed','closed','','13878-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13878,'https://localhost/?p=14651',0,'revision','',0),
  7666. (14652,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nSurexposé, saturé en tons bleus : presque indistinguable. \n\n\n<b>Voix Off et In\n---</b>\n\nd’une transformation de \n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’01','','inherit','closed','closed','','13879-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13879,'https://localhost/?p=14652',0,'revision','',0),
  7667. (14653,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, personne portant un turban, montrant les paumes et plaçant une main sur la paume de l\'autre d’un mouvement lent.\n<em>Bab\'Aziz, le prince qui contemplait son âme</em> (2005), Nacer Khémir.\n\n\n<b>Voix Off et In\n---</b>\n\nla réalité. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h25’04','','inherit','closed','closed','','13880-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13880,'https://localhost/?p=14653',0,'revision','',0),
  7668. (14654,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, visage d\'un homme appuyé contre une vitre reflétant son image. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’10','','inherit','closed','closed','','13881-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13881,'https://localhost/?p=14654',0,'revision','',0),
  7669. (14655,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, plage de roche surplombant la mer, avec une maison en ruine à côté. Deux hommes marchant entre des bateaux échoués sur la plage. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’13','','inherit','closed','closed','','13882-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13882,'https://localhost/?p=14655',0,'revision','',0),
  7670. (14656,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, groupe d\'hommes courant dans la rue, puis faisant irruption à travers la porte d\'une maison située dans une ruelle. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’17','','inherit','closed','closed','','13883-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13883,'https://localhost/?p=14656',0,'revision','',0),
  7671. (14657,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nDe nouveau, enfant sur une route poussant d\'une main une bobine rouge avec une pellicule.\n<em>Reel-Unreel</em> (2011), Francis Alÿs.\n\n\n<b>Voix Off et In\n---</b>\n\nIl doit y avoir une révolution. (Jean-Luc Godard)\n\n\n<b>Bande Son\n---</b>\n\nId.\n\n\n<b>Écrits\n---</b>\n\n','1h25’22','','inherit','closed','closed','','13884-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13884,'https://localhost/?p=14657',0,'revision','',0),
  7672. (14658,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nNoir, avec l\'inscription « Parole et Image »\napparaissant. En traces de détrempe bleue et bleu clair, « Parole » et « Image », en rouge « et ».\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>The River I</em> (1997), Ketil Bjornstad &amp; David Darling.\n\n\n<b>Écrits\n---</b>\n\n','1h25’29','','inherit','closed','closed','','13885-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13885,'https://localhost/?p=14658',0,'revision','',0),
  7673. (14659,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nHomme en pleurs soulevant un cadavre du sol. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’32','','inherit','closed','closed','','13886-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13886,'https://localhost/?p=14659',0,'revision','',0),
  7674. (14660,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nPhotographie d\'une statue représentant probablement le Christ. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nId. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h25’36','','inherit','closed','closed','','13887-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13887,'https://localhost/?p=14660',0,'revision','',0),
  7675. (14661,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\nLorsque je me parle à moi même, je parle la parole d\'un autre. Que je me parle à moi-même. D\'un autre. Que je me parle à moi-même. (Anne Marie Miéville).\n\nGodard, avec une voix d’outre tombe :\nEt si même rien ne devait être comme nous l\'avions espéré, cela ne changerait rien à nos espérances. Les espérances resteraient, l\'utopie serait nécessaire. Plus tard aussi les espérances s’embraseraient de nombreuses fois, étouffées par l\'ennemi plus fort, et elles se réveilleraient sans cesse. Et le domaine des espérances serait plus vaste que de notre temps. Il s\'étendrait sur tous les continents : le besoin de contradiction, de résistance ne diminuera jamais, de même que le passé était immutable, de même les espérances resteraient immuables, et ceux qui un jour alors que nous étions jeunes avaient nourri l’ [toux] ardent espoir. Et si même rien ne devait être comme nous l\'avions espéré, cela ne changerait rien aux espérances.\n<em>L’Esthétique de la résistance</em> (1978 - 81), Peter Weiss.\n\n\n<b>Bande Son\n---</b>\n\nId. et puis silence.\n\n\n<b>Écrits\n---</b>\n\n','1h25’37','','inherit','closed','closed','','13888-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13888,'https://localhost/?p=14661',0,'revision','',0),
  7676. (14662,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nEntrée du danseur cachant sa vieillesse sous un masque, et dansant jusqu\'à en mourir.\n<em>Le masque, Le Plaisir</em> (1952), Max Ophüls.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Das Buch der Klange I - XII</em> (1999), I, Hans Otte.\n\n\n<b>Écrits\n---</b>\n\n','1h26’58','','inherit','closed','closed','','13889-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13889,'https://localhost/?p=14662',0,'revision','',0),
  7677. (14663,1,'2023-11-09 08:50:29','2023-11-09 07:50:29','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\nSilence. \n\n\n<b>Écrits\n---</b>\n\n\n\n','1h27’58','','inherit','closed','closed','','13890-revision-v1','','','2023-11-09 08:50:29','2023-11-09 07:50:29','',13890,'https://localhost/?p=14663',0,'revision','',0),
  7678. (14664,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','<b>Images\n---</b>\n\nNoir.\n\n\n<b>Voix Off et In\n---</b>\n\n\n\n<b>Bande Son\n---</b>\n\n<em>Das Buch der Klange I - XII, V</em> (1999), Hans Otte.\n\n\n<b>Écrits\n---</b>\n\nC 2018 CASA AZUL FILMS\nC 2015 ECRAN Noir. productions\n','1h28’03','','inherit','closed','closed','','13891-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13891,'https://localhost/?p=14664',0,'revision','',0),
  7679. (14665,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','0’0’’','','inherit','closed','closed','','13892-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13892,'https://localhost/?p=14665',0,'revision','',0),
  7680. (14666,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','02’55’’','','inherit','closed','closed','','13893-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13893,'https://localhost/?p=14666',0,'revision','',0),
  7681. (14667,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','51’57’’','','inherit','closed','closed','','13894-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13894,'https://localhost/?p=14667',0,'revision','',0),
  7682. (14668,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','1h22’43’’','','inherit','closed','closed','','13895-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13895,'https://localhost/?p=14668',0,'revision','',0),
  7683. (14669,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','1h24’00’’','','inherit','closed','closed','','13896-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13896,'https://localhost/?p=14669',0,'revision','',0),
  7684. (14670,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','11’48’’','','inherit','closed','closed','','13897-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13897,'https://localhost/?p=14670',0,'revision','',0),
  7685. (14671,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','20’28’’','','inherit','closed','closed','','13898-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13898,'https://localhost/?p=14671',0,'revision','',0),
  7686. (14672,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','33’02’’','','inherit','closed','closed','','13899-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13899,'https://localhost/?p=14672',0,'revision','',0),
  7687. (14673,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','48’16’’','','inherit','closed','closed','','13900-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13900,'https://localhost/?p=14673',0,'revision','',0),
  7688. (14674,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','55’33’’','','inherit','closed','closed','','13901-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13901,'https://localhost/?p=14674',0,'revision','',0),
  7689. (14675,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','1h04’42’’','','inherit','closed','closed','','13902-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13902,'https://localhost/?p=14675',0,'revision','',0),
  7690. (14676,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','1h17’40’’','','inherit','closed','closed','','13903-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13903,'https://localhost/?p=14676',0,'revision','',0),
  7691. (14677,1,'2023-11-09 08:50:30','2023-11-09 07:50:30','','1h18’13’’','','inherit','closed','closed','','13904-revision-v1','','','2023-11-09 08:50:30','2023-11-09 07:50:30','',13904,'https://localhost/?p=14677',0,'revision','',0),
  7692. (14680,6,'2023-11-09 09:40:52','2023-11-09 08:40:52','<b>Images\n---</b>\n\nMain levée vers le haut.\n<em>Gare Centrale</em> (1958), Youssef Chahine.\n\n<b>Voix Off et In\n---</b>\n\nwayayayaya\n\n<b>Bande Son\n---</b>\n\nId.\n\n<b>Écrits\n---</b>\n\nOh ! Temps','01’29','','inherit','open','open','','','','','2023-11-09 09:39:28','2023-11-09 08:39:28','',13205,'https://localhost/?p=14680',0,'revision','',0),
  7693. (14706,6,'2023-11-09 10:43:37','2023-11-09 09:43:37','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n\n<b>Écrits\n---</b>\n\n\n\n','0’00','','pending','open','open','','','','','2023-11-09 10:43:36','2023-11-09 09:43:36','',0,'https://localhost/?p=14706',0,'post','pending-revision',13192),
  7694. (14707,6,'2023-11-09 18:20:06','2023-11-09 17:20:06','<b>Images\n---</b>\n\nNoir. \n\n\n<b>Voix Off et In\n---</b>\n\n\n\n\n<b>Bande Son\n---</b>\n\n\n\n\n<b>Écrits\n---</b>\n\n\n\n','0’00','','pending','open','open','','','','','2023-11-09 18:20:05','2023-11-09 17:20:05','',0,'https://localhost/?p=14707',0,'post','pending-revision',13192),
  7695. (14708,6,'2023-11-09 18:20:26','2023-11-09 17:20:26','<b>Images\n---</b>\n\nLogo de la société de distribution Kino Lorber.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’02','','pending','open','open','','','','','2023-11-09 18:20:25','2023-11-09 17:20:25','',0,'https://localhost/?p=14708',0,'post','pending-revision',13193),
  7696. (14709,1,'2023-11-09 18:38:49','2023-11-09 17:38:49','<b>Images\n---</b>\n\nNoir.\n\n<b>Voix Off et In\n---</b>\n\nSalut à tous c\'est Godard\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’00','','inherit','open','open','','','','','2023-11-09 18:38:34','2023-11-09 17:38:34','',13192,'https://localhost/?p=14709',0,'revision','',0),
  7697. (14711,1,'2023-11-09 18:40:09','2023-11-09 17:40:09','<b>Images\n---</b>\n\nNoir.\n\n<b>Voix Off et In\n---</b>\n\n<b>Bande Son\n---</b>\n\n<b>Écrits\n---</b>','0’00','','inherit','closed','closed','','13192-revision-v1','','','2023-11-09 18:40:09','2023-11-09 17:40:09','',13192,'https://localhost/?p=14711',0,'revision','',0);
  7698. /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
  7699. UNLOCK TABLES;
  7700. --
  7701. -- Table structure for table `wp_term_relationships`
  7702. --
  7703. DROP TABLE IF EXISTS `wp_term_relationships`;
  7704. /*!40101 SET @saved_cs_client = @@character_set_client */;
  7705. /*!40101 SET character_set_client = utf8 */;
  7706. CREATE TABLE `wp_term_relationships` (
  7707. `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  7708. `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  7709. `term_order` int(11) NOT NULL DEFAULT 0,
  7710. PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  7711. KEY `term_taxonomy_id` (`term_taxonomy_id`)
  7712. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  7713. /*!40101 SET character_set_client = @saved_cs_client */;
  7714. --
  7715. -- Dumping data for table `wp_term_relationships`
  7716. --
  7717. LOCK TABLES `wp_term_relationships` WRITE;
  7718. /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
  7719. INSERT INTO `wp_term_relationships` VALUES
  7720. (5,2,0),
  7721. (9373,1,0),
  7722. (9375,1,0),
  7723. (13190,1,0),
  7724. (13191,1,0),
  7725. (13192,1,0),
  7726. (13193,1,0),
  7727. (13194,1,0),
  7728. (13195,1,0),
  7729. (13196,1,0),
  7730. (13197,1,0),
  7731. (13198,1,0),
  7732. (13199,1,0),
  7733. (13200,1,0),
  7734. (13201,1,0),
  7735. (13202,1,0),
  7736. (13203,1,0),
  7737. (13204,1,0),
  7738. (13205,1,0),
  7739. (13206,1,0),
  7740. (13207,1,0),
  7741. (13208,1,0),
  7742. (13209,1,0),
  7743. (13210,1,0),
  7744. (13211,1,0),
  7745. (13212,1,0),
  7746. (13213,1,0),
  7747. (13214,1,0),
  7748. (13215,1,0),
  7749. (13216,1,0),
  7750. (13217,1,0),
  7751. (13218,1,0),
  7752. (13219,1,0),
  7753. (13220,1,0),
  7754. (13221,1,0),
  7755. (13222,1,0),
  7756. (13223,1,0),
  7757. (13224,1,0),
  7758. (13225,1,0),
  7759. (13226,1,0),
  7760. (13227,1,0),
  7761. (13228,1,0),
  7762. (13229,1,0),
  7763. (13230,1,0),
  7764. (13231,1,0),
  7765. (13232,1,0),
  7766. (13233,1,0),
  7767. (13234,1,0),
  7768. (13235,1,0),
  7769. (13236,1,0),
  7770. (13237,1,0),
  7771. (13238,1,0),
  7772. (13239,1,0),
  7773. (13240,1,0),
  7774. (13241,1,0),
  7775. (13242,1,0),
  7776. (13243,1,0),
  7777. (13244,1,0),
  7778. (13245,1,0),
  7779. (13246,1,0),
  7780. (13247,1,0),
  7781. (13248,1,0),
  7782. (13249,1,0),
  7783. (13250,1,0),
  7784. (13251,1,0),
  7785. (13252,1,0),
  7786. (13253,1,0),
  7787. (13254,1,0),
  7788. (13255,1,0),
  7789. (13256,1,0),
  7790. (13257,1,0),
  7791. (13258,1,0),
  7792. (13259,1,0),
  7793. (13260,1,0),
  7794. (13261,1,0),
  7795. (13262,1,0),
  7796. (13263,1,0),
  7797. (13264,1,0),
  7798. (13265,1,0),
  7799. (13266,1,0),
  7800. (13267,1,0),
  7801. (13268,1,0),
  7802. (13269,1,0),
  7803. (13270,1,0),
  7804. (13271,1,0),
  7805. (13272,1,0),
  7806. (13273,1,0),
  7807. (13274,1,0),
  7808. (13275,1,0),
  7809. (13276,1,0),
  7810. (13277,1,0),
  7811. (13278,1,0),
  7812. (13279,1,0),
  7813. (13280,1,0),
  7814. (13281,1,0),
  7815. (13282,1,0),
  7816. (13283,1,0),
  7817. (13284,1,0),
  7818. (13285,1,0),
  7819. (13286,1,0),
  7820. (13287,1,0),
  7821. (13288,1,0),
  7822. (13289,1,0),
  7823. (13290,1,0),
  7824. (13291,1,0),
  7825. (13292,1,0),
  7826. (13293,1,0),
  7827. (13294,1,0),
  7828. (13295,1,0),
  7829. (13296,1,0),
  7830. (13297,1,0),
  7831. (13298,1,0),
  7832. (13299,1,0),
  7833. (13300,1,0),
  7834. (13301,1,0),
  7835. (13302,1,0),
  7836. (13303,1,0),
  7837. (13304,1,0),
  7838. (13305,1,0),
  7839. (13306,1,0),
  7840. (13307,1,0),
  7841. (13308,1,0),
  7842. (13309,1,0),
  7843. (13310,1,0),
  7844. (13311,1,0),
  7845. (13312,1,0),
  7846. (13313,1,0),
  7847. (13314,1,0),
  7848. (13315,1,0),
  7849. (13316,1,0),
  7850. (13317,1,0),
  7851. (13318,1,0),
  7852. (13319,1,0),
  7853. (13320,1,0),
  7854. (13321,1,0),
  7855. (13322,1,0),
  7856. (13323,1,0),
  7857. (13324,1,0),
  7858. (13325,1,0),
  7859. (13326,1,0),
  7860. (13327,1,0),
  7861. (13328,1,0),
  7862. (13329,1,0),
  7863. (13330,1,0),
  7864. (13331,1,0),
  7865. (13332,1,0),
  7866. (13333,1,0),
  7867. (13334,1,0),
  7868. (13335,1,0),
  7869. (13336,1,0),
  7870. (13337,1,0),
  7871. (13338,1,0),
  7872. (13339,1,0),
  7873. (13340,1,0),
  7874. (13341,1,0),
  7875. (13342,1,0),
  7876. (13343,1,0),
  7877. (13344,1,0),
  7878. (13345,1,0),
  7879. (13346,1,0),
  7880. (13347,1,0),
  7881. (13348,1,0),
  7882. (13349,1,0),
  7883. (13350,1,0),
  7884. (13351,1,0),
  7885. (13352,1,0),
  7886. (13353,1,0),
  7887. (13354,1,0),
  7888. (13355,1,0),
  7889. (13356,1,0),
  7890. (13357,1,0),
  7891. (13358,1,0),
  7892. (13359,1,0),
  7893. (13360,1,0),
  7894. (13361,1,0),
  7895. (13362,1,0),
  7896. (13363,1,0),
  7897. (13364,1,0),
  7898. (13365,1,0),
  7899. (13366,1,0),
  7900. (13367,1,0),
  7901. (13368,1,0),
  7902. (13369,1,0),
  7903. (13370,1,0),
  7904. (13371,1,0),
  7905. (13372,1,0),
  7906. (13373,1,0),
  7907. (13374,1,0),
  7908. (13375,1,0),
  7909. (13376,1,0),
  7910. (13377,1,0),
  7911. (13378,1,0),
  7912. (13379,1,0),
  7913. (13380,1,0),
  7914. (13381,1,0),
  7915. (13382,1,0),
  7916. (13383,1,0),
  7917. (13384,1,0),
  7918. (13385,1,0),
  7919. (13386,1,0),
  7920. (13387,1,0),
  7921. (13388,1,0),
  7922. (13389,1,0),
  7923. (13390,1,0),
  7924. (13391,1,0),
  7925. (13392,1,0),
  7926. (13393,1,0),
  7927. (13394,1,0),
  7928. (13395,1,0),
  7929. (13396,1,0),
  7930. (13397,1,0),
  7931. (13398,1,0),
  7932. (13399,1,0),
  7933. (13400,1,0),
  7934. (13401,1,0),
  7935. (13402,1,0),
  7936. (13403,1,0),
  7937. (13404,1,0),
  7938. (13405,1,0),
  7939. (13406,1,0),
  7940. (13407,1,0),
  7941. (13408,1,0),
  7942. (13409,1,0),
  7943. (13410,1,0),
  7944. (13411,1,0),
  7945. (13412,1,0),
  7946. (13413,1,0),
  7947. (13414,1,0),
  7948. (13415,1,0),
  7949. (13416,1,0),
  7950. (13417,1,0),
  7951. (13418,1,0),
  7952. (13419,1,0),
  7953. (13420,1,0),
  7954. (13421,1,0),
  7955. (13422,1,0),
  7956. (13423,1,0),
  7957. (13424,1,0),
  7958. (13425,1,0),
  7959. (13426,1,0),
  7960. (13427,1,0),
  7961. (13428,1,0),
  7962. (13429,1,0),
  7963. (13430,1,0),
  7964. (13431,1,0),
  7965. (13432,1,0),
  7966. (13433,1,0),
  7967. (13434,1,0),
  7968. (13435,1,0),
  7969. (13436,1,0),
  7970. (13437,1,0),
  7971. (13438,1,0),
  7972. (13439,1,0),
  7973. (13440,1,0),
  7974. (13441,1,0),
  7975. (13442,1,0),
  7976. (13443,1,0),
  7977. (13444,1,0),
  7978. (13445,1,0),
  7979. (13446,1,0),
  7980. (13447,1,0),
  7981. (13448,1,0),
  7982. (13449,1,0),
  7983. (13450,1,0),
  7984. (13451,1,0),
  7985. (13452,1,0),
  7986. (13453,1,0),
  7987. (13454,1,0),
  7988. (13455,1,0),
  7989. (13456,1,0),
  7990. (13457,1,0),
  7991. (13458,1,0),
  7992. (13459,1,0),
  7993. (13460,1,0),
  7994. (13461,1,0),
  7995. (13462,1,0),
  7996. (13463,1,0),
  7997. (13464,1,0),
  7998. (13465,1,0),
  7999. (13466,1,0),
  8000. (13467,1,0),
  8001. (13468,1,0),
  8002. (13469,1,0),
  8003. (13470,1,0),
  8004. (13471,1,0),
  8005. (13472,1,0),
  8006. (13473,1,0),
  8007. (13474,1,0),
  8008. (13475,1,0),
  8009. (13476,1,0),
  8010. (13477,1,0),
  8011. (13478,1,0),
  8012. (13479,1,0),
  8013. (13480,1,0),
  8014. (13481,1,0),
  8015. (13482,1,0),
  8016. (13483,1,0),
  8017. (13484,1,0),
  8018. (13485,1,0),
  8019. (13486,1,0),
  8020. (13487,1,0),
  8021. (13488,1,0),
  8022. (13489,1,0),
  8023. (13490,1,0),
  8024. (13491,1,0),
  8025. (13492,1,0),
  8026. (13493,1,0),
  8027. (13494,1,0),
  8028. (13495,1,0),
  8029. (13496,1,0),
  8030. (13497,1,0),
  8031. (13498,1,0),
  8032. (13499,1,0),
  8033. (13500,1,0),
  8034. (13501,1,0),
  8035. (13502,1,0),
  8036. (13503,1,0),
  8037. (13504,1,0),
  8038. (13505,1,0),
  8039. (13506,1,0),
  8040. (13507,1,0),
  8041. (13508,1,0),
  8042. (13509,1,0),
  8043. (13510,1,0),
  8044. (13511,1,0),
  8045. (13512,1,0),
  8046. (13513,1,0),
  8047. (13514,1,0),
  8048. (13515,1,0),
  8049. (13516,1,0),
  8050. (13517,1,0),
  8051. (13518,1,0),
  8052. (13519,1,0),
  8053. (13520,1,0),
  8054. (13521,1,0),
  8055. (13522,1,0),
  8056. (13523,1,0),
  8057. (13524,1,0),
  8058. (13525,1,0),
  8059. (13526,1,0),
  8060. (13527,1,0),
  8061. (13528,1,0),
  8062. (13529,1,0),
  8063. (13530,1,0),
  8064. (13531,1,0),
  8065. (13532,1,0),
  8066. (13533,1,0),
  8067. (13534,1,0),
  8068. (13535,1,0),
  8069. (13536,1,0),
  8070. (13537,1,0),
  8071. (13538,1,0),
  8072. (13539,1,0),
  8073. (13540,1,0),
  8074. (13541,1,0),
  8075. (13542,1,0),
  8076. (13543,1,0),
  8077. (13544,1,0),
  8078. (13545,1,0),
  8079. (13546,1,0),
  8080. (13547,1,0),
  8081. (13548,1,0),
  8082. (13549,1,0),
  8083. (13550,1,0),
  8084. (13551,1,0),
  8085. (13552,1,0),
  8086. (13553,1,0),
  8087. (13554,1,0),
  8088. (13555,1,0),
  8089. (13556,1,0),
  8090. (13557,1,0),
  8091. (13558,1,0),
  8092. (13559,1,0),
  8093. (13560,1,0),
  8094. (13561,1,0),
  8095. (13562,1,0),
  8096. (13563,1,0),
  8097. (13564,1,0),
  8098. (13565,1,0),
  8099. (13566,1,0),
  8100. (13567,1,0),
  8101. (13568,1,0),
  8102. (13569,1,0),
  8103. (13570,1,0),
  8104. (13571,1,0),
  8105. (13572,1,0),
  8106. (13573,1,0),
  8107. (13574,1,0),
  8108. (13575,1,0),
  8109. (13576,1,0),
  8110. (13577,1,0),
  8111. (13578,1,0),
  8112. (13579,1,0),
  8113. (13580,1,0),
  8114. (13581,1,0),
  8115. (13582,1,0),
  8116. (13583,1,0),
  8117. (13584,1,0),
  8118. (13585,1,0),
  8119. (13586,1,0),
  8120. (13587,1,0),
  8121. (13588,1,0),
  8122. (13589,1,0),
  8123. (13590,1,0),
  8124. (13591,1,0),
  8125. (13592,1,0),
  8126. (13593,1,0),
  8127. (13594,1,0),
  8128. (13595,1,0),
  8129. (13596,1,0),
  8130. (13597,1,0),
  8131. (13598,1,0),
  8132. (13599,1,0),
  8133. (13600,1,0),
  8134. (13601,1,0),
  8135. (13602,1,0),
  8136. (13603,1,0),
  8137. (13604,1,0),
  8138. (13605,1,0),
  8139. (13606,1,0),
  8140. (13607,1,0),
  8141. (13608,1,0),
  8142. (13609,1,0),
  8143. (13610,1,0),
  8144. (13611,1,0),
  8145. (13612,1,0),
  8146. (13613,1,0),
  8147. (13614,1,0),
  8148. (13615,1,0),
  8149. (13616,1,0),
  8150. (13617,1,0),
  8151. (13618,1,0),
  8152. (13619,1,0),
  8153. (13620,1,0),
  8154. (13621,1,0),
  8155. (13622,1,0),
  8156. (13623,1,0),
  8157. (13624,1,0),
  8158. (13625,1,0),
  8159. (13626,1,0),
  8160. (13627,1,0),
  8161. (13628,1,0),
  8162. (13629,1,0),
  8163. (13630,1,0),
  8164. (13631,1,0),
  8165. (13632,1,0),
  8166. (13633,1,0),
  8167. (13634,1,0),
  8168. (13635,1,0),
  8169. (13636,1,0),
  8170. (13637,1,0),
  8171. (13638,1,0),
  8172. (13639,1,0),
  8173. (13640,1,0),
  8174. (13641,1,0),
  8175. (13642,1,0),
  8176. (13643,1,0),
  8177. (13644,1,0),
  8178. (13645,1,0),
  8179. (13646,1,0),
  8180. (13647,1,0),
  8181. (13648,1,0),
  8182. (13649,1,0),
  8183. (13650,1,0),
  8184. (13651,1,0),
  8185. (13652,1,0),
  8186. (13653,1,0),
  8187. (13654,1,0),
  8188. (13655,1,0),
  8189. (13656,1,0),
  8190. (13657,1,0),
  8191. (13658,1,0),
  8192. (13659,1,0),
  8193. (13660,1,0),
  8194. (13661,1,0),
  8195. (13662,1,0),
  8196. (13663,1,0),
  8197. (13664,1,0),
  8198. (13665,1,0),
  8199. (13666,1,0),
  8200. (13667,1,0),
  8201. (13668,1,0),
  8202. (13669,1,0),
  8203. (13670,1,0),
  8204. (13671,1,0),
  8205. (13672,1,0),
  8206. (13673,1,0),
  8207. (13674,1,0),
  8208. (13675,1,0),
  8209. (13676,1,0),
  8210. (13677,1,0),
  8211. (13678,1,0),
  8212. (13679,1,0),
  8213. (13680,1,0),
  8214. (13681,1,0),
  8215. (13682,1,0),
  8216. (13683,1,0),
  8217. (13684,1,0),
  8218. (13685,1,0),
  8219. (13686,1,0),
  8220. (13687,1,0),
  8221. (13688,1,0),
  8222. (13689,1,0),
  8223. (13690,1,0),
  8224. (13691,1,0),
  8225. (13692,1,0),
  8226. (13693,1,0),
  8227. (13694,1,0),
  8228. (13695,1,0),
  8229. (13696,1,0),
  8230. (13697,1,0),
  8231. (13698,1,0),
  8232. (13699,1,0),
  8233. (13700,1,0),
  8234. (13701,1,0),
  8235. (13702,1,0),
  8236. (13703,1,0),
  8237. (13704,1,0),
  8238. (13705,1,0),
  8239. (13706,1,0),
  8240. (13707,1,0),
  8241. (13708,1,0),
  8242. (13709,1,0),
  8243. (13710,1,0),
  8244. (13711,1,0),
  8245. (13712,1,0),
  8246. (13713,1,0),
  8247. (13714,1,0),
  8248. (13715,1,0),
  8249. (13716,1,0),
  8250. (13717,1,0),
  8251. (13718,1,0),
  8252. (13719,1,0),
  8253. (13720,1,0),
  8254. (13721,1,0),
  8255. (13722,1,0),
  8256. (13723,1,0),
  8257. (13724,1,0),
  8258. (13725,1,0),
  8259. (13726,1,0),
  8260. (13727,1,0),
  8261. (13728,1,0),
  8262. (13729,1,0),
  8263. (13730,1,0),
  8264. (13731,1,0),
  8265. (13732,1,0),
  8266. (13733,1,0),
  8267. (13734,1,0),
  8268. (13735,1,0),
  8269. (13736,1,0),
  8270. (13737,1,0),
  8271. (13738,1,0),
  8272. (13739,1,0),
  8273. (13740,1,0),
  8274. (13741,1,0),
  8275. (13742,1,0),
  8276. (13743,1,0),
  8277. (13744,1,0),
  8278. (13745,1,0),
  8279. (13746,1,0),
  8280. (13747,1,0),
  8281. (13748,1,0),
  8282. (13749,1,0),
  8283. (13750,1,0),
  8284. (13751,1,0),
  8285. (13752,1,0),
  8286. (13753,1,0),
  8287. (13754,1,0),
  8288. (13755,1,0),
  8289. (13756,1,0),
  8290. (13757,1,0),
  8291. (13758,1,0),
  8292. (13759,1,0),
  8293. (13760,1,0),
  8294. (13761,1,0),
  8295. (13762,1,0),
  8296. (13763,1,0),
  8297. (13764,1,0),
  8298. (13765,1,0),
  8299. (13766,1,0),
  8300. (13767,1,0),
  8301. (13768,1,0),
  8302. (13769,1,0),
  8303. (13770,1,0),
  8304. (13771,1,0),
  8305. (13772,1,0),
  8306. (13773,1,0),
  8307. (13774,1,0),
  8308. (13775,1,0),
  8309. (13776,1,0),
  8310. (13777,1,0),
  8311. (13778,1,0),
  8312. (13779,1,0),
  8313. (13780,1,0),
  8314. (13781,1,0),
  8315. (13782,1,0),
  8316. (13783,1,0),
  8317. (13784,1,0),
  8318. (13785,1,0),
  8319. (13786,1,0),
  8320. (13787,1,0),
  8321. (13788,1,0),
  8322. (13789,1,0),
  8323. (13790,1,0),
  8324. (13791,1,0),
  8325. (13792,1,0),
  8326. (13793,1,0),
  8327. (13794,1,0),
  8328. (13795,1,0),
  8329. (13796,1,0),
  8330. (13797,1,0),
  8331. (13798,1,0),
  8332. (13799,1,0),
  8333. (13800,1,0),
  8334. (13801,1,0),
  8335. (13802,1,0),
  8336. (13803,1,0),
  8337. (13804,1,0),
  8338. (13805,1,0),
  8339. (13806,1,0),
  8340. (13807,1,0),
  8341. (13808,1,0),
  8342. (13809,1,0),
  8343. (13810,1,0),
  8344. (13811,1,0),
  8345. (13812,1,0),
  8346. (13813,1,0),
  8347. (13814,1,0),
  8348. (13815,1,0),
  8349. (13816,1,0),
  8350. (13817,1,0),
  8351. (13818,1,0),
  8352. (13819,1,0),
  8353. (13820,1,0),
  8354. (13821,1,0),
  8355. (13822,1,0),
  8356. (13823,1,0),
  8357. (13824,1,0),
  8358. (13825,1,0),
  8359. (13826,1,0),
  8360. (13827,1,0),
  8361. (13828,1,0),
  8362. (13829,1,0),
  8363. (13830,1,0),
  8364. (13831,1,0),
  8365. (13832,1,0),
  8366. (13833,1,0),
  8367. (13834,1,0),
  8368. (13835,1,0),
  8369. (13836,1,0),
  8370. (13837,1,0),
  8371. (13838,1,0),
  8372. (13839,1,0),
  8373. (13840,1,0),
  8374. (13841,1,0),
  8375. (13842,1,0),
  8376. (13843,1,0),
  8377. (13844,1,0),
  8378. (13845,1,0),
  8379. (13846,1,0),
  8380. (13847,1,0),
  8381. (13848,1,0),
  8382. (13849,1,0),
  8383. (13850,1,0),
  8384. (13851,1,0),
  8385. (13852,1,0),
  8386. (13853,1,0),
  8387. (13854,1,0),
  8388. (13855,1,0),
  8389. (13856,1,0),
  8390. (13857,1,0),
  8391. (13858,1,0),
  8392. (13859,1,0),
  8393. (13860,1,0),
  8394. (13861,1,0),
  8395. (13862,1,0),
  8396. (13863,1,0),
  8397. (13864,1,0),
  8398. (13865,1,0),
  8399. (13866,1,0),
  8400. (13867,1,0),
  8401. (13868,1,0),
  8402. (13869,1,0),
  8403. (13870,1,0),
  8404. (13871,1,0),
  8405. (13872,1,0),
  8406. (13873,1,0),
  8407. (13874,1,0),
  8408. (13875,1,0),
  8409. (13876,1,0),
  8410. (13877,1,0),
  8411. (13878,1,0),
  8412. (13879,1,0),
  8413. (13880,1,0),
  8414. (13881,1,0),
  8415. (13882,1,0),
  8416. (13883,1,0),
  8417. (13884,1,0),
  8418. (13885,1,0),
  8419. (13886,1,0),
  8420. (13887,1,0),
  8421. (13888,1,0),
  8422. (13889,1,0),
  8423. (13890,1,0),
  8424. (13891,1,0),
  8425. (13892,1,0),
  8426. (13893,1,0),
  8427. (13894,1,0),
  8428. (13895,1,0),
  8429. (13896,1,0),
  8430. (13897,1,0),
  8431. (13898,1,0),
  8432. (13899,1,0),
  8433. (13900,1,0),
  8434. (13901,1,0),
  8435. (13902,1,0),
  8436. (13903,1,0),
  8437. (13904,1,0),
  8438. (13907,1,0),
  8439. (13910,1,0),
  8440. (13927,1,0),
  8441. (13949,1,0),
  8442. (13952,1,0),
  8443. (13954,1,0),
  8444. (13955,1,0),
  8445. (14680,1,0),
  8446. (14706,1,0),
  8447. (14707,1,0),
  8448. (14708,1,0),
  8449. (14709,1,0);
  8450. /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
  8451. UNLOCK TABLES;
  8452. --
  8453. -- Table structure for table `wp_term_taxonomy`
  8454. --
  8455. DROP TABLE IF EXISTS `wp_term_taxonomy`;
  8456. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8457. /*!40101 SET character_set_client = utf8 */;
  8458. CREATE TABLE `wp_term_taxonomy` (
  8459. `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8460. `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  8461. `taxonomy` varchar(32) NOT NULL DEFAULT '',
  8462. `description` longtext NOT NULL,
  8463. `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  8464. `count` bigint(20) NOT NULL DEFAULT 0,
  8465. PRIMARY KEY (`term_taxonomy_id`),
  8466. UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  8467. KEY `taxonomy` (`taxonomy`)
  8468. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8469. /*!40101 SET character_set_client = @saved_cs_client */;
  8470. --
  8471. -- Dumping data for table `wp_term_taxonomy`
  8472. --
  8473. LOCK TABLES `wp_term_taxonomy` WRITE;
  8474. /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
  8475. INSERT INTO `wp_term_taxonomy` VALUES
  8476. (1,1,'category','',0,717),
  8477. (2,2,'wp_theme','',0,1);
  8478. /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
  8479. UNLOCK TABLES;
  8480. --
  8481. -- Table structure for table `wp_termmeta`
  8482. --
  8483. DROP TABLE IF EXISTS `wp_termmeta`;
  8484. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8485. /*!40101 SET character_set_client = utf8 */;
  8486. CREATE TABLE `wp_termmeta` (
  8487. `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8488. `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  8489. `meta_key` varchar(255) DEFAULT NULL,
  8490. `meta_value` longtext DEFAULT NULL,
  8491. PRIMARY KEY (`meta_id`),
  8492. KEY `term_id` (`term_id`),
  8493. KEY `meta_key` (`meta_key`(191))
  8494. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8495. /*!40101 SET character_set_client = @saved_cs_client */;
  8496. --
  8497. -- Dumping data for table `wp_termmeta`
  8498. --
  8499. LOCK TABLES `wp_termmeta` WRITE;
  8500. /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
  8501. /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
  8502. UNLOCK TABLES;
  8503. --
  8504. -- Table structure for table `wp_terms`
  8505. --
  8506. DROP TABLE IF EXISTS `wp_terms`;
  8507. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8508. /*!40101 SET character_set_client = utf8 */;
  8509. CREATE TABLE `wp_terms` (
  8510. `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8511. `name` varchar(200) NOT NULL DEFAULT '',
  8512. `slug` varchar(200) NOT NULL DEFAULT '',
  8513. `term_group` bigint(10) NOT NULL DEFAULT 0,
  8514. PRIMARY KEY (`term_id`),
  8515. KEY `slug` (`slug`(191)),
  8516. KEY `name` (`name`(191))
  8517. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8518. /*!40101 SET character_set_client = @saved_cs_client */;
  8519. --
  8520. -- Dumping data for table `wp_terms`
  8521. --
  8522. LOCK TABLES `wp_terms` WRITE;
  8523. /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
  8524. INSERT INTO `wp_terms` VALUES
  8525. (1,'Non classé','non-classe',0),
  8526. (2,'partition-jlg-theme','partition-jlg-theme',0);
  8527. /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
  8528. UNLOCK TABLES;
  8529. --
  8530. -- Table structure for table `wp_um_metadata`
  8531. --
  8532. DROP TABLE IF EXISTS `wp_um_metadata`;
  8533. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8534. /*!40101 SET character_set_client = utf8 */;
  8535. CREATE TABLE `wp_um_metadata` (
  8536. `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8537. `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  8538. `um_key` varchar(255) DEFAULT NULL,
  8539. `um_value` longtext DEFAULT NULL,
  8540. PRIMARY KEY (`umeta_id`),
  8541. KEY `user_id_indx` (`user_id`),
  8542. KEY `meta_key_indx` (`um_key`),
  8543. KEY `meta_value_indx` (`um_value`(191))
  8544. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8545. /*!40101 SET character_set_client = @saved_cs_client */;
  8546. --
  8547. -- Dumping data for table `wp_um_metadata`
  8548. --
  8549. LOCK TABLES `wp_um_metadata` WRITE;
  8550. /*!40000 ALTER TABLE `wp_um_metadata` DISABLE KEYS */;
  8551. /*!40000 ALTER TABLE `wp_um_metadata` ENABLE KEYS */;
  8552. UNLOCK TABLES;
  8553. --
  8554. -- Table structure for table `wp_user_registration_sessions`
  8555. --
  8556. DROP TABLE IF EXISTS `wp_user_registration_sessions`;
  8557. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8558. /*!40101 SET character_set_client = utf8 */;
  8559. CREATE TABLE `wp_user_registration_sessions` (
  8560. `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8561. `session_key` char(32) NOT NULL,
  8562. `session_value` longtext NOT NULL,
  8563. `session_expiry` bigint(20) unsigned NOT NULL,
  8564. PRIMARY KEY (`session_key`),
  8565. UNIQUE KEY `session_id` (`session_id`)
  8566. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8567. /*!40101 SET character_set_client = @saved_cs_client */;
  8568. --
  8569. -- Dumping data for table `wp_user_registration_sessions`
  8570. --
  8571. LOCK TABLES `wp_user_registration_sessions` WRITE;
  8572. /*!40000 ALTER TABLE `wp_user_registration_sessions` DISABLE KEYS */;
  8573. /*!40000 ALTER TABLE `wp_user_registration_sessions` ENABLE KEYS */;
  8574. UNLOCK TABLES;
  8575. --
  8576. -- Table structure for table `wp_usermeta`
  8577. --
  8578. DROP TABLE IF EXISTS `wp_usermeta`;
  8579. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8580. /*!40101 SET character_set_client = utf8 */;
  8581. CREATE TABLE `wp_usermeta` (
  8582. `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8583. `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  8584. `meta_key` varchar(255) DEFAULT NULL,
  8585. `meta_value` longtext DEFAULT NULL,
  8586. PRIMARY KEY (`umeta_id`),
  8587. KEY `user_id` (`user_id`),
  8588. KEY `meta_key` (`meta_key`(191))
  8589. ) ENGINE=InnoDB AUTO_INCREMENT=180 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8590. /*!40101 SET character_set_client = @saved_cs_client */;
  8591. --
  8592. -- Dumping data for table `wp_usermeta`
  8593. --
  8594. LOCK TABLES `wp_usermeta` WRITE;
  8595. /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
  8596. INSERT INTO `wp_usermeta` VALUES
  8597. (1,1,'nickname','val'),
  8598. (2,1,'first_name',''),
  8599. (3,1,'last_name',''),
  8600. (4,1,'description',''),
  8601. (5,1,'rich_editing','true'),
  8602. (6,1,'syntax_highlighting','true'),
  8603. (7,1,'comment_shortcuts','false'),
  8604. (8,1,'admin_color','fresh'),
  8605. (9,1,'use_ssl','0'),
  8606. (10,1,'show_admin_bar_front','true'),
  8607. (11,1,'locale',''),
  8608. (12,1,'wp_capabilities','a:8:{s:13:\"administrator\";b:1;s:15:\"wpie_new_export\";b:1;s:18:\"wpie_manage_export\";b:1;s:15:\"wpie_new_import\";b:1;s:18:\"wpie_manage_import\";b:1;s:13:\"wpie_settings\";b:1;s:15:\"wpie_extensions\";b:1;s:18:\"wpie_add_shortcode\";b:1;}'),
  8609. (13,1,'wp_user_level','10'),
  8610. (14,1,'dismissed_wp_pointers',''),
  8611. (15,1,'show_welcome_panel','0'),
  8612. (17,1,'wp_dashboard_quick_press_last_post_id','4'),
  8613. (18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}'),
  8614. (19,1,'wp_user-settings','mfold=o&hidetb=0&posts_list_mode=list&libraryContent=browse'),
  8615. (20,1,'wp_user-settings-time','1695631395'),
  8616. (21,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-10-23T16:52:39.551Z\";}'),
  8617. (22,1,'wpda_manage_columnshidden_toplevel_page_wpdainformation_schema_tables','a:5:{i:0;s:11:\"create_time\";i:1;s:9:\"data_size\";i:2;s:10:\"index_size\";i:3;s:8:\"overhead\";i:4;s:15:\"table_collation\";}'),
  8618. (23,1,'wpda_manage_columnshidden_wp-data-access_page_wpda_publisherwp_wpda_publisher','a:32:{i:0;s:14:\"pub_table_name\";i:1;s:16:\"pub_column_names\";i:2;s:14:\"pub_sort_icons\";i:3;s:10:\"pub_styles\";i:4;s:17:\"pub_style_premium\";i:5;s:14:\"pub_style_user\";i:6;s:15:\"pub_style_color\";i:7;s:15:\"pub_style_space\";i:8;s:16:\"pub_style_corner\";i:9;s:21:\"pub_style_modal_width\";i:10;s:26:\"pub_responsive_popup_title\";i:11;s:19:\"pub_responsive_cols\";i:12;s:19:\"pub_responsive_type\";i:13;s:31:\"pub_responsive_modal_hyperlinks\";i:14;s:19:\"pub_responsive_icon\";i:15;s:16:\"pub_flat_scrollx\";i:16;s:10:\"pub_format\";i:17;s:17:\"pub_default_where\";i:18;s:19:\"pub_default_orderby\";i:19;s:27:\"pub_table_options_searching\";i:20;s:26:\"pub_table_options_ordering\";i:21;s:24:\"pub_table_options_paging\";i:22;s:26:\"pub_table_options_advanced\";i:23;s:28:\"pub_table_options_serverside\";i:24;s:23:\"pub_table_options_nl2br\";i:25;s:26:\"pub_show_advanced_settings\";i:26;s:14:\"pub_extentions\";i:27;s:9:\"pub_query\";i:28;s:7:\"pub_cpt\";i:29;s:14:\"pub_cpt_fields\";i:30;s:13:\"pub_cpt_query\";i:31;s:14:\"pub_cpt_format\";}'),
  8619. (24,1,'enable_custom_fields','1'),
  8620. (25,1,'closedpostboxes_post','a:0:{}'),
  8621. (26,1,'metaboxhidden_post','a:0:{}'),
  8622. (27,1,'meta-box-order_post','a:3:{s:6:\"normal\";s:0:\"\";s:8:\"advanced\";s:10:\"postcustom\";s:4:\"side\";s:0:\"\";}'),
  8623. (28,1,'account_status','approved'),
  8624. (29,1,'um_member_directory_data','a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}'),
  8625. (30,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
  8626. (31,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),
  8627. (32,1,'um_user_profile_url_slug_user_login','val'),
  8628. (33,1,'_um_last_login','1688729530'),
  8629. (34,1,'edit_post_per_page','700'),
  8630. (77,1,'_revisionary_wp_reviews_dismissed_triggers','a:1:{s:14:\"time_installed\";i:10;}'),
  8631. (78,1,'_revisionary_wp_reviews_last_dismissed','2023-09-25 05:50:23'),
  8632. (79,1,'_revisionary_wp_reviews_already_did','1'),
  8633. (93,4,'nickname','valentin.le moign'),
  8634. (94,4,'first_name','Valentin'),
  8635. (95,4,'last_name','Le Moign'),
  8636. (96,4,'description',''),
  8637. (97,4,'rich_editing','true'),
  8638. (98,4,'syntax_highlighting','true'),
  8639. (99,4,'comment_shortcuts','false'),
  8640. (100,4,'admin_color','fresh'),
  8641. (101,4,'use_ssl','0'),
  8642. (102,4,'show_admin_bar_front','true'),
  8643. (103,4,'locale',''),
  8644. (104,4,'wp_capabilities','a:1:{s:7:\"revisor\";b:1;}'),
  8645. (105,4,'wp_user_level','3'),
  8646. (106,4,'dismissed_wp_pointers',''),
  8647. (107,4,'session_tokens','a:1:{s:64:\"88416cf527217b8a29b4caec31002dbc12755c071f2229a8a05ecc5dc10461d6\";a:4:{s:10:\"expiration\";i:1699239887;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1698030287;}}'),
  8648. (108,4,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:7:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:1:{i:0;s:11:\"post-status\";}s:12:\"fixedToolbar\";b:0;s:9:\"focusMode\";b:0;s:15:\"distractionFree\";b:0;s:14:\"fullscreenMode\";b:0;}s:9:\"_modified\";s:24:\"2023-10-23T04:56:12.705Z\";}'),
  8649. (109,4,'wp_user-settings','mfold=f'),
  8650. (110,4,'wp_user-settings-time','1698037000'),
  8651. (113,5,'nickname','utilisateur.test'),
  8652. (114,5,'first_name','utilisateur'),
  8653. (115,5,'last_name','test'),
  8654. (116,5,'description',''),
  8655. (117,5,'rich_editing','true'),
  8656. (118,5,'syntax_highlighting','true'),
  8657. (119,5,'comment_shortcuts','false'),
  8658. (120,5,'admin_color','fresh'),
  8659. (121,5,'use_ssl','0'),
  8660. (122,5,'show_admin_bar_front','true'),
  8661. (123,5,'locale',''),
  8662. (124,5,'wp_capabilities','a:1:{s:7:\"revisor\";b:1;}'),
  8663. (125,5,'wp_user_level','3'),
  8664. (126,5,'dismissed_wp_pointers',''),
  8665. (127,5,'session_tokens','a:2:{s:64:\"9adb90b07af931814a0f1b2a3432932e90b25fe54ab8e63c19e2d000678f54c5\";a:4:{s:10:\"expiration\";i:1699285555;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1698075955;}s:64:\"e48b3c0a5f6d4221aa5109a2dfe9d653740aa759144d943e6a347b6027fb1cd4\";a:4:{s:10:\"expiration\";i:1698248795;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1698075995;}}'),
  8666. (128,5,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:1:{i:0;s:11:\"post-status\";}}s:9:\"_modified\";s:24:\"2023-10-23T17:50:12.028Z\";}'),
  8667. (129,6,'nickname','test.test'),
  8668. (130,6,'first_name','test'),
  8669. (131,6,'last_name','test'),
  8670. (132,6,'description',''),
  8671. (133,6,'rich_editing','true'),
  8672. (134,6,'syntax_highlighting','true'),
  8673. (135,6,'comment_shortcuts','false'),
  8674. (136,6,'admin_color','fresh'),
  8675. (137,6,'use_ssl','0'),
  8676. (138,6,'show_admin_bar_front','true'),
  8677. (139,6,'locale',''),
  8678. (140,6,'wp_capabilities','a:1:{s:7:\"revisor\";b:1;}'),
  8679. (141,6,'wp_user_level','3'),
  8680. (142,6,'dismissed_wp_pointers',''),
  8681. (143,6,'session_tokens','a:1:{s:64:\"f1cc572e1d02158fafe0b5eacf1554065de4998bbd3e8560f2f5e55fb7b3f8a6\";a:4:{s:10:\"expiration\";i:1699692535;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36\";s:5:\"login\";i:1699519735;}}'),
  8682. (144,6,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-11-09T17:17:14.940Z\";}'),
  8683. (145,5,'wp_user-settings','mfold=o'),
  8684. (146,5,'wp_user-settings-time','1698078207'),
  8685. (151,6,'wp_dashboard_quick_press_last_post_id','13951'),
  8686. (162,6,'xoo_el_reg_username',''),
  8687. (163,6,'xoo_el_reg_email',''),
  8688. (164,6,'xoo_el_reg_fname',''),
  8689. (165,6,'xoo_el_reg_lname',''),
  8690. (166,6,'xoo_el_reg_pass',''),
  8691. (167,6,'xoo_el_reg_pass_again',''),
  8692. (168,6,'xoo_el_reg_terms',''),
  8693. (169,6,'xoo-el-username',''),
  8694. (170,6,'xoo-el-password',''),
  8695. (171,6,'xoo-el-rp-pass',''),
  8696. (172,6,'xoo-el-rp-pass-again',''),
  8697. (173,6,'user_login',''),
  8698. (179,1,'session_tokens','a:1:{s:64:\"bc4e40b6e7ef3a8cdd46689dec0b5ebb6a8cdd459cbf5ca61c4f28128ea0fe4d\";a:4:{s:10:\"expiration\";i:1699723405;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/118.0\";s:5:\"login\";i:1699550605;}}');
  8699. /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
  8700. UNLOCK TABLES;
  8701. --
  8702. -- Table structure for table `wp_users`
  8703. --
  8704. DROP TABLE IF EXISTS `wp_users`;
  8705. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8706. /*!40101 SET character_set_client = utf8 */;
  8707. CREATE TABLE `wp_users` (
  8708. `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  8709. `user_login` varchar(60) NOT NULL DEFAULT '',
  8710. `user_pass` varchar(255) NOT NULL DEFAULT '',
  8711. `user_nicename` varchar(50) NOT NULL DEFAULT '',
  8712. `user_email` varchar(100) NOT NULL DEFAULT '',
  8713. `user_url` varchar(100) NOT NULL DEFAULT '',
  8714. `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  8715. `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  8716. `user_status` int(11) NOT NULL DEFAULT 0,
  8717. `display_name` varchar(250) NOT NULL DEFAULT '',
  8718. PRIMARY KEY (`ID`),
  8719. KEY `user_login_key` (`user_login`),
  8720. KEY `user_nicename` (`user_nicename`),
  8721. KEY `user_email` (`user_email`)
  8722. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8723. /*!40101 SET character_set_client = @saved_cs_client */;
  8724. --
  8725. -- Dumping data for table `wp_users`
  8726. --
  8727. LOCK TABLES `wp_users` WRITE;
  8728. /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
  8729. INSERT INTO `wp_users` VALUES
  8730. (1,'val','$2y$10$EF0G3K0tUyCziEA54d5rnuPa/hahpQVnGFlqAFQULxD7JLoNieU3.','val','valentin_le_moign@figureslibres.io','https://localhost/wp','2023-05-15 02:26:02','',0,'val'),
  8731. (4,'valentin.le moign','$2y$10$Stb7avsQwQ5WsJ.XQog/eew6b378wfWVGJpdJhYt2Wal228pQUhd.','valentin-le-moign','valentinlemoign@gmail.com','','2023-10-23 03:04:47','1698030287:$P$BvpgGYsLSe/qkUoMu.lDh5V62yBSez1',0,'valentin.le moign'),
  8732. (5,'utilisateur.test','$2y$10$7Ujv7rSOQMMvQNuawWzNb.M/ztSS2Z6DDmGZWVD6ZzBOLigbhlr2.','utilisateur-test','kadklzd@zfkjzjfk.com','','2023-10-23 15:45:55','1698075955:$P$BnzBdG3RNNgVT3e92SoL2EF4WjnmQW1',0,'utilisateur.test'),
  8733. (6,'test.test','$2y$10$CtSlJ1KwY46jFFbKMw34veDC.ft.IdklPgOgNjrQF67JWeMjcWQsK','test-test','emailtest@emailtest.com','','2023-10-23 15:50:42','1698076242:$P$BGCWIMmbGyd.IYbtfBA5bEcBsoGNo71',0,'test.test');
  8734. /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
  8735. UNLOCK TABLES;
  8736. --
  8737. -- Table structure for table `wp_wpda_csv_uploads`
  8738. --
  8739. DROP TABLE IF EXISTS `wp_wpda_csv_uploads`;
  8740. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8741. /*!40101 SET character_set_client = utf8 */;
  8742. CREATE TABLE `wp_wpda_csv_uploads` (
  8743. `csv_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  8744. `csv_name` varchar(100) NOT NULL,
  8745. `csv_real_file_name` varchar(4096) NOT NULL,
  8746. `csv_orig_file_name` varchar(4096) NOT NULL,
  8747. `csv_timestamp` datetime DEFAULT NULL,
  8748. `csv_mapping` text DEFAULT NULL,
  8749. PRIMARY KEY (`csv_id`)
  8750. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8751. /*!40101 SET character_set_client = @saved_cs_client */;
  8752. --
  8753. -- Dumping data for table `wp_wpda_csv_uploads`
  8754. --
  8755. LOCK TABLES `wp_wpda_csv_uploads` WRITE;
  8756. /*!40000 ALTER TABLE `wp_wpda_csv_uploads` DISABLE KEYS */;
  8757. INSERT INTO `wp_wpda_csv_uploads` VALUES
  8758. (1,'Partition','wpda_csv_upload_20230525150643.csv','OpenOfficePartition2.csv','2023-05-25 15:06:43',NULL);
  8759. /*!40000 ALTER TABLE `wp_wpda_csv_uploads` ENABLE KEYS */;
  8760. UNLOCK TABLES;
  8761. --
  8762. -- Table structure for table `wp_wpda_logging`
  8763. --
  8764. DROP TABLE IF EXISTS `wp_wpda_logging`;
  8765. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8766. /*!40101 SET character_set_client = utf8 */;
  8767. CREATE TABLE `wp_wpda_logging` (
  8768. `log_time` datetime NOT NULL,
  8769. `log_id` varchar(50) NOT NULL,
  8770. `log_type` enum('FATAL','ERROR','WARN','INFO','DEBUG','TRACE') DEFAULT NULL,
  8771. `log_msg` varchar(4096) DEFAULT NULL,
  8772. PRIMARY KEY (`log_time`,`log_id`)
  8773. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8774. /*!40101 SET character_set_client = @saved_cs_client */;
  8775. --
  8776. -- Dumping data for table `wp_wpda_logging`
  8777. --
  8778. LOCK TABLES `wp_wpda_logging` WRITE;
  8779. /*!40000 ALTER TABLE `wp_wpda_logging` DISABLE KEYS */;
  8780. /*!40000 ALTER TABLE `wp_wpda_logging` ENABLE KEYS */;
  8781. UNLOCK TABLES;
  8782. --
  8783. -- Table structure for table `wp_wpda_media`
  8784. --
  8785. DROP TABLE IF EXISTS `wp_wpda_media`;
  8786. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8787. /*!40101 SET character_set_client = utf8 */;
  8788. CREATE TABLE `wp_wpda_media` (
  8789. `media_schema_name` varchar(64) NOT NULL DEFAULT '',
  8790. `media_table_name` varchar(64) NOT NULL,
  8791. `media_column_name` varchar(64) NOT NULL,
  8792. `media_type` enum('Image','ImageURL','Attachment','Hyperlink','Audio','Video') DEFAULT NULL,
  8793. `media_activated` enum('Yes','No') DEFAULT NULL,
  8794. PRIMARY KEY (`media_schema_name`,`media_table_name`,`media_column_name`)
  8795. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8796. /*!40101 SET character_set_client = @saved_cs_client */;
  8797. --
  8798. -- Dumping data for table `wp_wpda_media`
  8799. --
  8800. LOCK TABLES `wp_wpda_media` WRITE;
  8801. /*!40000 ALTER TABLE `wp_wpda_media` DISABLE KEYS */;
  8802. /*!40000 ALTER TABLE `wp_wpda_media` ENABLE KEYS */;
  8803. UNLOCK TABLES;
  8804. --
  8805. -- Table structure for table `wp_wpda_menus`
  8806. --
  8807. DROP TABLE IF EXISTS `wp_wpda_menus`;
  8808. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8809. /*!40101 SET character_set_client = utf8 */;
  8810. CREATE TABLE `wp_wpda_menus` (
  8811. `menu_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  8812. `menu_schema_name` varchar(64) NOT NULL DEFAULT '',
  8813. `menu_table_name` varchar(64) NOT NULL,
  8814. `menu_name` varchar(100) NOT NULL,
  8815. `menu_slug` varchar(100) NOT NULL,
  8816. `menu_role` varchar(100) DEFAULT NULL,
  8817. PRIMARY KEY (`menu_id`)
  8818. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8819. /*!40101 SET character_set_client = @saved_cs_client */;
  8820. --
  8821. -- Dumping data for table `wp_wpda_menus`
  8822. --
  8823. LOCK TABLES `wp_wpda_menus` WRITE;
  8824. /*!40000 ALTER TABLE `wp_wpda_menus` DISABLE KEYS */;
  8825. /*!40000 ALTER TABLE `wp_wpda_menus` ENABLE KEYS */;
  8826. UNLOCK TABLES;
  8827. --
  8828. -- Table structure for table `wp_wpda_project`
  8829. --
  8830. DROP TABLE IF EXISTS `wp_wpda_project`;
  8831. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8832. /*!40101 SET character_set_client = utf8 */;
  8833. CREATE TABLE `wp_wpda_project` (
  8834. `project_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  8835. `project_name` varchar(100) NOT NULL,
  8836. `project_description` text DEFAULT NULL,
  8837. `add_to_menu` enum('Yes','No') DEFAULT NULL,
  8838. `menu_name` varchar(30) DEFAULT NULL,
  8839. `project_sequence` smallint(6) DEFAULT NULL,
  8840. PRIMARY KEY (`project_id`),
  8841. UNIQUE KEY `wp_wpdp_project_project_name` (`project_name`)
  8842. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8843. /*!40101 SET character_set_client = @saved_cs_client */;
  8844. --
  8845. -- Dumping data for table `wp_wpda_project`
  8846. --
  8847. LOCK TABLES `wp_wpda_project` WRITE;
  8848. /*!40000 ALTER TABLE `wp_wpda_project` DISABLE KEYS */;
  8849. /*!40000 ALTER TABLE `wp_wpda_project` ENABLE KEYS */;
  8850. UNLOCK TABLES;
  8851. --
  8852. -- Table structure for table `wp_wpda_project_page`
  8853. --
  8854. DROP TABLE IF EXISTS `wp_wpda_project_page`;
  8855. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8856. /*!40101 SET character_set_client = utf8 */;
  8857. CREATE TABLE `wp_wpda_project_page` (
  8858. `project_id` mediumint(9) NOT NULL,
  8859. `page_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  8860. `page_name` varchar(100) NOT NULL,
  8861. `add_to_menu` enum('Yes','No') DEFAULT NULL,
  8862. `page_type` enum('table','parent/child','static') NOT NULL,
  8863. `page_schema_name` varchar(64) NOT NULL DEFAULT '',
  8864. `page_table_name` varchar(64) DEFAULT NULL,
  8865. `page_setname` varchar(100) DEFAULT 'default',
  8866. `page_mode` enum('edit','view') NOT NULL,
  8867. `page_allow_insert` enum('yes','no','only') NOT NULL,
  8868. `page_allow_delete` enum('yes','no') NOT NULL,
  8869. `page_allow_import` enum('yes','no') NOT NULL,
  8870. `page_allow_bulk` enum('yes','no') NOT NULL,
  8871. `page_allow_full_export` enum('yes','no') DEFAULT 'no',
  8872. `page_content` bigint(20) unsigned DEFAULT NULL,
  8873. `page_title` varchar(100) DEFAULT NULL,
  8874. `page_subtitle` varchar(100) DEFAULT NULL,
  8875. `page_role` varchar(100) DEFAULT NULL,
  8876. `page_where` varchar(4096) DEFAULT NULL,
  8877. `page_orderby` varchar(4096) DEFAULT NULL,
  8878. `page_sequence` smallint(6) DEFAULT NULL,
  8879. PRIMARY KEY (`page_id`),
  8880. UNIQUE KEY `project_id` (`project_id`,`page_name`,`page_role`)
  8881. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8882. /*!40101 SET character_set_client = @saved_cs_client */;
  8883. --
  8884. -- Dumping data for table `wp_wpda_project_page`
  8885. --
  8886. LOCK TABLES `wp_wpda_project_page` WRITE;
  8887. /*!40000 ALTER TABLE `wp_wpda_project_page` DISABLE KEYS */;
  8888. /*!40000 ALTER TABLE `wp_wpda_project_page` ENABLE KEYS */;
  8889. UNLOCK TABLES;
  8890. --
  8891. -- Table structure for table `wp_wpda_project_table`
  8892. --
  8893. DROP TABLE IF EXISTS `wp_wpda_project_table`;
  8894. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8895. /*!40101 SET character_set_client = utf8 */;
  8896. CREATE TABLE `wp_wpda_project_table` (
  8897. `wpda_table_name` varchar(64) NOT NULL,
  8898. `wpda_schema_name` varchar(64) NOT NULL DEFAULT '',
  8899. `wpda_table_setname` varchar(100) NOT NULL DEFAULT 'default',
  8900. `wpda_table_design` text NOT NULL,
  8901. PRIMARY KEY (`wpda_schema_name`,`wpda_table_name`,`wpda_table_setname`)
  8902. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8903. /*!40101 SET character_set_client = @saved_cs_client */;
  8904. --
  8905. -- Dumping data for table `wp_wpda_project_table`
  8906. --
  8907. LOCK TABLES `wp_wpda_project_table` WRITE;
  8908. /*!40000 ALTER TABLE `wp_wpda_project_table` DISABLE KEYS */;
  8909. /*!40000 ALTER TABLE `wp_wpda_project_table` ENABLE KEYS */;
  8910. UNLOCK TABLES;
  8911. --
  8912. -- Table structure for table `wp_wpda_publisher`
  8913. --
  8914. DROP TABLE IF EXISTS `wp_wpda_publisher`;
  8915. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8916. /*!40101 SET character_set_client = utf8 */;
  8917. CREATE TABLE `wp_wpda_publisher` (
  8918. `pub_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  8919. `pub_name` varchar(100) NOT NULL,
  8920. `pub_data_source` enum('Table','Query','CPT') DEFAULT 'Table',
  8921. `pub_schema_name` varchar(64) NOT NULL DEFAULT '',
  8922. `pub_table_name` varchar(64) NOT NULL,
  8923. `pub_column_names` varchar(4096) DEFAULT '*',
  8924. `pub_cpt` varchar(20) DEFAULT NULL,
  8925. `pub_cpt_fields` text DEFAULT NULL,
  8926. `pub_cpt_query` text DEFAULT NULL,
  8927. `pub_cpt_format` text DEFAULT NULL,
  8928. `pub_format` text DEFAULT NULL,
  8929. `pub_query` text DEFAULT NULL,
  8930. `pub_sort_icons` enum('default','none') DEFAULT NULL,
  8931. `pub_styles` set('default','stripe','hover','order-column','row-border','compact','cell-border') DEFAULT 'default',
  8932. `pub_style_premium` enum('Yes','No') DEFAULT 'No',
  8933. `pub_style_user` varchar(50) DEFAULT NULL,
  8934. `pub_style_color` varchar(50) DEFAULT 'default',
  8935. `pub_style_space` tinyint(2) unsigned DEFAULT 10,
  8936. `pub_style_corner` tinyint(2) unsigned DEFAULT 0,
  8937. `pub_style_modal_width` tinyint(2) unsigned DEFAULT 80,
  8938. `pub_responsive` enum('Yes','No') DEFAULT NULL,
  8939. `pub_responsive_popup_title` varchar(50) DEFAULT NULL,
  8940. `pub_responsive_cols` int(10) unsigned DEFAULT 0,
  8941. `pub_responsive_type` enum('Modal','Collapsed','Expanded') DEFAULT NULL,
  8942. `pub_responsive_modal_hyperlinks` enum('If not listed','Never','Always') DEFAULT NULL,
  8943. `pub_responsive_icon` enum('Yes','No') DEFAULT NULL,
  8944. `pub_flat_scrollx` enum('Yes','No') DEFAULT NULL,
  8945. `pub_show_advanced_settings` tinyint(1) DEFAULT NULL,
  8946. `pub_default_where` varchar(2000) DEFAULT '',
  8947. `pub_default_orderby` varchar(100) DEFAULT '',
  8948. `pub_table_options_searching` char(3) DEFAULT 'on',
  8949. `pub_table_options_ordering` char(3) DEFAULT 'on',
  8950. `pub_table_options_paging` char(3) DEFAULT 'on',
  8951. `pub_table_options_serverside` char(3) DEFAULT 'on',
  8952. `pub_table_options_nl2br` char(3) DEFAULT NULL,
  8953. `pub_table_options_advanced` text DEFAULT NULL,
  8954. `pub_extentions` varchar(2000) DEFAULT '',
  8955. PRIMARY KEY (`pub_id`),
  8956. UNIQUE KEY `pub_name` (`pub_name`)
  8957. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8958. /*!40101 SET character_set_client = @saved_cs_client */;
  8959. --
  8960. -- Dumping data for table `wp_wpda_publisher`
  8961. --
  8962. LOCK TABLES `wp_wpda_publisher` WRITE;
  8963. /*!40000 ALTER TABLE `wp_wpda_publisher` DISABLE KEYS */;
  8964. /*!40000 ALTER TABLE `wp_wpda_publisher` ENABLE KEYS */;
  8965. UNLOCK TABLES;
  8966. --
  8967. -- Table structure for table `wp_wpda_table_design`
  8968. --
  8969. DROP TABLE IF EXISTS `wp_wpda_table_design`;
  8970. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8971. /*!40101 SET character_set_client = utf8 */;
  8972. CREATE TABLE `wp_wpda_table_design` (
  8973. `wpda_table_name` varchar(64) NOT NULL,
  8974. `wpda_schema_name` varchar(64) NOT NULL DEFAULT '',
  8975. `wpda_table_design` text NOT NULL,
  8976. `wpda_date_created` timestamp NULL DEFAULT current_timestamp(),
  8977. `wpda_last_updated` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  8978. PRIMARY KEY (`wpda_schema_name`,`wpda_table_name`)
  8979. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  8980. /*!40101 SET character_set_client = @saved_cs_client */;
  8981. --
  8982. -- Dumping data for table `wp_wpda_table_design`
  8983. --
  8984. LOCK TABLES `wp_wpda_table_design` WRITE;
  8985. /*!40000 ALTER TABLE `wp_wpda_table_design` DISABLE KEYS */;
  8986. /*!40000 ALTER TABLE `wp_wpda_table_design` ENABLE KEYS */;
  8987. UNLOCK TABLES;
  8988. --
  8989. -- Table structure for table `wp_wpda_table_settings`
  8990. --
  8991. DROP TABLE IF EXISTS `wp_wpda_table_settings`;
  8992. /*!40101 SET @saved_cs_client = @@character_set_client */;
  8993. /*!40101 SET character_set_client = utf8 */;
  8994. CREATE TABLE `wp_wpda_table_settings` (
  8995. `wpda_schema_name` varchar(64) NOT NULL DEFAULT '',
  8996. `wpda_table_name` varchar(64) NOT NULL,
  8997. `wpda_table_settings` text NOT NULL,
  8998. PRIMARY KEY (`wpda_schema_name`,`wpda_table_name`)
  8999. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  9000. /*!40101 SET character_set_client = @saved_cs_client */;
  9001. --
  9002. -- Dumping data for table `wp_wpda_table_settings`
  9003. --
  9004. LOCK TABLES `wp_wpda_table_settings` WRITE;
  9005. /*!40000 ALTER TABLE `wp_wpda_table_settings` DISABLE KEYS */;
  9006. /*!40000 ALTER TABLE `wp_wpda_table_settings` ENABLE KEYS */;
  9007. UNLOCK TABLES;
  9008. --
  9009. -- Table structure for table `wp_wpie_template`
  9010. --
  9011. DROP TABLE IF EXISTS `wp_wpie_template`;
  9012. /*!40101 SET @saved_cs_client = @@character_set_client */;
  9013. /*!40101 SET character_set_client = utf8 */;
  9014. CREATE TABLE `wp_wpie_template` (
  9015. `id` int(11) NOT NULL AUTO_INCREMENT,
  9016. `status` varchar(25) DEFAULT NULL,
  9017. `opration` varchar(100) NOT NULL,
  9018. `username` varchar(60) NOT NULL,
  9019. `unique_id` varchar(100) NOT NULL,
  9020. `opration_type` varchar(100) NOT NULL,
  9021. `options` longtext DEFAULT NULL,
  9022. `process_log` varchar(255) DEFAULT NULL,
  9023. `process_lock` int(3) DEFAULT NULL,
  9024. `create_date` datetime NOT NULL,
  9025. `last_update_date` datetime NOT NULL,
  9026. PRIMARY KEY (`id`)
  9027. ) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  9028. /*!40101 SET character_set_client = @saved_cs_client */;
  9029. --
  9030. -- Dumping data for table `wp_wpie_template`
  9031. --
  9032. LOCK TABLES `wp_wpie_template` WRITE;
  9033. /*!40000 ALTER TABLE `wp_wpie_template` DISABLE KEYS */;
  9034. INSERT INTO `wp_wpie_template` VALUES
  9035. (3,'completed','import','val','646f85857d9f8','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"a6a0a8065203e842b45898b1503d6e40\";a:4:{s:7:\"fileDir\";s:41:\"a6a0a8065203e842b45898b1503d6e40/original\";s:8:\"fileName\";s:24:\"OpenOfficePartition2.csv\";s:12:\"originalName\";s:24:\"OpenOfficePartition2.csv\";s:7:\"baseDir\";s:32:\"a6a0a8065203e842b45898b1503d6e40\";}}s:10:\"activeFile\";s:32:\"a6a0a8065203e842b45898b1503d6e40\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:1:\"3\";s:12:\"wpieSecurity\";s:10:\"b8303366e1\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"a6a0a8065203e842b45898b1503d6e40\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:24:\"Minutage : {minutage[1]}\";s:17:\"wpie_item_content\";s:109:\"Images : {images[1]}\r\n\r\nVoix Off et In :{voixoffetin[1]}\r\n\r\nBande Son : {bandeson[1]}\r\n\r\nEcrits : {ecrits[1]}\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:1:{s:13:\"646f858662bed\";a:3:{s:4:\"name\";s:0:\"\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:703;s:8:\"imported\";i:703;s:7:\"created\";i:699;s:7:\"updated\";i:4;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:708;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-05-25 16:01:57\";}',0,'2023-05-25 17:57:57','2023-05-25 18:01:57'),
  9036. (4,'completed','import','val','647a0b95a4509','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"13780663dcb88e81bc7a391c4d4803b7\";a:4:{s:7:\"fileDir\";s:41:\"13780663dcb88e81bc7a391c4d4803b7/original\";s:8:\"fileName\";s:24:\"OpenOfficePartition3.csv\";s:12:\"originalName\";s:24:\"OpenOfficePartition3.csv\";s:7:\"baseDir\";s:32:\"13780663dcb88e81bc7a391c4d4803b7\";}}s:10:\"activeFile\";s:32:\"13780663dcb88e81bc7a391c4d4803b7\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:1:\"4\";s:12:\"wpieSecurity\";s:10:\"ab100c1163\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"13780663dcb88e81bc7a391c4d4803b7\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:18:\"Article {index[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:5:{s:13:\"647a0b969d0c1\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"c3zb03wa9f4n61sjheoh\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"blcxk49bhht4ud24if2y\";a:3:{s:4:\"name\";s:11:\"Voix Off In\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"2skn5umuuwjmmkjzufie\";a:3:{s:4:\"name\";s:9:\"Bande Son\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"wcd6j74rj7j1hrorl02e\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:7:\"content\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:703;s:8:\"imported\";i:703;s:7:\"created\";i:703;s:7:\"updated\";i:0;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:1412;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-02 16:00:12\";}',0,'2023-06-02 17:32:37','2023-06-02 18:00:12'),
  9037. (5,'completed','import','val','6482ecce95862','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"07041d33ed6d41fe9e08cc74065e9272\";a:4:{s:7:\"fileDir\";s:41:\"07041d33ed6d41fe9e08cc74065e9272/original\";s:8:\"fileName\";s:24:\"OpenOfficePartition2.csv\";s:12:\"originalName\";s:24:\"OpenOfficePartition2.csv\";s:7:\"baseDir\";s:32:\"07041d33ed6d41fe9e08cc74065e9272\";}}s:10:\"activeFile\";s:32:\"07041d33ed6d41fe9e08cc74065e9272\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:1:\"5\";s:12:\"wpieSecurity\";s:10:\"8cd4879e3b\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"07041d33ed6d41fe9e08cc74065e9272\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:5:{s:13:\"6482eccfedb92\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"4qfk5tn0w7x0c2nmnkua\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"f2cyels3f7uzms7xklkp\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"b7e1isqmosp5dvuwsns0\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"u4p1rezjtmkv9sl0ae3l\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:703;s:8:\"imported\";i:703;s:7:\"created\";i:699;s:7:\"updated\";i:4;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:2117;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-09 09:18:38\";}',0,'2023-06-09 11:11:42','2023-06-09 11:18:38'),
  9038. (9,'completed','import','val','64870df07739f','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"1fe09fc2a50faa3fe9434ec398760d02\";a:4:{s:7:\"fileDir\";s:41:\"1fe09fc2a50faa3fe9434ec398760d02/original\";s:8:\"fileName\";s:11:\"OpenJlg.csv\";s:12:\"originalName\";s:11:\"OpenJlg.csv\";s:7:\"baseDir\";s:32:\"1fe09fc2a50faa3fe9434ec398760d02\";}}s:10:\"activeFile\";s:32:\"1fe09fc2a50faa3fe9434ec398760d02\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:1:\"9\";s:12:\"wpieSecurity\";s:10:\"c37016f82b\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"1fe09fc2a50faa3fe9434ec398760d02\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{index[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:7:{s:13:\"64870df11f210\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"gvzl99i6wsa6rgwauih4\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"aehjnj1d4jyp7pggrndc\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"56jphhh1smx9sl6vvls2\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"us3j7tv01y4qpyhxg3q4\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"qwx7v341lyesoyfcxnn7\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}s:20:\"4dyomy6kaczdku777v12\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:706;s:7:\"updated\";i:0;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:2823;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-12 12:34:54\";}',0,'2023-06-12 14:22:08','2023-06-12 14:34:54'),
  9039. (11,'completed','import','val','648713514f8be','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"e092f126abab7e16e02c8a9bdf179556\";a:4:{s:7:\"fileDir\";s:41:\"e092f126abab7e16e02c8a9bdf179556/original\";s:8:\"fileName\";s:11:\"OpenJlg.csv\";s:12:\"originalName\";s:11:\"OpenJlg.csv\";s:7:\"baseDir\";s:32:\"e092f126abab7e16e02c8a9bdf179556\";}}s:10:\"activeFile\";s:32:\"e092f126abab7e16e02c8a9bdf179556\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"11\";s:12:\"wpieSecurity\";s:10:\"c37016f82b\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"e092f126abab7e16e02c8a9bdf179556\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{index[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:8:{s:13:\"648713526caf9\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"o0bove5bxws7wgs8iinj\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"i3u2trlfhe41aws12hnq\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"ezglsbo2oilugsycth23\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"a901fprfwqi2mj4ine11\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"jld532yfun3bmbfk3phu\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"jme45y20hhprg8500nii\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}s:20:\"efsy0zorlz43b2xe3qj6\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:706;s:7:\"updated\";i:0;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:3529;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-12 12:48:44\";}',0,'2023-06-12 14:45:05','2023-06-12 14:48:44'),
  9040. (12,'completed','import','val','64871cf354c76','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"0b7439a3dbfa13172103328f66e16713\";a:4:{s:7:\"fileDir\";s:41:\"0b7439a3dbfa13172103328f66e16713/original\";s:8:\"fileName\";s:11:\"OpenJlg.csv\";s:12:\"originalName\";s:11:\"OpenJlg.csv\";s:7:\"baseDir\";s:32:\"0b7439a3dbfa13172103328f66e16713\";}}s:10:\"activeFile\";s:32:\"0b7439a3dbfa13172103328f66e16713\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"12\";s:12:\"wpieSecurity\";s:10:\"c37016f82b\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"0b7439a3dbfa13172103328f66e16713\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:8:{s:13:\"64871cf4c167b\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"izrv8im0yi2kwdawolgn\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"jdy6z00kf9oiaw5y3gqw\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"mk4wjl8ukq9b68pgf5mp\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"5k49i4x202rfqav6kxgk\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"5lzvw9wxu26yk6csg6dc\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"7dqwhmmqmrvifeo5ojzc\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:1:\"0\";s:6:\"option\";s:6:\"normal\";}s:20:\"9yohz0apjcwx7g8qd2mi\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:1:\"0\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:703;s:7:\"updated\";i:3;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:4235;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-12 13:31:14\";}',0,'2023-06-12 15:26:11','2023-06-12 15:31:14'),
  9041. (13,'completed','import','val','64871e7d9e527','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"fdec780b421c9186902776ffc2bdf5a0\";a:4:{s:7:\"fileDir\";s:41:\"fdec780b421c9186902776ffc2bdf5a0/original\";s:8:\"fileName\";s:11:\"OpenJlg.csv\";s:12:\"originalName\";s:11:\"OpenJlg.csv\";s:7:\"baseDir\";s:32:\"fdec780b421c9186902776ffc2bdf5a0\";}}s:10:\"activeFile\";s:32:\"fdec780b421c9186902776ffc2bdf5a0\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"13\";s:12:\"wpieSecurity\";s:10:\"8becac93f4\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"fdec780b421c9186902776ffc2bdf5a0\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:8:{s:13:\"64871e7ec683a\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"7ri4o0w04zd15s25mdef\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"0328057yvd7wlc0fr4jv\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"arbowq66ns05528om2ii\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"yubs0cc7shv5vsivpw7c\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"utn8gi94t5qge67lkzep\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"bjfzjnv9xvkwney2baz2\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:1:\"0\";s:6:\"option\";s:6:\"normal\";}s:20:\"l4sjumu5bhus1frfjs7z\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:1:\"0\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:703;s:7:\"updated\";i:3;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:4941;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-12 13:36:28\";}',0,'2023-06-12 15:32:45','2023-06-12 15:36:28'),
  9042. (14,'completed','import','val','64871fcd89480','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"7bc804a18adf2053bfbdafeb1dd3eeb8\";a:4:{s:7:\"fileDir\";s:41:\"7bc804a18adf2053bfbdafeb1dd3eeb8/original\";s:8:\"fileName\";s:11:\"OpenJlg.csv\";s:12:\"originalName\";s:11:\"OpenJlg.csv\";s:7:\"baseDir\";s:32:\"7bc804a18adf2053bfbdafeb1dd3eeb8\";}}s:10:\"activeFile\";s:32:\"7bc804a18adf2053bfbdafeb1dd3eeb8\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"14\";s:12:\"wpieSecurity\";s:10:\"8becac93f4\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"7bc804a18adf2053bfbdafeb1dd3eeb8\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:8:{s:20:\"80ng8wor094prhcn7l2l\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"5r1ircz7c9d2041phuay\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"obbdaoren0y49xd752mw\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"3sw9hp9uxt9z3lbi9ilw\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"88np74ivw9evo7jrnur6\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"lcnkucxah7yv838lemc1\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"0rliicn2mc8h3ueybad9\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:1:\"0\";s:6:\"option\";s:6:\"normal\";}s:20:\"4437vnx5smu01t018yyk\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:1:\"0\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:702;s:7:\"updated\";i:4;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:5647;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-06-12 13:41:30\";}',0,'2023-06-12 15:38:21','2023-06-12 15:41:30'),
  9043. (15,'processing','import','val','64a7dc5fbff76','post','a:94:{s:10:\"importFile\";a:2:{s:32:\"b141c97d8029cd6569d66c5907161380\";a:4:{s:7:\"fileDir\";s:41:\"b141c97d8029cd6569d66c5907161380/original\";s:8:\"fileName\";s:6:\"P1.csv\";s:12:\"originalName\";s:6:\"P1.csv\";s:7:\"baseDir\";s:32:\"b141c97d8029cd6569d66c5907161380\";}s:32:\"5023a7c7918b7328ced8a3f8608f242b\";a:4:{s:7:\"fileDir\";s:41:\"5023a7c7918b7328ced8a3f8608f242b/original\";s:8:\"fileName\";s:6:\"P1.csv\";s:12:\"originalName\";s:6:\"P1.csv\";s:7:\"baseDir\";s:32:\"5023a7c7918b7328ced8a3f8608f242b\";}}s:10:\"activeFile\";s:32:\"b141c97d8029cd6569d66c5907161380\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"15\";s:12:\"wpieSecurity\";s:10:\"fa82a2c64e\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"b141c97d8029cd6569d66c5907161380\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:6:{s:13:\"64a7dc60d4347\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"2xw9ua8aa57bfl8cgwy6\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"qyak0of3jzv53m62h2nh\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"d1qzmqxvxguvb4ritbvt\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"453rny6afhbfxxh6c24i\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"7sngwd666tdja04ztb6m\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:120;s:7:\"created\";i:120;s:7:\"updated\";i:0;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:5795;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-07-07 09:51:54\";}',0,'2023-07-07 11:35:27','2023-07-07 11:51:54'),
  9044. (16,'completed','import','val','64a7e11753bb3','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"a3a4146143503695662915aeed8713a9\";a:4:{s:7:\"fileDir\";s:41:\"a3a4146143503695662915aeed8713a9/original\";s:8:\"fileName\";s:6:\"P1.csv\";s:12:\"originalName\";s:6:\"P1.csv\";s:7:\"baseDir\";s:32:\"a3a4146143503695662915aeed8713a9\";}}s:10:\"activeFile\";s:32:\"a3a4146143503695662915aeed8713a9\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"16\";s:12:\"wpieSecurity\";s:10:\"fa82a2c64e\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"a3a4146143503695662915aeed8713a9\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:6:{s:13:\"64a7e118595fb\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"nzuu0fvtu0lkgjzsd96q\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"cmkg4eqr0wa8csc63yi1\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"bcauwxva2hpvpcpansmu\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"6kixbz450u84assiqqj0\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"udd28a2pbe7i0vkmkorm\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:706;s:7:\"updated\";i:0;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:6501;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-07-07 09:58:17\";}',0,'2023-07-07 11:55:35','2023-07-07 11:58:17'),
  9045. (17,'completed','import','val','64ad4a2702be4','post','a:93:{s:10:\"importFile\";a:1:{s:32:\"9babeeb92711eab9fe855b8ec0f102df\";a:4:{s:7:\"fileDir\";s:41:\"9babeeb92711eab9fe855b8ec0f102df/original\";s:8:\"fileName\";s:20:\"Partition1_clean.csv\";s:12:\"originalName\";s:20:\"Partition1_clean.csv\";s:7:\"baseDir\";s:32:\"9babeeb92711eab9fe855b8ec0f102df\";}}s:10:\"activeFile\";s:32:\"9babeeb92711eab9fe855b8ec0f102df\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"17\";s:12:\"wpieSecurity\";s:10:\"ccd24e5e1e\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"9babeeb92711eab9fe855b8ec0f102df\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:0:\"\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:6:{s:13:\"64ad4a2802572\";a:3:{s:4:\"name\";s:5:\"Index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"9c18tdgypjh1mrthfpza\";a:3:{s:4:\"name\";s:8:\"Minutage\";s:5:\"value\";s:13:\"{minutage[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"sgbo0we22s9bzbv1tmlw\";a:3:{s:4:\"name\";s:6:\"Images\";s:5:\"value\";s:11:\"{images[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"i2qkhu8l6uoyox02rhx7\";a:3:{s:4:\"name\";s:9:\"VoixOffIn\";s:5:\"value\";s:16:\"{voixoffetin[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"sa6yvo08z7671af3kzhh\";a:3:{s:4:\"name\";s:8:\"BandeSon\";s:5:\"value\";s:13:\"{bandeson[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"gqcaaz4g1lhw1d0nn157\";a:3:{s:4:\"name\";s:6:\"Ecrits\";s:5:\"value\";s:11:\"{ecrits[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:704;s:7:\"updated\";i:2;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:6501;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-07-11 12:29:34\";}',0,'2023-07-11 14:25:11','2023-07-11 14:29:34'),
  9046. (18,'completed','import','val','64f0553ea92e9','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"c0e5cc6a0ea4875bf6080753d1882b60\";a:4:{s:7:\"fileDir\";s:41:\"c0e5cc6a0ea4875bf6080753d1882b60/original\";s:8:\"fileName\";s:20:\"Partition1_clean.csv\";s:12:\"originalName\";s:20:\"Partition1_clean.csv\";s:7:\"baseDir\";s:32:\"c0e5cc6a0ea4875bf6080753d1882b60\";}}s:10:\"activeFile\";s:32:\"c0e5cc6a0ea4875bf6080753d1882b60\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"18\";s:12:\"wpieSecurity\";s:10:\"37aeb4ca58\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"c0e5cc6a0ea4875bf6080753d1882b60\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\";\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:13:\"{minutage[1]}\";s:17:\"wpie_item_content\";s:72:\"{images[1]}\r\n---\r\n{voixoffetin[1]}\r\n---\r\n{bandeson[1]}\r\n---\r\n{ecrits[1]}\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:1:{s:13:\"64f0553fa3a16\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:706;s:8:\"imported\";i:706;s:7:\"created\";i:704;s:7:\"updated\";i:2;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:6501;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-08-31 09:00:10\";}',0,'2023-08-31 10:54:22','2023-08-31 11:00:10'),
  9047. (20,'completed','export','val','65125cb72623c','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:933:\"ID|~|{\"name\":\"ID\",\"type\":\"id\",\"isDefault\":true}|~|{\"name\":\"ID\",\"type\":\"id\",\"isDefault\":true}~||~Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~Post Type|~|{\"name\":\"Post Type\",\"type\":\"post_type\",\"isDefault\":true}|~|{\"name\":\"Post Type\",\"type\":\"post_type\",\"isDefault\":true}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:37:\"Article-Export-2023-Sep-26-042319.csv\";s:7:\"fileDir\";s:32:\"987aec1b7d80eb264783425a8c819188\";}','a:2:{s:8:\"exported\";i:2145;s:5:\"total\";i:2145;}',0,'2023-09-26 06:23:19','2023-09-26 06:23:34'),
  9048. (21,'completed','export','val','65125ed85cc4b','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:706:\"Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:37:\"Article-Export-2023-Sep-26-043224.csv\";s:7:\"fileDir\";s:32:\"b604b62a2cc197e46530965bef36075d\";}','a:2:{s:8:\"exported\";i:2145;s:5:\"total\";i:2145;}',0,'2023-09-26 06:32:24','2023-09-26 06:32:38'),
  9049. (22,'processing','export','val','65126032c7eee','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:8143:\"ID|~|{\"name\":\"ID\",\"type\":\"id\",\"isDefault\":true}|~|{\"name\":\"ID\",\"type\":\"id\",\"isDefault\":true}~||~Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~Excerpt|~|{\"name\":\"Excerpt\",\"type\":\"excerpt\",\"isDefault\":true}|~|{\"name\":\"Excerpt\",\"type\":\"excerpt\",\"isDefault\":true}~||~Date|~|{\"name\":\"Date\",\"type\":\"date\",\"isDate\":true,\"isDefault\":true}|~|{\"name\":\"Date\",\"type\":\"date\",\"isDate\":true,\"isDefault\":true}~||~Post Type|~|{\"name\":\"Post Type\",\"type\":\"post_type\",\"isDefault\":true}|~|{\"name\":\"Post Type\",\"type\":\"post_type\",\"isDefault\":true}~||~Permalink|~|{\"name\":\"Permalink\",\"type\":\"permalink\",\"isDefault\":true}|~|{\"name\":\"Permalink\",\"type\":\"permalink\",\"isDefault\":true}~||~_encloseme|~|{\"name\":\"_encloseme\",\"type\":\"wpie_cf\",\"metaKey\":\"_encloseme\"}|~|{\"name\":\"_encloseme\",\"type\":\"wpie_cf\",\"metaKey\":\"_encloseme\"}~||~_pingme|~|{\"name\":\"_pingme\",\"type\":\"wpie_cf\",\"metaKey\":\"_pingme\"}|~|{\"name\":\"_pingme\",\"type\":\"wpie_cf\",\"metaKey\":\"_pingme\"}~||~_product_image_gallery|~|{\"name\":\"_product_image_gallery\",\"type\":\"wpie_cf\",\"metaKey\":\"_product_image_gallery\"}|~|{\"name\":\"_product_image_gallery\",\"type\":\"wpie_cf\",\"metaKey\":\"_product_image_gallery\"}~||~_rvy_author_selection|~|{\"name\":\"_rvy_author_selection\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_author_selection\"}|~|{\"name\":\"_rvy_author_selection\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_author_selection\"}~||~_rvy_base_post_id|~|{\"name\":\"_rvy_base_post_id\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_base_post_id\"}|~|{\"name\":\"_rvy_base_post_id\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_base_post_id\"}~||~_rvy_has_revisions|~|{\"name\":\"_rvy_has_revisions\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_has_revisions\"}|~|{\"name\":\"_rvy_has_revisions\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_has_revisions\"}~||~_wp_desired_post_slug|~|{\"name\":\"_wp_desired_post_slug\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_desired_post_slug\"}|~|{\"name\":\"_wp_desired_post_slug\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_desired_post_slug\"}~||~_wp_old_date|~|{\"name\":\"_wp_old_date\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_old_date\"}|~|{\"name\":\"_wp_old_date\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_old_date\"}~||~_wp_old_slug|~|{\"name\":\"_wp_old_slug\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_old_slug\"}|~|{\"name\":\"_wp_old_slug\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_old_slug\"}~||~_wp_trash_meta_status|~|{\"name\":\"_wp_trash_meta_status\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_trash_meta_status\"}|~|{\"name\":\"_wp_trash_meta_status\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_trash_meta_status\"}~||~_wp_trash_meta_time|~|{\"name\":\"_wp_trash_meta_time\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_trash_meta_time\"}|~|{\"name\":\"_wp_trash_meta_time\",\"type\":\"wpie_cf\",\"metaKey\":\"_wp_trash_meta_time\"}~||~BandeSon|~|{\"name\":\"BandeSon\",\"type\":\"wpie_cf\",\"metaKey\":\"BandeSon\"}|~|{\"name\":\"BandeSon\",\"type\":\"wpie_cf\",\"metaKey\":\"BandeSon\"}~||~Ecrits|~|{\"name\":\"Ecrits\",\"type\":\"wpie_cf\",\"metaKey\":\"Ecrits\"}|~|{\"name\":\"Ecrits\",\"type\":\"wpie_cf\",\"metaKey\":\"Ecrits\"}~||~Images|~|{\"name\":\"Images\",\"type\":\"wpie_cf\",\"metaKey\":\"Images\"}|~|{\"name\":\"Images\",\"type\":\"wpie_cf\",\"metaKey\":\"Images\"}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~Minutage|~|{\"name\":\"Minutage\",\"type\":\"wpie_cf\",\"metaKey\":\"Minutage\"}|~|{\"name\":\"Minutage\",\"type\":\"wpie_cf\",\"metaKey\":\"Minutage\"}~||~um_content_restriction|~|{\"name\":\"um_content_restriction\",\"type\":\"wpie_cf\",\"metaKey\":\"um_content_restriction\"}|~|{\"name\":\"um_content_restriction\",\"type\":\"wpie_cf\",\"metaKey\":\"um_content_restriction\"}~||~VoixOffIn|~|{\"name\":\"VoixOffIn\",\"type\":\"wpie_cf\",\"metaKey\":\"VoixOffIn\"}|~|{\"name\":\"VoixOffIn\",\"type\":\"wpie_cf\",\"metaKey\":\"VoixOffIn\"}~||~Catégories|~|{\"name\":\"Catégories\",\"type\":\"wpie_tax\",\"taxName\":\"category\",\"isTax\":true,\"hierarchical\":true}|~|{\"name\":\"Catégories\",\"type\":\"wpie_tax\",\"taxName\":\"category\",\"isTax\":true,\"hierarchical\":true}~||~Étiquettes|~|{\"name\":\"Étiquettes\",\"type\":\"wpie_tax\",\"taxName\":\"post_tag\",\"isTax\":true,\"hierarchical\":false}|~|{\"name\":\"Étiquettes\",\"type\":\"wpie_tax\",\"taxName\":\"post_tag\",\"isTax\":true,\"hierarchical\":false}~||~Image URL|~|{\"name\":\"Image URL\",\"type\":\"image_url\"}|~|{\"name\":\"Image URL\",\"type\":\"image_url\"}~||~Images Filename|~|{\"name\":\"Images Filename\",\"type\":\"image_filename\"}|~|{\"name\":\"Images Filename\",\"type\":\"image_filename\"}~||~Images Path|~|{\"name\":\"Images Path\",\"type\":\"image_path\"}|~|{\"name\":\"Images Path\",\"type\":\"image_path\"}~||~Images ID|~|{\"name\":\"Images ID\",\"type\":\"image_id\"}|~|{\"name\":\"Images ID\",\"type\":\"image_id\"}~||~Images Title|~|{\"name\":\"Images Title\",\"type\":\"image_title\"}|~|{\"name\":\"Images Title\",\"type\":\"image_title\"}~||~Images Caption|~|{\"name\":\"Images Caption\",\"type\":\"image_caption\"}|~|{\"name\":\"Images Caption\",\"type\":\"image_caption\"}~||~Images Description|~|{\"name\":\"Images Description\",\"type\":\"image_description\"}|~|{\"name\":\"Images Description\",\"type\":\"image_description\"}~||~Images Alt Text|~|{\"name\":\"Images Alt Text\",\"type\":\"image_alt\"}|~|{\"name\":\"Images Alt Text\",\"type\":\"image_alt\"}~||~Attachment URL|~|{\"name\":\"Attachment URL\",\"type\":\"attachment_url\"}|~|{\"name\":\"Attachment URL\",\"type\":\"attachment_url\"}~||~Attachments Filename|~|{\"name\":\"Attachments Filename\",\"type\":\"attachment_filename\"}|~|{\"name\":\"Attachments Filename\",\"type\":\"attachment_filename\"}~||~Attachments Path|~|{\"name\":\"Attachments Path\",\"type\":\"attachment_path\"}|~|{\"name\":\"Attachments Path\",\"type\":\"attachment_path\"}~||~Attachments ID|~|{\"name\":\"Attachments ID\",\"type\":\"attachment_id\"}|~|{\"name\":\"Attachments ID\",\"type\":\"attachment_id\"}~||~Attachments Title|~|{\"name\":\"Attachments Title\",\"type\":\"attachment_title\"}|~|{\"name\":\"Attachments Title\",\"type\":\"attachment_title\"}~||~Attachments Caption|~|{\"name\":\"Attachments Caption\",\"type\":\"attachment_caption\"}|~|{\"name\":\"Attachments Caption\",\"type\":\"attachment_caption\"}~||~Attachments Description|~|{\"name\":\"Attachments Description\",\"type\":\"attachment_description\"}|~|{\"name\":\"Attachments Description\",\"type\":\"attachment_description\"}~||~Attachments Alt Text|~|{\"name\":\"Attachments Alt Text\",\"type\":\"attachment_alt\"}|~|{\"name\":\"Attachments Alt Text\",\"type\":\"attachment_alt\"}~||~Status|~|{\"name\":\"Status\",\"type\":\"status\"}|~|{\"name\":\"Status\",\"type\":\"status\"}~||~Author ID|~|{\"name\":\"Author ID\",\"type\":\"author_id\"}|~|{\"name\":\"Author ID\",\"type\":\"author_id\"}~||~Author Username|~|{\"name\":\"Author Username\",\"type\":\"author_username\"}|~|{\"name\":\"Author Username\",\"type\":\"author_username\"}~||~Author Email|~|{\"name\":\"Author Email\",\"type\":\"author_email\"}|~|{\"name\":\"Author Email\",\"type\":\"author_email\"}~||~Author First Name|~|{\"name\":\"Author First Name\",\"type\":\"wpie_cf_first_name\"}|~|{\"name\":\"Author First Name\",\"type\":\"wpie_cf_first_name\"}~||~Author Last Name|~|{\"name\":\"Author Last Name\",\"type\":\"wpie_cf_last_name\"}|~|{\"name\":\"Author Last Name\",\"type\":\"wpie_cf_last_name\"}~||~Slug|~|{\"name\":\"Slug\",\"type\":\"slug\"}|~|{\"name\":\"Slug\",\"type\":\"slug\"}~||~Format|~|{\"name\":\"Format\",\"type\":\"format\"}|~|{\"name\":\"Format\",\"type\":\"format\"}~||~Post Password|~|{\"name\":\"Post Password\",\"type\":\"post_password\"}|~|{\"name\":\"Post Password\",\"type\":\"post_password\"}~||~Template|~|{\"name\":\"Template\",\"type\":\"template\"}|~|{\"name\":\"Template\",\"type\":\"template\"}~||~Parent|~|{\"name\":\"Parent\",\"type\":\"parent\"}|~|{\"name\":\"Parent\",\"type\":\"parent\"}~||~Parent Slug|~|{\"name\":\"Parent Slug\",\"type\":\"parent_slug\"}|~|{\"name\":\"Parent Slug\",\"type\":\"parent_slug\"}~||~Order|~|{\"name\":\"Order\",\"type\":\"order\"}|~|{\"name\":\"Order\",\"type\":\"order\"}~||~Comment Status|~|{\"name\":\"Comment Status\",\"type\":\"comment_status\"}|~|{\"name\":\"Comment Status\",\"type\":\"comment_status\"}~||~Ping Status|~|{\"name\":\"Ping Status\",\"type\":\"ping_status\"}|~|{\"name\":\"Ping Status\",\"type\":\"ping_status\"}~||~Post Modified Date|~|{\"name\":\"Post Modified Date\",\"type\":\"post_modified\",\"isDate\":true}|~|{\"name\":\"Post Modified Date\",\"type\":\"post_modified\",\"isDate\":true}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:37:\"Article-Export-2023-Sep-26-043810.csv\";s:7:\"fileDir\";s:32:\"858d95396630171d669f5433c22a3a4f\";}','a:2:{s:8:\"exported\";i:200;s:5:\"total\";i:2145;}',0,'2023-09-26 06:38:10','2023-09-26 06:38:13'),
  9050. (23,'completed','export','val','6512609e7ac7b','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:758:\"Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true,\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true,\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:4:\"json\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:38:\"Article-Export-2023-Sep-26-043958.json\";s:7:\"fileDir\";s:32:\"7af4b1afb2a502e4f7a43c4024d6af7c\";}','a:2:{s:8:\"exported\";i:2145;s:5:\"total\";i:2145;}',0,'2023-09-26 06:39:58','2023-09-26 06:40:14'),
  9051. (24,'completed','export','val','651265181c697','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:706:\"Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~Index|~|{\"name\":\"Index\",\"type\":\"wpie_cf\",\"metaKey\":\"Index\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"Index\",\"type\":\"wpie_cf\",\"metaKey\":\"Index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:15:\"EXPORT_OK_26_09\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:19:\"EXPORT_OK_26_09.csv\";s:7:\"fileDir\";s:32:\"782a9a80c437cb6a5ad92557b1de792b\";}','a:2:{s:8:\"exported\";i:721;s:5:\"total\";i:721;}',0,'2023-09-26 06:59:04','2023-09-26 06:59:09'),
  9052. (25,'completed','export','val','6512669ca171e','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:706:\"Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:37:\"Article-Export-2023-Sep-26-050532.csv\";s:7:\"fileDir\";s:32:\"b0e996438eacbd6d6ec30122d9548001\";}','a:2:{s:8:\"exported\";i:721;s:5:\"total\";i:721;}',0,'2023-09-26 07:05:32','2023-09-26 07:05:37'),
  9053. (26,'completed','export','val','65126701bf3d6','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:706:\"Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\",\"isPhp\":false,\"phpFun\":\"\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:4:\"json\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:38:\"Article-Export-2023-Sep-26-050713.json\";s:7:\"fileDir\";s:32:\"62ed241690af3b7f0a560dec83cda35b\";}','a:2:{s:8:\"exported\";i:721;s:5:\"total\";i:721;}',0,'2023-09-26 07:07:13','2023-09-26 07:07:19'),
  9054. (27,'completed','import','val','65126ca65157f','post','a:93:{s:10:\"importFile\";a:1:{s:32:\"736e38e5afd953cb1efab440cd84b881\";a:4:{s:7:\"fileDir\";s:41:\"736e38e5afd953cb1efab440cd84b881/original\";s:8:\"fileName\";s:22:\"EXPORT_JSON_CLEAN.json\";s:12:\"originalName\";s:22:\"EXPORT_JSON_CLEAN.json\";s:7:\"baseDir\";s:32:\"736e38e5afd953cb1efab440cd84b881\";}}s:10:\"activeFile\";s:32:\"736e38e5afd953cb1efab440cd84b881\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"27\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"736e38e5afd953cb1efab440cd84b881\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:0:\"\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{title[1]}\";s:17:\"wpie_item_content\";s:12:\"{content[1]}\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:3:{s:13:\"65126ca754309\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"dor7llcsglxfmzpvmxhj\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"us3cm4nfa7iszz5vcoog\";a:3:{s:4:\"name\";s:8:\"iSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:721;s:8:\"imported\";i:721;s:7:\"created\";i:0;s:7:\"updated\";i:721;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:9417;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-09-26 05:33:59\";}',0,'2023-09-26 07:31:18','2023-09-26 07:33:59'),
  9055. (28,'completed','import','val','65126e81c522e','post','a:92:{s:10:\"importFile\";a:1:{s:32:\"0e4b460366e57fd3eb9bca80a7a73df5\";a:4:{s:7:\"fileDir\";s:41:\"0e4b460366e57fd3eb9bca80a7a73df5/original\";s:8:\"fileName\";s:22:\"EXPORT_JSON_CLEAN.json\";s:12:\"originalName\";s:22:\"EXPORT_JSON_CLEAN.json\";s:7:\"baseDir\";s:32:\"0e4b460366e57fd3eb9bca80a7a73df5\";}}s:10:\"activeFile\";s:32:\"0e4b460366e57fd3eb9bca80a7a73df5\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"28\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"0e4b460366e57fd3eb9bca80a7a73df5\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"new\";s:18:\"wpie_csv_delimiter\";s:0:\"\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{title[1]}\";s:17:\"wpie_item_content\";s:12:\"{content[1]}\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:12:\"wpie_item_cf\";a:3:{s:13:\"65126e82cb483\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"cfkv8jnguryap0024cu0\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"1lem3whgd0ok6xcde5o3\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:721;s:8:\"imported\";i:721;s:7:\"created\";i:715;s:7:\"updated\";i:0;s:7:\"skipped\";i:6;s:15:\"last_records_id\";i:11044;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-09-26 05:42:55\";}',0,'2023-09-26 07:39:13','2023-09-26 07:42:55'),
  9056. (29,'completed','import','val','651283dee1240','post','a:93:{s:10:\"importFile\";a:1:{s:32:\"75cc1dc6caa897e2b28f028d9abe8d3b\";a:4:{s:7:\"fileDir\";s:41:\"75cc1dc6caa897e2b28f028d9abe8d3b/original\";s:8:\"fileName\";s:22:\"CONTENUS_LEGENDES.json\";s:12:\"originalName\";s:22:\"CONTENUS_LEGENDES.json\";s:7:\"baseDir\";s:32:\"75cc1dc6caa897e2b28f028d9abe8d3b\";}}s:10:\"activeFile\";s:32:\"75cc1dc6caa897e2b28f028d9abe8d3b\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"29\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"75cc1dc6caa897e2b28f028d9abe8d3b\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"new\";s:18:\"wpie_csv_delimiter\";s:0:\"\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{title[1]}\";s:17:\"wpie_item_content\";s:12:\"{content[1]}\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:3:{s:13:\"651283dfeb3ca\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"slifryqg471v4wn5g4zh\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"vh7ag5kkxbnj7h6ty4hu\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:721;s:8:\"imported\";i:721;s:7:\"created\";i:715;s:7:\"updated\";i:0;s:7:\"skipped\";i:6;s:15:\"last_records_id\";i:12474;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-09-26 07:12:18\";}',0,'2023-09-26 09:10:22','2023-09-26 09:12:18'),
  9057. (30,'completed','import','val','6512859db9587','post','a:93:{s:10:\"importFile\";a:1:{s:32:\"524264c877fbc7cceff7049a2b6fc199\";a:4:{s:7:\"fileDir\";s:41:\"524264c877fbc7cceff7049a2b6fc199/original\";s:8:\"fileName\";s:22:\"CONTENUS_LEGENDES.json\";s:12:\"originalName\";s:22:\"CONTENUS_LEGENDES.json\";s:7:\"baseDir\";s:32:\"524264c877fbc7cceff7049a2b6fc199\";}}s:10:\"activeFile\";s:32:\"524264c877fbc7cceff7049a2b6fc199\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"30\";s:12:\"wpieSecurity\";s:10:\"9b2972b02d\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"524264c877fbc7cceff7049a2b6fc199\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"new\";s:18:\"wpie_csv_delimiter\";s:0:\"\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{title[1]}\";s:17:\"wpie_item_content\";s:12:\"{content[1]}\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:3:{s:13:\"6512859eb8231\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"vfecjnqhw8i0q5dxsmhl\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"l5x3hae9dn8rlnzadhx1\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:721;s:8:\"imported\";i:721;s:7:\"created\";i:715;s:7:\"updated\";i:0;s:7:\"skipped\";i:6;s:15:\"last_records_id\";i:13904;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-09-26 07:19:34\";}',0,'2023-09-26 09:17:49','2023-09-26 09:19:34'),
  9058. (31,'completed','export','val','654c8d2b64632','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"3d376ab6b2\";s:10:\"is_package\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:6032:\"ID|~|{\"name\":\"ID\",\"type\":\"id\",\"isDefault\":true}|~|{\"name\":\"ID\",\"type\":\"id\",\"isDefault\":true}~||~Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~Excerpt|~|{\"name\":\"Excerpt\",\"type\":\"excerpt\",\"isDefault\":true}|~|{\"name\":\"Excerpt\",\"type\":\"excerpt\",\"isDefault\":true}~||~Date|~|{\"name\":\"Date\",\"type\":\"date\",\"isDate\":true,\"isDefault\":true}|~|{\"name\":\"Date\",\"type\":\"date\",\"isDate\":true,\"isDefault\":true}~||~Post Type|~|{\"name\":\"Post Type\",\"type\":\"post_type\",\"isDefault\":true}|~|{\"name\":\"Post Type\",\"type\":\"post_type\",\"isDefault\":true}~||~Permalink|~|{\"name\":\"Permalink\",\"type\":\"permalink\",\"isDefault\":true}|~|{\"name\":\"Permalink\",\"type\":\"permalink\",\"isDefault\":true}~||~_encloseme|~|{\"name\":\"_encloseme\",\"type\":\"wpie_cf\",\"metaKey\":\"_encloseme\"}|~|{\"name\":\"_encloseme\",\"type\":\"wpie_cf\",\"metaKey\":\"_encloseme\"}~||~_pingme|~|{\"name\":\"_pingme\",\"type\":\"wpie_cf\",\"metaKey\":\"_pingme\"}|~|{\"name\":\"_pingme\",\"type\":\"wpie_cf\",\"metaKey\":\"_pingme\"}~||~_product_image_gallery|~|{\"name\":\"_product_image_gallery\",\"type\":\"wpie_cf\",\"metaKey\":\"_product_image_gallery\"}|~|{\"name\":\"_product_image_gallery\",\"type\":\"wpie_cf\",\"metaKey\":\"_product_image_gallery\"}~||~_rvy_base_post_id|~|{\"name\":\"_rvy_base_post_id\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_base_post_id\"}|~|{\"name\":\"_rvy_base_post_id\",\"type\":\"wpie_cf\",\"metaKey\":\"_rvy_base_post_id\"}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~Catégories|~|{\"name\":\"Catégories\",\"type\":\"wpie_tax\",\"taxName\":\"category\",\"isTax\":true,\"hierarchical\":true}|~|{\"name\":\"Catégories\",\"type\":\"wpie_tax\",\"taxName\":\"category\",\"isTax\":true,\"hierarchical\":true}~||~Étiquettes|~|{\"name\":\"Étiquettes\",\"type\":\"wpie_tax\",\"taxName\":\"post_tag\",\"isTax\":true,\"hierarchical\":false}|~|{\"name\":\"Étiquettes\",\"type\":\"wpie_tax\",\"taxName\":\"post_tag\",\"isTax\":true,\"hierarchical\":false}~||~Image URL|~|{\"name\":\"Image URL\",\"type\":\"image_url\"}|~|{\"name\":\"Image URL\",\"type\":\"image_url\"}~||~Images Filename|~|{\"name\":\"Images Filename\",\"type\":\"image_filename\"}|~|{\"name\":\"Images Filename\",\"type\":\"image_filename\"}~||~Images Path|~|{\"name\":\"Images Path\",\"type\":\"image_path\"}|~|{\"name\":\"Images Path\",\"type\":\"image_path\"}~||~Images ID|~|{\"name\":\"Images ID\",\"type\":\"image_id\"}|~|{\"name\":\"Images ID\",\"type\":\"image_id\"}~||~Images Title|~|{\"name\":\"Images Title\",\"type\":\"image_title\"}|~|{\"name\":\"Images Title\",\"type\":\"image_title\"}~||~Images Caption|~|{\"name\":\"Images Caption\",\"type\":\"image_caption\"}|~|{\"name\":\"Images Caption\",\"type\":\"image_caption\"}~||~Images Description|~|{\"name\":\"Images Description\",\"type\":\"image_description\"}|~|{\"name\":\"Images Description\",\"type\":\"image_description\"}~||~Images Alt Text|~|{\"name\":\"Images Alt Text\",\"type\":\"image_alt\"}|~|{\"name\":\"Images Alt Text\",\"type\":\"image_alt\"}~||~Attachment URL|~|{\"name\":\"Attachment URL\",\"type\":\"attachment_url\"}|~|{\"name\":\"Attachment URL\",\"type\":\"attachment_url\"}~||~Attachments Filename|~|{\"name\":\"Attachments Filename\",\"type\":\"attachment_filename\"}|~|{\"name\":\"Attachments Filename\",\"type\":\"attachment_filename\"}~||~Attachments Path|~|{\"name\":\"Attachments Path\",\"type\":\"attachment_path\"}|~|{\"name\":\"Attachments Path\",\"type\":\"attachment_path\"}~||~Attachments ID|~|{\"name\":\"Attachments ID\",\"type\":\"attachment_id\"}|~|{\"name\":\"Attachments ID\",\"type\":\"attachment_id\"}~||~Attachments Title|~|{\"name\":\"Attachments Title\",\"type\":\"attachment_title\"}|~|{\"name\":\"Attachments Title\",\"type\":\"attachment_title\"}~||~Attachments Caption|~|{\"name\":\"Attachments Caption\",\"type\":\"attachment_caption\"}|~|{\"name\":\"Attachments Caption\",\"type\":\"attachment_caption\"}~||~Attachments Description|~|{\"name\":\"Attachments Description\",\"type\":\"attachment_description\"}|~|{\"name\":\"Attachments Description\",\"type\":\"attachment_description\"}~||~Attachments Alt Text|~|{\"name\":\"Attachments Alt Text\",\"type\":\"attachment_alt\"}|~|{\"name\":\"Attachments Alt Text\",\"type\":\"attachment_alt\"}~||~Status|~|{\"name\":\"Status\",\"type\":\"status\"}|~|{\"name\":\"Status\",\"type\":\"status\"}~||~Author ID|~|{\"name\":\"Author ID\",\"type\":\"author_id\"}|~|{\"name\":\"Author ID\",\"type\":\"author_id\"}~||~Author Username|~|{\"name\":\"Author Username\",\"type\":\"author_username\"}|~|{\"name\":\"Author Username\",\"type\":\"author_username\"}~||~Author Email|~|{\"name\":\"Author Email\",\"type\":\"author_email\"}|~|{\"name\":\"Author Email\",\"type\":\"author_email\"}~||~Author First Name|~|{\"name\":\"Author First Name\",\"type\":\"wpie_cf_first_name\"}|~|{\"name\":\"Author First Name\",\"type\":\"wpie_cf_first_name\"}~||~Author Last Name|~|{\"name\":\"Author Last Name\",\"type\":\"wpie_cf_last_name\"}|~|{\"name\":\"Author Last Name\",\"type\":\"wpie_cf_last_name\"}~||~Slug|~|{\"name\":\"Slug\",\"type\":\"slug\"}|~|{\"name\":\"Slug\",\"type\":\"slug\"}~||~Format|~|{\"name\":\"Format\",\"type\":\"format\"}|~|{\"name\":\"Format\",\"type\":\"format\"}~||~Post Password|~|{\"name\":\"Post Password\",\"type\":\"post_password\"}|~|{\"name\":\"Post Password\",\"type\":\"post_password\"}~||~Template|~|{\"name\":\"Template\",\"type\":\"template\"}|~|{\"name\":\"Template\",\"type\":\"template\"}~||~Parent|~|{\"name\":\"Parent\",\"type\":\"parent\"}|~|{\"name\":\"Parent\",\"type\":\"parent\"}~||~Parent Slug|~|{\"name\":\"Parent Slug\",\"type\":\"parent_slug\"}|~|{\"name\":\"Parent Slug\",\"type\":\"parent_slug\"}~||~Order|~|{\"name\":\"Order\",\"type\":\"order\"}|~|{\"name\":\"Order\",\"type\":\"order\"}~||~Comment Status|~|{\"name\":\"Comment Status\",\"type\":\"comment_status\"}|~|{\"name\":\"Comment Status\",\"type\":\"comment_status\"}~||~Ping Status|~|{\"name\":\"Ping Status\",\"type\":\"ping_status\"}|~|{\"name\":\"Ping Status\",\"type\":\"ping_status\"}~||~Post Modified Date|~|{\"name\":\"Post Modified Date\",\"type\":\"post_modified\",\"isDate\":true}|~|{\"name\":\"Post Modified Date\",\"type\":\"post_modified\",\"isDate\":true}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:37:\"Article-Export-2023-Nov-09-074131.zip\";s:7:\"fileDir\";s:32:\"9fdc738e16814590010246b691ae263d\";}','a:2:{s:8:\"exported\";i:717;s:5:\"total\";i:717;}',0,'2023-11-09 08:41:31','2023-11-09 08:41:41'),
  9059. (32,'completed','export','val','654c8d8c90d7b','post','a:21:{s:6:\"action\";s:23:\"wpie_export_create_data\";s:12:\"wpieSecurity\";s:10:\"3d376ab6b2\";s:10:\"is_package\";s:1:\"0\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:11:\"fields_data\";s:628:\"Title|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}|~|{\"name\":\"Title\",\"type\":\"title\",\"isDefault\":true}~||~Content|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}|~|{\"name\":\"Content\",\"type\":\"content\",\"isDefault\":true}~||~index|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}|~|{\"name\":\"index\",\"type\":\"wpie_cf\",\"metaKey\":\"index\"}~||~isMainPart|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}|~|{\"name\":\"isMainPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isMainPart\"}~||~isSubPart|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}|~|{\"name\":\"isSubPart\",\"type\":\"wpie_cf\",\"metaKey\":\"isSubPart\"}~||~\";s:16:\"wpie_filter_rule\";s:0:\"\";s:21:\"wpie_export_condition\";s:0:\"\";s:16:\"wpie_export_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:0:\"\";s:21:\"wpie_export_file_type\";s:0:\"\";s:24:\"wpie_csv_field_separator\";s:1:\",\";s:21:\"wpie_export_file_name\";s:0:\"\";s:26:\"wpie_records_per_iteration\";s:2:\"50\";s:15:\"extra_copy_path\";s:0:\"\";s:21:\"wpie_skip_empty_nodes\";s:1:\"1\";s:18:\"wpie_template_list\";s:0:\"\";s:25:\"wpie_export_settings_list\";s:0:\"\";s:18:\"wpie_template_name\";s:0:\"\";s:14:\"max_item_count\";i:1;s:8:\"fileName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:7:\"fileDir\";s:32:\"2ea565b662676f86b56a0c8e23505df1\";}','a:2:{s:8:\"exported\";i:717;s:5:\"total\";i:717;}',0,'2023-11-09 08:43:08','2023-11-09 08:43:13'),
  9060. (33,'completed','import','val','654c8dadb9a8d','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"c34cbceea99e57926b43cac5de0016ea\";a:4:{s:7:\"fileDir\";s:41:\"c34cbceea99e57926b43cac5de0016ea/original\";s:8:\"fileName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:12:\"originalName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:7:\"baseDir\";s:32:\"c34cbceea99e57926b43cac5de0016ea\";}}s:10:\"activeFile\";s:32:\"c34cbceea99e57926b43cac5de0016ea\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"33\";s:12:\"wpieSecurity\";s:10:\"3d376ab6b2\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"c34cbceea99e57926b43cac5de0016ea\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\",\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:0:\"\";s:17:\"wpie_item_content\";s:0:\"\";s:25:\"wpie_item_import_img_tags\";s:1:\"1\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:4:{s:13:\"654c8daed20f1\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"l97n06xuc6ah5l3p5lu1\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"0ydelpnjq7gtzidrswxi\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"m3ca59u0a64ggz65v1gk\";a:3:{s:4:\"name\";s:19:\"callForContribution\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:3:\"all\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:7:{s:5:\"total\";i:717;s:8:\"imported\";i:717;s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"skipped\";i:717;s:15:\"last_records_id\";i:0;s:19:\"last_records_status\";s:0:\"\";}',0,'2023-11-09 08:43:41','2023-11-09 08:46:44'),
  9061. (34,'completed','import','val','654c8ea9e84af','post','a:94:{s:10:\"importFile\";a:1:{s:32:\"8b8eded72fe47dd3fcd04a26a4450304\";a:4:{s:7:\"fileDir\";s:41:\"8b8eded72fe47dd3fcd04a26a4450304/original\";s:8:\"fileName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:12:\"originalName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:7:\"baseDir\";s:32:\"8b8eded72fe47dd3fcd04a26a4450304\";}}s:10:\"activeFile\";s:32:\"8b8eded72fe47dd3fcd04a26a4450304\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"34\";s:12:\"wpieSecurity\";s:10:\"3d376ab6b2\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"8b8eded72fe47dd3fcd04a26a4450304\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\",\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{title[1]}\";s:17:\"wpie_item_content\";s:12:\"{content[1]}\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:23:\"wpie_item_not_add_empty\";s:1:\"1\";s:12:\"wpie_item_cf\";a:4:{s:13:\"654c8eab07873\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"a191z1fzn7minhmignio\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"efg2u7xi9qf4nw0o7x79\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"slfyekgv3j7puo9e23c1\";a:3:{s:4:\"name\";s:19:\"callForContribution\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:8:\"specific\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:17:\"is_update_item_cf\";s:1:\"1\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:717;s:8:\"imported\";i:717;s:7:\"created\";i:0;s:7:\"updated\";i:717;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:13894;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-11-09 07:50:30\";}',0,'2023-11-09 08:47:53','2023-11-09 08:50:30'),
  9062. (35,'completed','import','val','654c8f9576e26','post','a:93:{s:10:\"importFile\";a:1:{s:32:\"cfb3c59cdc7c431b12e6b371f814cd4d\";a:4:{s:7:\"fileDir\";s:41:\"cfb3c59cdc7c431b12e6b371f814cd4d/original\";s:8:\"fileName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:12:\"originalName\";s:37:\"Article-Export-2023-Nov-09-074308.csv\";s:7:\"baseDir\";s:32:\"cfb3c59cdc7c431b12e6b371f814cd4d\";}}s:10:\"activeFile\";s:32:\"cfb3c59cdc7c431b12e6b371f814cd4d\";s:9:\"sheetList\";a:0:{}s:11:\"activeSheet\";s:0:\"\";s:6:\"action\";s:23:\"wpie_import_update_data\";s:14:\"wpie_import_id\";s:2:\"35\";s:12:\"wpieSecurity\";s:10:\"3d376ab6b2\";s:2:\"bg\";s:1:\"0\";s:5:\"xpath\";s:5:\"/item\";s:4:\"root\";s:4:\"item\";s:12:\"is_new_items\";s:1:\"1\";s:25:\"wpie_total_filter_records\";s:1:\"0\";s:6:\"ref_id\";s:0:\"\";s:9:\"import_id\";s:1:\"0\";s:12:\"import_nonce\";s:0:\"\";s:23:\"wpie_file_upload_method\";s:24:\"wpie_import_local_upload\";s:24:\"wpie_import_local_upload\";s:32:\"cfb3c59cdc7c431b12e6b371f814cd4d\";s:21:\"wpie_text_format_list\";s:3:\"csv\";s:19:\"final_existing_file\";s:0:\"\";s:25:\"wpie_upload_existing_file\";s:0:\"\";s:26:\"wpie_upload_final_file_url\";s:0:\"\";s:16:\"wpie_import_type\";s:4:\"post\";s:18:\"wpie_taxonomy_type\";s:8:\"category\";s:12:\"handle_items\";s:3:\"all\";s:18:\"wpie_csv_delimiter\";s:1:\",\";s:28:\"wpie_file_first_row_is_title\";s:1:\"1\";s:18:\"wpie_template_name\";s:0:\"\";s:15:\"wpie_item_title\";s:10:\"{title[1]}\";s:17:\"wpie_item_content\";s:12:\"{content[1]}\";s:17:\"wpie_item_excerpt\";s:0:\"\";s:22:\"wpie_item_image_option\";s:15:\"download_images\";s:25:\"wpie_item_image_url_delim\";s:2:\"||\";s:19:\"wpie_item_image_url\";s:0:\"\";s:35:\"wpie_item_image_media_library_delim\";s:1:\"|\";s:29:\"wpie_item_image_media_library\";s:0:\"\";s:27:\"wpie_item_image_local_delim\";s:1:\"|\";s:21:\"wpie_item_image_local\";s:0:\"\";s:32:\"wpie_item_search_existing_images\";s:1:\"1\";s:21:\"wpie_item_keep_images\";s:1:\"1\";s:34:\"wpie_item_first_imaege_is_featured\";s:1:\"1\";s:31:\"wpie_item_set_image_title_delim\";s:2:\"||\";s:21:\"wpie_item_image_title\";s:0:\"\";s:33:\"wpie_item_set_image_caption_delim\";s:2:\"||\";s:23:\"wpie_item_image_caption\";s:0:\"\";s:29:\"wpie_item_set_image_alt_delim\";s:2:\"||\";s:19:\"wpie_item_image_alt\";s:0:\"\";s:37:\"wpie_item_set_image_description_delim\";s:2:\"||\";s:27:\"wpie_item_image_description\";s:0:\"\";s:32:\"wpie_item_set_image_rename_delim\";s:2:\"||\";s:24:\"wpie_item_image_new_name\";s:0:\"\";s:33:\"wpie_item_set_image_new_ext_delim\";s:2:\"||\";s:17:\"wpie_item_new_ext\";s:0:\"\";s:12:\"wpie_item_cf\";a:5:{s:13:\"654c8f96a30f7\";a:3:{s:4:\"name\";s:0:\"\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}s:20:\"yvowqx6k6dqq49y77pak\";a:3:{s:4:\"name\";s:5:\"index\";s:5:\"value\";s:10:\"{index[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"ah3hzj97ny47k8iodqf3\";a:3:{s:4:\"name\";s:10:\"isMainPart\";s:5:\"value\";s:15:\"{ismainpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"co7ndygcl3jlxd9r59ds\";a:3:{s:4:\"name\";s:9:\"isSubPart\";s:5:\"value\";s:14:\"{issubpart[1]}\";s:6:\"option\";s:6:\"normal\";}s:20:\"nacipvu4j44egqodvy7u\";a:3:{s:4:\"name\";s:19:\"callForContribution\";s:5:\"value\";s:0:\"\";s:6:\"option\";s:6:\"normal\";}}s:18:\"wpie_item_taxonomy\";a:2:{s:8:\"category\";s:0:\"\";s:8:\"post_tag\";s:0:\"\";}s:24:\"wpie_item_taxonomy_delim\";a:2:{s:8:\"category\";s:1:\",\";s:8:\"post_tag\";s:1:\",\";}s:37:\"wpie_item_taxonomy_hierarchical_delim\";a:1:{s:8:\"category\";s:1:\">\";}s:16:\"wpie_item_status\";s:7:\"publish\";s:34:\"wpie_item_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_date\";s:3:\"now\";s:32:\"wpie_item_date_as_specified_data\";s:0:\"\";s:24:\"wpie_item_comment_status\";s:4:\"open\";s:42:\"wpie_item_comment_status_as_specified_data\";s:0:\"\";s:21:\"wpie_item_ping_status\";s:4:\"open\";s:39:\"wpie_item_ping_status_as_specified_data\";s:0:\"\";s:14:\"wpie_item_slug\";s:0:\"\";s:23:\"wpie_item_post_password\";s:0:\"\";s:16:\"wpie_item_author\";s:0:\"\";s:21:\"wpie_item_attachments\";s:0:\"\";s:27:\"wpie_item_attachments_delim\";s:2:\"||\";s:18:\"wpie_item_template\";s:12:\"as_specified\";s:36:\"wpie_item_template_as_specified_data\";s:0:\"\";s:16:\"wpie_item_parent\";s:12:\"as_specified\";s:34:\"wpie_item_parent_as_specified_data\";s:0:\"\";s:15:\"wpie_item_order\";s:0:\"\";s:31:\"wpie_existing_item_search_logic\";s:5:\"title\";s:36:\"wpie_existing_item_search_logic_slug\";s:0:\"\";s:38:\"wpie_existing_item_search_logic_cf_key\";s:0:\"\";s:40:\"wpie_existing_item_search_logic_cf_value\";s:0:\"\";s:34:\"wpie_existing_item_search_logic_id\";s:0:\"\";s:16:\"wpie_item_update\";s:8:\"specific\";s:28:\"wpie_item_update_attachments\";s:3:\"all\";s:23:\"wpie_item_update_images\";s:3:\"all\";s:17:\"is_update_item_cf\";s:1:\"1\";s:19:\"wpie_item_update_cf\";s:6:\"append\";s:33:\"wpie_item_update_cf_includes_data\";s:0:\"\";s:33:\"wpie_item_update_cf_excludes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_includes_data\";s:0:\"\";s:41:\"wpie_item_update_taxonomies_excludes_data\";s:0:\"\";s:27:\"wpie_item_update_taxonomies\";s:3:\"all\";s:27:\"wpie_import_file_processing\";s:5:\"chunk\";s:24:\"wpie_records_per_request\";s:2:\"20\";s:22:\"wpie_import_split_file\";s:1:\"1\";s:25:\"wpie_import_friendly_name\";s:0:\"\";}','a:8:{s:5:\"total\";i:717;s:8:\"imported\";i:717;s:7:\"created\";i:0;s:7:\"updated\";i:717;s:7:\"skipped\";i:0;s:15:\"last_records_id\";i:13894;s:19:\"last_records_status\";s:9:\"completed\";s:13:\"last_activity\";s:19:\"2023-11-09 07:53:54\";}',0,'2023-11-09 08:51:49','2023-11-09 08:53:54');
  9063. /*!40000 ALTER TABLE `wp_wpie_template` ENABLE KEYS */;
  9064. UNLOCK TABLES;
  9065. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  9066. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  9067. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  9068. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  9069. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  9070. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  9071. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  9072. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  9073. -- Dump completed on 2023-11-10 6:56:32